| Thread | Last Post | Replies |
|
| FindFirstFile and FindNextFile | 01 Jul 2005 00:26 GMT | 1 |
Hi, all! We are devleping one app that will use disk access with FindFirstFile and FindNextFile for it. Can someone expose me how works FindFirstFile and FindNextFile in disk access? Does the findFirstfile read all files of disk
|
| Byte Array not compatible. | 30 Jun 2005 22:29 GMT | 1 |
Can someone tell me how to get the below code working please. System::Byte * enced = new byte[Data->Length]; ///.. copy data in to array. (omitted)... //Now pass to memory stream constructor
|
| MSVCRT.DLL | 30 Jun 2005 21:23 GMT | 3 |
I've developed a simple game that needs to be compiled as a multithreaded dll. I've read that since I use this runtime-library my applications will need MSVCRT.DLL at runtime. Is it possible to perform static linking with MSVCRT.lib or do I have to ship MSVCRT.DLL together with ...
|
| Can't Link Mixed DLL with Visual Studio | 30 Jun 2005 21:23 GMT | 2 |
I'm trying to link a mixed (CLR and native) DLL with visual studio. I have it working fine on the command line, where cl is used to invoke link, but I can't get it to work with VS. I get: unresolved external symbol: __CorDllMain@12
|
| install component in GAC ?? | 30 Jun 2005 18:31 GMT | 1 |
using the setup project in VisualStudio : I add an exe that uses a component so I add the component to the setup-project as well but how can I specify that the component must be installed in GAC when the client runs the setup for the application ? (so far is it only installed in ...
|
| array as output parameter ??? | 30 Jun 2005 17:05 GMT | 1 |
I have a function that creates an array and want to use that array in the client. but what is the syntax in C++.NET 2005 to specify an array as output param of a function ?? ref class Test {
|
| StackOverflowException after calling unmanaged ctor | 30 Jun 2005 10:34 GMT | 3 |
**Newbie with managed C++** I'm trying to wrap an unmanaged C++ class in a managed C++ class library. When I instantiate the wrapper class it's ctor calls the ctor on the unmanaged class and at that point I get the exception:
|
| Printing multiple pages | 30 Jun 2005 09:13 GMT | 1 |
I develop a multiple forms applications with Microsoft Visual Studio C++ .NET 2003 and I'd like to know how can I print more than one page in my application. For printing one page, I do: private: System::Void button1_Click(System::Object * sender,
|
| Deleting Int32? | 30 Jun 2005 04:32 GMT | 4 |
I'm reading page 40 of "Managed .NET and C++ Development" by Stephen Fraser and it says: "Managed C++ value types default to being garbage collected when defined as pointers, wheras traditional C++ data types don't. Because this is the case,
|
| Dataset.Tables property | 30 Jun 2005 04:29 GMT | 2 |
Can someone tell me what I'm doing wrong here: DataTable^ table = safe_cast<DataTable^>myDateSet->Tables[0]; I am getting a compilation error. Rasika.
|
| Link error: missing function AlphaBlend from msimg.dll | 30 Jun 2005 02:55 GMT | 2 |
I'm trying to call the Microsoft image-processing function AlphaBlend() in my Visual C++ application. My software compiles okay, but gets a link error (details below) that says it cannot find the symbol AlphaBlend(). I'm calling dozens of other Microsoft bitmap and imagery ...
|
| build same dll but checksum different each time? | 29 Jun 2005 18:55 GMT | 1 |
I need to be able to build my code into a dll where the checksum of the dll is the same everytime I build it. In other words, the same exact code gives me a different checksum each time I build it. Does anyone know why the dll would not be the same every time? Is it adding
|
| arrays are simple ??? | 29 Jun 2005 16:52 GMT | 1 |
I try : short ^arrShort = gcnew short [MAX]; arrShort[0] = 1; --> COMPILER ERROR error C3915: 'System::Int16' has no default indexed property
|
| Default Printer Changed Event | 29 Jun 2005 16:26 GMT | 3 |
I know that it's possible to register with the OS to receive certain file system events. Does anyone know if it's possible to receive an event when the user changes the default printer setting? Thanks. Jerry
|
| How to trobleshoot slow link time | 29 Jun 2005 15:40 GMT | 1 |
My very large native C++ app takes a long time to link (approaching five minutes). How can I troubleshoot *why* it takes so long to link? I'd like to look for ways to reorganize things to speed up the link.
|