| key events on browser contained in my application (2 replies) |
| microsoft.public.dotnet.languages.vc.libraries |
| Hi! I'm developing a client application to chat with other people. This one has several functionalities that are not important here. My problem is that it contains a web browser where I load a page to chat with other people. I use my own class to implement the browser container. It inherits from IDispatch and use references to IUnknown, IWebBrowser2 and IHTMLDocument2. The page that loads into bro... |
|
| MSVCRT.DLL (2 replies) |
| microsoft.public.dotnet.languages.vc.libraries |
| Hi there, Hope someone can help me. My PC is running on WXPhe, P4. I installed a digital video editing software, Adobe Premiere 6.0. The installation files for this software have a version of MSVCRT.DLL which is causing the application to close. I did visit the MS KB pages, but so far I did not find the right solution. Shall I replace it with a newer version ? As it is packaged in a .cab file, how... |
|
| Problems linking unmanaged code to managed c++ dll (2 replies) |
| microsoft.public.dotnet.languages.vc.libraries |
| I have c/c code that I want to be able to call from managed c . (It is code for the GSM codec it's not mine, and I know it works) If I try to put the code in the same project, I get errors as described by: http://support.microsoft.com/default.aspx?scid kb;en us;822329 If I try to compile the code in a separate project as a static library, and then link to it, I get errors as described by: http://s... |
|
| What versions of the runtimes are available in Windows 2000 and all of the subsequent service packs? (2 replies) |
| microsoft.public.dotnet.languages.vc.libraries |
| I'd like to know so I can determine a minimum service pack level so that I don't have to redistribute any runtime files. Same for Windows 2003. |
|
| Using dll built on MSVC6 with .NET 2002 (2 replies) |
| microsoft.public.dotnet.languages.vc.libraries |
| Greetings, My C application built with .NET 2002 link with a dll that was built with MsVC6. My application calls a function which return a char *. This string has been dynamically allocated in the dll and I should normally desallocate it (delete [] thePtr). But when I'm doing this, an assert failed " CrtIsValidHeapPointer(pUserData)" File : dbgheap.c Line :1132 When I buid my application with MsVC... |
|
| ana (2 replies) |
| microsoft.public.dotnet.languages.vc.libraries |
| I need clear the pantalla,but I use clrscr and this comand do not exit in visual c |
|
| findfirst behavior (2 replies) |
| microsoft.public.dotnet.languages.vc.libraries |
| Hi, It seems that findfirst/findnext always returns files in a directory in alphabetic order, is there a way to change that ? How can I get files sorted by type or size .... and not always by name. Maybe I should use another functions set but I don't know which one. Regards, Thierry Language Visual C 6.0/MFC OS Windows 32bits |
|
| C2621 when using "find_first_of" (STL) (7 replies) |
| microsoft.public.dotnet.languages.vc.libraries |
| Greetings! I'm now building some VC6 compatible programs under VC7 (VS.NET 2003). Here is my problem: vector wstring ::iterator itArgv; // ...... if (basic string wstring ::npos ! itArgv find first of(L"ABCDEFGHIJKLMNOPQRSTUVWXYZ", 1)) // error C2621 { // ...... } Based on the header file "xstring", "find first of" returns "npos" when the data specified cannot be found. How can I test the return v... |
|
| Any free SSH API? (2 replies) |
| microsoft.public.dotnet.languages.vc.libraries |
| Is there any free SSH API to use with C ? |
|
| DLLHOST crashes when network is unplugged (2 replies) |
| microsoft.public.dotnet.languages.vc.libraries |
| Hi All, When network is unplugged, components which are residing under COM crashes during component creation, this is the case with the components which are compiled with VC .NET. If the same component is compiled with VC6.0 component creation is successful. Any suggestion are welcome. Regards, Ramesh |
|
| DBGPROXY.EXE holding a file reference of a DLL (2 replies) |
| microsoft.public.dotnet.languages.vc.libraries |
| Hi All, To debug a C program running under DLLHOST, i am attaching to the DLLHOST process..even after detaching, dbgproxy.exe is holding a file reference(HANDLE) to the C COM component. So when i try to modify the C program and compile as the dbgproxy.exe is holding a reference unalble to generate teh dll file as it is being used by the dbgproxy.. In addition to the dbgproxy, DLLHOST.exe which i w... |
|
| System::web::mail not found (2 replies) |
| microsoft.public.dotnet.languages.vc.libraries |
| Hi , i have visual studio.NET 2003 installed , but there is no namespace by the name System::Web::Mail. Any idea how to get it ? Tarun Tarun ********************************************************************** Tarundeep Singh Kalra (tarundeep1976 nospam at yahoo dot nospam dot com) ************************************************************************* |
|
| How to programatically determine the .NET Framework Version (2 replies) |
| microsoft.public.dotnet.languages.vc.libraries |
| How to programatically determine the .NET Framework Version Tarun ********************************************************************** Tarundeep Singh Kalra (tarundeep1976 nospam at yahoo dot nospam dot com) ************************************************************************* |
|
| Windows Messenger interaction (5 replies, VIP) |
| microsoft.public.dotnet.languages.vc.libraries |
| Is it possible to interoperate with Windows Messenger using .NET? For example to create and register event handlers to various windows messenger events like someone of your contacts to come online. If yes please mention the relevant namespaces and/or classes. Ioannis Vranos |
|
| Problems with delete (2 replies, VIP) |
| microsoft.public.dotnet.languages.vc.libraries |
| Hi, I have a structure in a static library, in that I have a byte pointer. When I delete the byte pointer using delete [] outside the library, it gives me an access violation error. Please tell me the solution? From: Mayank Garg Posted by a user from .Net Guru (http://www.dot-net-guru.com/) Id yaRWiSIg3EWY0YotGRz gA /Id |
|
| ifstream in C++ .Net 2003 getline problem (2 replies) |
| microsoft.public.dotnet.languages.vc.libraries |
| In .Net 2003 I use #include fstream using namespace std; Sometimes getline does not stop at the end of line but reads up to the size of a buffer. In some programs it works OK, in some makes this problem. Is there a way to resolve it? Thanks, |
|
| winioctl (2 replies) |
| microsoft.public.dotnet.languages.vc.libraries |
| Hi, I try to retrieve local drive layout info in WinXP by calling: 1. HANDLE hDevice CreateFile("\\\\.\\PhysicalDrive0", 0, FILE READ ACCESS | FILE WRITE ACCESS, NULL, OPEN EXISTING, 0, NULL); 2. BOOL bResult DeviceIoControl(hDevice, IOCTL GET DRIVE LAYOUT EX, NULL, 0, dlie, sizeof(dlie), &tmp, (LPOVERLAPPED) NULL); dlie DRIVE LAYOUT INFORMATION EX and tmp DWORD. I can't compile the code. because ... |
|