| Thread | Last Post | Replies |
|
| Conditional compilation within template | 28 Nov 2007 18:48 GMT | 1 |
Is it possible in C++ to implement conditional compilation within a template, using a template parameter as the condition.
 Signature Nick Clark
|
| Parameters to CreateFile | 28 Nov 2007 16:51 GMT | 9 |
What arguments do I need to give CreateFile? I want to open a file or folder for reading, even if it is already opened from another place. I'm trying: CreateFile (argv[1], GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL)
|
| VS 2005 problem | 27 Nov 2007 15:47 GMT | 1 |
i am using VS 200g when i create MFC application no default files are created ( ed. resource.h, .rc file and other .cpp files). in 3 yrs first time i am facing such problem. i reinstalled whole visual studio same installation works fine in other machine and it was wrking fine
|
| DateTime and localization | 27 Nov 2007 02:00 GMT | 2 |
I have a string representing the date in US format (mm/dd/yyyy). I use Convert.ToDateTime() to convert this to a DateTime structure. I then compare this to the current date DateTime.ToDay. All works fine until the localization is changed, for example to Germany,
|
| How do I change the name of a form? | 26 Nov 2007 19:04 GMT | 2 |
I am coming from VB and one can just righ-click on a form and rename it. How do I do this in VC++? TIA,
|
| Function Overloading does not work? | 25 Nov 2007 17:13 GMT | 6 |
I get two errors void DisplayProjectedValue(double amount, int years) { Random __gc * r = new Random();
|
| How can I use add() method from the Form2 to listBox in another form? | 24 Nov 2007 19:04 GMT | 5 |
I have a problem with using listBox1. I have a two forms form1 and form2. In form1 are controls listBox1, textBox1 and button witch creating object of class Form2. In class Form2 I create a pointer to object of class Form1. I don't known how to use method add(), where
|
| Hiding properties | 24 Nov 2007 05:46 GMT | 1 |
Hi, I'm making custom component - is it possible to hide some inherited properties so I won't see them in form designer?
|
| warning C4251 using gcroot<> accross multiple native dlls | 23 Nov 2007 16:14 GMT | 6 |
I have a class hierarchy distributed over 3 native C++ dlls. The base class has a .NET Windows.Form for status output via a gcroot<>. The gcroot is declared private - the sub classes only have access via a protected "print"-method.
|
| VC++ Express, Strings and files - CONFUSED | 23 Nov 2007 16:03 GMT | 2 |
Gang, I am self taught in C and fairly proficient for last 20 years. Don't program much, just little utilities for work. Been wanting to create windows forms and found MS VC++ Express. Installed it, bought book, etc.
|
| Use C# data from a C++ DLL | 23 Nov 2007 09:05 GMT | 1 |
I do not know if this is the right group for my questions but I would guess. I have some DLL written in ANSI C++ for a cross platform use. For each DLL I have a Plugin class that extend an interface tha allow me to
|
| Commercial Release Rules | 23 Nov 2007 00:53 GMT | 2 |
I'm developing a product I eventual plan to sell commercially. I'm currently developing the prototype with MS VS VC++ .NET 2008 Express /CLI (managed). Further, it uses the SAPI TTS and Voice Recognition engine. When I go commercial, what all do I need to do to be legit? Will I ...
|
| VS2005 Data and Connection Wizzard? | 22 Nov 2007 14:21 GMT | 2 |
The data and connection wizzards of VS2005 result in the connection string being put in the application config file. I have an application where I would like to provide connection string information from a class that I write. I cannot find a way to replace the work done by the ...
|
| Console app with no app | 22 Nov 2007 05:17 GMT | 1 |
I have written a console application that acts as a server engine, processes commands sent by another application (using IPC). Currently, when my server app runs, it displays the standard DOS box. I want to be able to run my server app without displaying ANY console
|
| MC++ DLL (VS.2003) compiler errors...(sigh!) | 21 Nov 2007 21:52 GMT | 1 |
First off, I would like to state that I'm using VS.2003 / .NET Framework 1.1 and the MC++ that comes with it. I am stuck with this IDE for the time being as I am supporting some older platforms. So, I'm not going to be migrating to VS.2005 just yet!
|