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

Software Development Network >> Yum's Q&A profile

Yum

Member List

RobertHernandez
Jean Baronas
Mykhaylo Blishch
Mark Magoo
kr.Nitesh
nixkuroi
Swanands
Grant Jenkins
infology
AbhimanyuSirohi
Darren8669
anvaka
Paul Wheeler
Ayyappan
Jenska
Rateesh
A. Fontana
Bruno Stocker
Rory Wilson
Adama
Only Title

Yum's Q&A profile

  • .NET Development !dumpheap -stat is not working

    Hi, I'm trying to debug a memory leak in the .NET program. I got the memory dump from the ADPlus.vbs. I use the windbg, load the sos.dll, and try to use the !dumpheap -stat to exam the content of gc heap, nothing showes up from the !dumpheap command. Worst after I issued the !dumpheap command, the windbg hangs up. Can anyone help me to get the !dumpheap working Thanks. Bobby Bobby, Ensure you have the right version of sos.dll loaded for the framework. (i usually create another folder under the Windbg directory called clr20 and copy the .net 2.0 sos.dll there.) .chain should show you all l ...Show All

  • Visual Studio Howto determine the startup form of a project?

    I'm trying to figure out which form is the startup form for a WinForms project. Ive looked for some property in the project or the VB file itself and neither one seems to know the answer. More specifically, I'm looking at the Properties collection of the project and the projectitems objects using the DTE. Obviously I'm missing it here. Where can I look to find this information Thanks Bill Would this work Sub Macro2() Dim objProject As Project = DTE.Solution.Projects.Item(1) For Each objPI As ProjectItem In objProject.ProjectItems If objPI.Name = "My Project" ...Show All

  • Visual Studio Could not load type 'Microsoft.VisualStudio.Shell.Interop.SVsSmartOpenScope'

    Hi Everyone, I have just installed the "Visual Web Developer 2005 Beta 2" on my XP Professional machine. After I create a .aspx page, when I click on "Design" button I am not able to see any control on "Design" mode, but simply a blank page (I have added few controls in "HTML" mode) and get following warning... ------------------------------------------------------------------ Warning 1 Could not load type 'Microsoft.VisualStudio.Shell.Interop.SVsSmartOpenScope' from assembly 'Microsoft.VisualStudio.Shell.Interop.8.0, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'.  0 0  ------ ...Show All

  • Visual C++ Using map as DLL function parameter

    Hi, I'm trying to create a map object in main program and give pointer to this map to function from dll as parameter. When then I want to use this pointer in the dll function every attempt at iterating the map leads to program crash. It is peculiar because methods as size and even access to first pair of the map works normally. Thank you for help. That's the problem with statically linking the CRTs. As you should know, std::map uses dynamically allocated memory to store it's map as you add entries to it (or you construct/destruct/copy construct), and particularly for iterating entries. You'll get crashes wit ...Show All

  • Windows Forms Call Borland 3 C++ from C#

    Hi This question might have come up a few times before.. if so, please bare with me. I have been given a C++ DLL that has some methods, classes etc. that I need to call.  The DLL was compiled with Borland 3 C++ I think. I have tried adding a reference to the DLL using Vísual Studio 2003, but it says that the DLL is not a& ...Show All

  • Visual Studio Express Editions microsoft works database link

    Help, I have just started using VB again and would like to like a VB program to a Microsoft works database so that i can utilise its data. Is this possible if not is there a data storgae tool in VB studio that i can use to store all this data Cheers hi, you can have many different type of data storages starting from text file , xml ....... databases you asked about databases so you can take a look to those links sqlconnection in .net >>> http://msdn.microsoft.com/vbasic/reference/data/default.aspx pull=/library/en-us/dnsql90/html/mandataaccess.asp#mandataac_topic5 many database connection strings >>> http: ...Show All

  • Visual C++ 64bit manifest problem / side by side issue

    Hi all, I have a 64bit app that refuses to start, it complains about common controls supposedly amiss (in the event log. the error message popping up when starting the app is something completely useless, of course. "...aplication configuration is incorrect...."). It's built from the same source tree than the corresponding 32bit app, which uses some common controls functionality, however, it used to work and now it suddenly doesn't any more. Anyone have any hints on how i can systematically go about finding out where the problem is I told VS2005 explicitly to not include or generate any manifests, and yet i end up with a bloody manifest file ...Show All

  • SQL Server Why does drag and drop not work in vs 2005 with a dataset??

    If done a clean install of visualstudio 2005 professional and i already have problems with the drop and drag. so I created a new project (windows application) there i created a new database with vs2005 (im running sql server 2005 express) i created tables and then i added a dataset with the wizard. when that was done i draged and droped my table from the datasources window to the form. vs2005 created the navigater, bindingsourse and table adapter + the dataset on to the form. now i runned the application and when i changed a value and saved it it should be saved in the.mdf file (database) but it issen't. when the application is ru ...Show All

  • Windows Forms smart client security error

    hiya, I'm using XP OS and I'm trying to download and run the .EXE from the iis folder.(it's on the same machine at the moment, i'm simply trying to get it to work.) I run this from the cmd line: <command> iexplore http://localhost/mytelesales.exe <\command> <error> iee.exe error: An unhandled exception of type 'System.Security.SecurityException' occurred in IEExec.exe Additional informat ...Show All

  • .NET Development can't browse .asmx pages

    Hi, I have web services implemented in c#, they work fine and i can browse .asmx pages in ASP .net Development server ( like http://localhost:portNumber/foldername/service1.asmx). But when i publish my web project and add virtual directory in IIS i can't browse .asmx pages in IE. It says :" Object reference not set to an instance of an object". These web services use data layer for connnecting to databse and execute stored procedures, so i added .dll of this project (data layer is a class library project) to web project. i don't know if it has something to do with this problem. anybody knows what can be wrong Thanks ...Show All

  • Visual C++ Project Build Error PRJ0003 "error spawning cl.exe"

    Help! None of my projects will start. I keep getting the same build error. I have already added the directory that houses cl.exe to the VC++ executable directory and now it gives me a dialog box that states "These project configurations are out of date. Would you like to build them " Upon clicking yes, it states "There were build errors, continue Upon clicking yes, it states "Unable to start debugging. Unable to find to start program with the path of my project and the nameOfMyFile.exe. The system can not find the file specified." Then the task list displays the error spawning cl.exe. What shall I d ...Show All

  • SQL Server messages aren't getting through after backup / restore on a different server...

    after restoring a database and regenerating keys, I'm trying to queue messages, and they're all hanging out in sys.transmission_queue with the following message: An exception occurred while enqueueing a message in the target queue. Error: 15517, State: 1. Cannot execute as the database principal because the principal "dbo" does not exist, this type of principal cannot be impersonated, or you do not have permission. I can't find any documentation or blog info on this error... Help! thanks! Probably the dbo of the database is the original login that created the database, on the original server, and tha ...Show All

  • Visual Studio hxw and hxd type files double?

    I was wondering why some identical hxw and hxd files are stored in [doc and settings]\all users\Local Settings\Microsoft Help and some in [user folder]\Local Settings\Microsoft Help. The files looks identical (at least at size). Can the identical files be deleted from the local profile of the user When gets those files installed in the user profile can it be prevented Tnx Rene Hi Rene, These files should not be deleted, even if it seems that they are duplicates. They are being created by MSHelp runtime during installation of the products that install hxs files and register hxs namespaces (for e ...Show All

  • Smart Device Development WaitHandle (IDisposable)

    This is more a question out of interest than an issue really. In the full framework and in CF 2.0 the WaitHandle hierarchy implements IDisposable but in CF 1.0 they did not. Was WaitHandles implemented different in the old Compact Framework Not implementing IDisposable on WaitHandle in V1 was more of an omission on our part rather than a design decision and we decided to fix this in V2. Thanks. ...Show All

  • Visual Studio Team System InfoPath projects fail in TFS

    If I add a infopath project to a source controlled solution other teammembers donot get a working infopath project when they get-latest the solution. They get various errors, primarily caused (as it seems) by the missing of the InfoPath files. They are not retrieved from the source control. I stored the InfoPath project in a subfolder under the solutionroot. [EDIT: A work around is to make the files writeable (after a manual get from the source control) and then reopen the solution. The infopath project opens fine then. Compiling became the next problem. The output path of the enclosed c# project shoud be .\ (instead of bin\Debug)] Anyone in ...Show All

©2008 Software Development Network