Software Development Network Logo
  • Visual C++
  • IE Development
  • Microsoft ISV
  • Windows Forms
  • .NET Development
  • Visual Studio
  • Visual Basic
  • SQL Server
  • SharePoint Products
  • VS Team System
  • Audio and Video
  • Visual C#
  • Visual FoxPro
  • Smart Devicet
  • Game Technologies

Software Development Network >> Mr. R's Q&A profile

Mr. R

Member List

truepantera
AnaC
Suresh Venkatraman
steven_pack
E. Ward
cvajre
JasonG271009
Al33327
Wing Lee
Nate Garvey
Minal333045
FJohnston
nidionys
ChenWang
Navya Jeevan
Pikker1981
nick5454
ManInTheBox
Ed Hazell
Lawrex
Only Title

Mr. R's Q&A profile

  • Visual Studio 2008 (Pre-release) Help Help me please!!!

    hi friends, I want to serialize the"System.Windows.Documents.Paragraph" object and for this purpose I have written the following code : mypara cust = new mypara(); Paragraph ph = new Paragraph(new Run(str)); cust.Para = ph; cust.Para.Foreground = System.Windows.Media.Brushes.AliceBlue; string pass = format.Serialize(cust.Para); mypara is a custom class which contains the Para as an object of Paragraph and during the execution of format.Serialize line I get the error message as Error Serializing System.Windows.Documents.Paragraph. Note that mypara class is defined having DataContract Attribute and Para is defined under DataMember attribute and I want to pass the string pass generated to the server. Can anyone guide me ...Show All

  • Visual Studio Express Editions Creating html files using the rich text box

    Im trying to create web pages using the RTB but evry time i save the contents of the RTB as a html file it shows this code ({\rtf1\ansi\ansicpg1252\deff0\deflang2057{\fonttbl{\f0\fnil\fcharset0 Microsoft Sans Serif;}} \viewkind4\uc1\pard\f0\fs17 \par \par \par \par \par \par \par \par \par \par \par \par }) does eny one know how to correct this Im trying to create web pages using the RTB,i save the contents of the rich text box as a html file but it when i preview it, it shows a code instead of the text and pictures i put init, does eny 1 know how to get it to work ...Show All

  • .NET Development WebClient Throwing Remote Server Error 500

    Hi I am using webclient to read some web site content ...which display the page error like. Server Application Unavilable. IIS 6.0 is the webserver....when I triyed the URL in the Browser... its showing like Server Application UnAvailable.. But My application its throwing Remote Server Error like The remote server returned an error: (500) Internal Server Error. The purpose of this code is monitor urls which shows the server application unavilable I would like capture the error content. like Server Application Unavilable. But my code going to Exception.... . I tried google and other sites to read i am able to see the content...Only Server Application Unavilable Error I am not able to see... throwing Remote E ...Show All

  • Visual Studio SKU011.CAB solution

    Go into Registry Editor (Start, Run, "regedit"). Go to HKEY_LOCAL_MACHINE, Software, Microsoft, Office, 11.0, Delivery. There should be only 1 directory under Delivery, which is your DownloadCode (mine was 90000409-6000-11D3-8CFE-0150048383C9). Select that directory. On the right side of the screen, right-click on CDCache. Change the value to 0. honestly works with out a hitch. Can't thank you enough, Inkhand, for the solution to the SKU011.CAB messages. Worked first time just as you described. I think I "caught" this ailment when I simply went to the MS Office update site about a month ago and downloaded the latest update. Either that, or the Norton Registry cleaner that ran about that time might have ca ...Show All

  • Visual Studio Addin for extending TFS Source Control Explorer

    Is it possible to extend TFS Source Control Explorer by context menus Regards, Zsolt Soczo To get Source Control Explorer object: private VersionControlExplorerExt GetSourceExplorer() { return (_applicationObject.GetObject( "Microsoft.VisualStudio.TeamFoundation.VersionControl.VersionControlExt" ) as VersionControlExt ).Explorer; } Then use it as you want: VersionControlExplorerItem items = GetSourceExplorer().SelectedItems; Regards, Zsolt Soczo ...Show All

  • Visual Studio subreport overlaps

    I have two subreport in my crystal report thy overlaps each other of they contain many rows, how can I prevent that ...Show All

  • Windows Forms Issue with AxWebbrowser_DocumentCOmplete

    Hello all, im finding that im having an issue with the DocumentComplete never being accessed, it works alright on my PC but on other pcs it just remains at my html document... Im calling the document by using the Navigate2() and then in the DocumentCOmplete i have a Popup that simply says Hello. It works fine on mine but when i send it to any of my friends the page remains blank. THe html website loads but the documentComplete is never called into action by the exe... is there any explanation for this or is it a coding error alright ive found a few others having this issue but no one has been able to resolve it... the code is as follows and maybe sombody can help me out. using System; ...Show All

  • Visual C++ Project does not detect code changes in referenced project

    Hi, I have a C# application that has a reference to a managed C++ assembly/project, which contains some managed and some unmanaged C++. At one of my computers, suddenly the C# project no longer detects code-changes in the C++ project, meaning that the dll-files copied to the bin-folder of the C# application is out of date. Facts: Set "Copy Local = true" on the referenced assembly I tested on a different computer, and there this was not a problem - the C++ assembly was properly copied to the target bin-folder of the C# application. If I do "Rebuild solution", the C++ assembly is properly updated in the target bin folder. Visual Studio detects that code changes has been performed, but the "parent" project does not. ...Show All

  • .NET Development How to extract version info from an EXE

    Hello As part of my build process I'm tring to write a console app that scans a directory and loggs the versions of all the EXEs and DLLs it finds. The problem is that not all of our apps are developed in .net and I need a way to extract the version information from VB6 EXEs. Has anybody done anything like this before Thanks Avi That worked great thanks, just a small note: FileVersionInfo is in the System.Diagnostics namesapce. Other than that it's all good ...Show All

  • .NET Development code and logic generation from xml

    Hi, Is it possible to generate a working code with a working logic in it from a xml file. If yes then how I have to build a class with methods and attributes from XML on some machine. So machine updates the code in run time and then receives objects from various sources and do some algorithm on them Any idea Regards Ash Hi Thanks for your reply. Here is the summary of what I am doing. I am building a touch screen console in which the gui changes on adhoc basis depending on what user wants(there is no fixed code) so it is a dynamic generation of gui on a remote machine. Which I have sucessfully done using XML and XSD but problem comes where I have to resolve the user inputs to generate some other re ...Show All

  • Visual Studio 2008 (Pre-release) Use of <dataContractSerializer>

    It's possible to specify the KnownType of the DataContract in the configuration file with <dataContractSerializer> element. I tried to use the following: The code snippet: [DataContract] public class SomeSet { ... [DataMember] public IList items; } [DataContract] public class SomeItem {...} Configuration file contains the following (in the <system.runtime.serialization> section): <dataContractSerializer> <declaredTypes> <add type="SomeSet, SomeData, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"> <knownType type="SomeItem, SomeData, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"/> </add> </declared ...Show All

  • Visual Studio Express Editions stupid questoin about bitmaps

    I have just begun to use Visual basic recently, and I want to create a picture. I don't want to use picture boxes(they start to lag after alot of them have been placed on the form) I know that you can use bitmaps, but all the different methods I have tried to use have ended with a blue squigly line under part of the code. I would like the code to load one of theese bitmaps, via... Public(or private, whichever works)sub form1_load <insert whatever code is needed> End sub if possible. Thank you very much in advance! You don't need a PictureBox control to display a picture on form, you can paint it directly for an absolute minimum of overhead. Here's some simple code to get sta ...Show All

  • Visual Studio Tools for Office seprating location of vsto excel sheet and dll's in windos installer

    Hi, i have created a vsto excel application that installs in the program file in the set security project i keep default values /assemblyName="ccccccccccc.dll" /targetDir="[TARGETDIR]\" /solutionCodeGroupName="MyCompanyName.ccccccccc" /solutionCodeGroupDescription="Code group for cccccccccccc" /assemblyCodeGroupName="cccccccccccc" /assemblyCodeGroupDescription="Code group for ccccccccc" /allUsers=[ALLUSERS] how can i seprate the excel sheet and other dll's i wish to install excel sheet on the desktop and dll's as it is if u have the ans plz reply it is urgent Thank's varun Hi, Putting the Dll in the G ...Show All

  • Visual Studio Automatically GET latest

    Greetings: I am not sure if this is an issue, feature or a configuration error on our side with VSS2005 as compared against VSS2003. In Studio 2003 (w. inbuilt Source Sage), whenever any of my team member checks-in a file, the same is updated in our Solution/Project automatically (without mandating us to do explicit <Get latest files> Is there a way to configure what I had as one of the productive feature in VSS2003 now into VSS2005 Appreciate your help/comments. I'm not 100% certain that this is the feature you're describing, but look in Tools -> Options -> Source Control -> Environment: you can adjust how often VS runs Get in the background in response to various events. ...Show All

  • SQL Server Multiple Datasets but needs to be tied together

    I am needing to take data from one data set that consists of a list of parts and their stock information. Then I am needing to show any transactions that the individual parts may have had during the time that user defined through the filters. This requires me to have two data sets since I can't do a join between the stocking information and the transactions due to the fact that it is very possible that every part won't have a transaction for each month of each year. Doing a left join still filters down the data too much so thus the need for two data sets. I have these parameters: Vendor, Year, Month, Type of request Vendor and Type of Request is handled through StockInfoDataset. I then need to update the table showing 0 or tra ...Show All

©2008 Software Development Network