Software Development Network Logo
  • VS Express Editions
  • Visual Studio
  • Visual C++
  • Microsoft ISV
  • Architecture
  • VS Team System
  • Game Technologies
  • Windows Vista
  • Smart Device
  • Visual Basic
  • Windows Forms
  • Visual J#
  • .NET Development
  • Windows Live
  • Visual FoxPro

Software Development Network >> vatsal shah's Q&A profile

vatsal shah

Member List

Satheesh Kumar
Nir Floripa
jmnc1234
szembek
Aaron Stern - MSFT
Adeel bin Khalid
Aero.NET
RussellH
WeiCheng Zhang
lawlordds
Talwalkar
Ricardo Pinto
Raymond Sassine
Synshadow
StarPilot
JanusKH
Barguast
gunning
zhuyanjun
Ted Glaza
Only Title

vatsal shah's Q&A profile

  • Windows Forms JIT Debugging

    Ok im still new to this but how in the world do i enable JIT debugging on my windows form application and where do i do it. i have the following code <configuration> <system.windows.forms jitDebugging="true" /> </configuration> But i place it in my form but it doesn't work anyone know what i should do or where i should place it Hi, I think things have changed with Beta2. Did some R&D and finally out how to do this in VB 2005 and Beta 2. Here are the steps: To manage an unhandled exception 1. With a project selected in Solution Explorer, from the Project menu select Properties. ...Show All

  • Visual C++ Error C3845

    Hi,    I am having a problem declaring an array of a managed user defined class in a 'private ref class.' The error is, Error C3845: 'A::b': only static data members can be initialized a ref class or value type Example code for this is... public ref class B {    System::Int32^ i;    System::String^ s; } public ref class A {    cli:: array <B ^> ^ b= gcnew cli:: array <B ^>(100); } My problem is I do not want the array to be static. How would I go about making an non-static array like this Dan: this being C++ (and not C#) you need to initialize the non-static ...Show All

  • Visual Studio Express Editions Application failed to start, mspdb80.dll was not found error !!

    I stopped using Visual C++ Express Edition for a few days after it was working fine.  I came back to it today, opened some programs in a text editor that I had gotten from a tutorial, and tried to compile and run them on the command line using "cl /EHsc [filename].cpp".  I have done this many times in the past with the same exact files, in fact, and I have never gotten this error before. [cl.exe - Unable To Locate Component] This application has failed to start because mspdb80.dll was not found.  Re-installing the application may fix this problem. I have not deleted or moved any files since my las ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Help with compiler (VS2005 c++, D3D)

    Well,... the first thing I'm wondering is if anyone else experienced similar problems opening sample solutions from the sample browser - versions for the Vs2005beta. I keep getting critical error that says something like "...XML failed  parsing...Property sheet file 'UpgradeFromVC71.vsprops' was not found or failed to load." As the 2005.sln wouldn't load, I tried converting the Vs2003 solutions. Here I encountered the second set of problems. When the solution tries to compile, I get a "duplicate resource" error, type:MANIFEST. O.K. So I had to open the project.rc file and exclude the line that defines the manifest file. The project comp ...Show All

  • SQL Server What is the environment for data mining programmability?

    Hi, all here, I am new to data mining programmability. And as we know with the data mining programmability, we can integrate data mining with client applications via a series of data mining programmability APIs like AMO.NET, ADOMD.NET,SERVER ADOMD.NET, OLEDB, ADO,ADO.NET and so on. So what is the environment for the data mining programmability then I mean what kind of IDE can we develop the data mining programmabiliy Thanks a lot for any guidance and help. With best regards, The typical environment is Microsoft Visual Studio 2005. Certain operations may be performed with the Express edition of Visual Studio products. In additi ...Show All

  • Visual Studio Can I Install VS 2005 Pro over VB 2005 Express Final?

    Hello! I installed the Express Version of VB 2005 in German with SQL Express German, the .NET Framework 2 with Language Pack (German) and the MSDN Library ( ) for Express Editions. My Question is, can I install the Pro Version of VS 2005 (when it comes in Germany, I think about February the 10. this year) over the existing Installation (as an "Update") or must I deinstall the Express Editions All my searches about this brought answers that has to do with an Installation over Betas or RC Versions of Express Editions and not the Final. Will it work Thank you very much! Yes, this is cal ...Show All

  • Windows Forms Dialogs inheriting from dialogs inheriting from dialogs get multiple OK events!!!

    I have a stack of inherited classes from which my dialogs inherit various functionality. BaseClass (some function key and other stuff)  is parent of DialogNoDataBase (ok and cancel buttons) is parent of DialogBase (slick mechanism for passing in and out the data) is parent of vaious Working dialogs DialogNoDatabase has protected overridable bOk_click ... to respond to the OK button click event. It sets the dialog result. DialogBase has protected overrides bOk_click ... to repond to the OK button click event and handle passing out the data and calls myBase.bok_click Working Dialogs may have protected ...Show All

  • Windows Forms MessageBox does not display correctly

    I developed a very simple VB program and it worked fine before. However, now when I opended the program, my MessageBox would not display Yes and No on the face of the buttons. I have went through Microsoft Office update and Windows update in between. Double check against this KB article, some antivirus applications are known to cause this problem: http://support.microsoft.com/default.aspx scid=kb;en-us;893708 ...Show All

  • SQL Server 2005 clr returning xmldocument

    I would like to return an xmldocument from a 2005 vb clr stored procedure. This is my definition for the stored procedure. passing in a string, return xmldoc. Can I not return an xmldoc as output The solution will build, but not run. Partial Public Class StoredProcedures <Microsoft.SqlServer.Server.SqlProcedure()> _ Public Sub SP_Transform(ByVal cc As String, <Out()> ByVal RetValue As XmlDocument) Error 1 Column, parameter, or variable #2: Cannot find data type XmlDocument. SqlServerProject1 Interesting question. I'll have to try it. My gut, however, is that you shou ...Show All

  • Visual Studio ASP.NET ReportViewer Examples Lacking

    I would like to see better examples around ASP.NET and the ReportViewer. Primarily, how do you do subreports and drillthru's. There seems to be an abundance of examples, documentation and help for Winforms, but Webforms is lacking. Thank you http://www.gotreportviewer.com/   ...Show All

  • Software Development for Windows Vista Tracing persistance erors

    I have the following switches set in my WF host app config file: < system.diagnostics >   <switches >     < add name = " WorkflowTraceToDefault " value = " 1 " />     < add name = " Host " value = " All " />     < add name = " Runtime " value = " All " />     < add name = " Tracking " value = " All " />     < add name = " Activity " value = " All " />   </ switches > </ system.diagnostics > Are there any more that I can set (and what are the possible values) I'm trying ...Show All

  • Windows Forms MessageBox function behaves very weird for me

    MessageBox function behaves very weird for me when I code like this MessageBox::Show(S"Failure"); The event fires with blank message box What is wrong with this Any namespace or mandatory inclusion missing I am using Visual Studio 2003 Thanks, Finally, I found the reason. Incompatibility with Visual Studio 2000/2003 and VirusScan Enterprise 8.0. When the "Buffer Overflow Protection" in VirusScan Enterprise 8.0 is disabled, the text displays properly. When I disable buffer overflow, it shows. When I enable it, it does not show. I got the fix info here http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=57738 ...Show All

  • Windows Forms Twips, Pixels, WTF????

    Hello all, Can someone please explain to me how I can get my form to look the same on everyone's pc   I understand that I am sizing my form to pixels and that it is displayed using twips, which seem to be different based on the users computer, something like 12 to 18 or so. My problem is that I get my form looking nice and pretty&nb ...Show All

  • Visual C++ errors while executing vc++ code

    Hi I have one opensource of vc++. While executing this code it is giving the following errors. 1)error C2433: 'HWND' : 'inline' not permitted on data declarations 2)error C2143: syntax error : missing ';' before '{' 3)error C2447: '{' : missing function header (old-style formal list ) 4)error C4430: missing type specifier - int assumed. Note: C++ does not support default-int 5)error C2086: 'int CALLBACK' : redefinition If any one got these errors and knew the solution please let me know. Thank You angle If you include the code that you are trying to compile it's much easier to tell you what is wrong with it. Are you using the 'inli ...Show All

  • Visual Studio Team System Step Missing From Install Guide for Dual Server!

    There is a very important step missing in the Install Guide for Dual Server Deployment. In the section titled "How to: Install Microsoft SQL Server 2005 for Team Foundation Server," between steps 10 and 11 there is a very important step missing for the installation step related to Service Account. What service account is supposed to be used I chose Local System but when I later tried to install the TFS databases, the application log is full of "Failure Audit" messsages and no databases are installed. Is this a result of my incorrect choice And can the documentation be updated with the correct choice Thank you! ...Show All

©2008 Software Development Network