|
Memory leaks Visual Studio 2005. I have memory leaks in my project. I seem have 7 objects that are not being destroyed properly. The memory locations being left behind are the same everytime. Can I find out when these objects are being created so that I can figure out what they are? Thanks, GT This is the output w... 21 May 2008 08:08
Need help publishing web service Hello, I created a simple web service for testing purpose in Visual Studio 2005: [WSTest.asmx] <%@ WebService Language="C#" CodeBehind="~/App_Code/Service.cs" Class="WSTest" %> [App_Code/Service.cs] using System; using System.Web; using System.Web.Services; using System.Web.Services.Protocols; ... 20 May 2008 14:41
Shortcut no getting created on Windows Vista Desktop Hi, My application needs to create a shortcut on the desktop, I am using the registry key "HKEY_CURRENT_USER\Software\Microsoft \Windows\CurrentVersion\Explorer\Shell Folders\Desktop" to get the desktop path. Now, all is fine but the shortcut is not getting created on a couple of Windows Vista systems, On inve... 22 May 2008 06:51
How to add a document to a view How can i manually add my own CDocument derivative to a CView deriative? I have created my own MDIChildFrame with a splitter a two formviews and want each to share the same document. So this document does not get created via the usual file new procedure or doc template stuff. I cannot find an easy way to... 27 May 2008 09:39
How can I fool an ActiveX control? Hello fellow Newsgroupies, I have a third party ActiveX control which like most ActiveX controls insists on being created and living on a Window (whether it is visible or not). However, I would like to embed it as a data object somewhere using its wrapper class and not have to create it on some transient child... 20 May 2008 13:06
File names under XP and Vista Slightly OT question - except that I'm saving a file from an MFC program :-) Under XP and Vista, am I allowed any Unicode character in a file name except the usual few punctuation characters? I haven't thought about this before, but I have saved one containing a "w with a ^ on it", and it seems ok. Are... 21 May 2008 19:07
Change/edit Control Tab Order without restarting from beginning? I use Visual C++ 4.2. Recently, I am working with a lot of controls on my application form. so that I must be very careful in arranging the Tab Order. The problem is when there is new control addition AFTER all Tab controls order has been setup. How can I just give the new control new Tab number instead of re... 20 May 2008 02:42
connect to sqlserver from vc Hi , can any body help me mentioning the steps to coonect SqlServer from vc 6.0 using ODBC/ADO ... 20 May 2008 05:03
Safely reading text from HWND To avoid using fixed size buffers I want to read the text of an unknown window into a CString. All I know about is it's HWND. To do that I wrote this code: CWnd *pWndTemp; CWnd *pWndClone; CString strText; pWndTemp = new CWnd; pWndClone = pWndTemp->FromHandle(hwndUnknown); pWndClone->GetWindowText(strText... 20 May 2008 16:15 |