| Thread | Last Post | Replies |
|
| modeless dialog form hanging | 26 Nov 2004 17:55 GMT | 1 |
I'm having a problem with a modeless form in my app. I have a main form in my app and a socket that waits on data from a server (I use BeginReceive/EndReceive for that) and when I receive certain data from the server I want to create a new modeless form to show some of that
|
| _beginthread on a class method | 26 Nov 2004 14:08 GMT | 2 |
I have a class called cScale, I have made an array of scale objects and I need to run a method of these objects as a new thread. This is my line of code and I can't get it to run. I am still a little of a newbie to C++. Scales is an array of scale objects and weighup is my ...
|
| Is it possible? | 26 Nov 2004 00:27 GMT | 1 |
I have a C++ .NET .dll project that has no windows. Is it possible to add and use ActiveX control in such a project? How to do this?
 Signature Jurate
|
| System.Diagnostics.DebuggerStepThrough | 25 Nov 2004 11:01 GMT | 1 |
I would like to ask, what is System.Diagnostics.DebuggerStepThrough class and what is is used for? Thanks a million! --A
|
| ActiveX controls for windows forms .net | 25 Nov 2004 10:01 GMT | 2 |
I have Visual C++ .net 2003 and am trying to add a chart to a form. When I try and use MSChart or any other of the activeX controls (ie MS Calendar) I get an error message saying that it can't find a dll file but if I look in the debug directory of the project file it's there.
|
| How can I know if I have a writable permission to a folder using V | 25 Nov 2004 09:58 GMT | 1 |
I want to check if I can write in a NTFS folder or not using VC++. Thank you.
|
| Migration issues vc6 -> vc7 I have message handlers, modified to return values, that wont compile | 25 Nov 2004 08:46 GMT | 2 |
I'm trying to find a workaround to this problem ON_BN_CLICKED(IDC_CANCEL, OnCancelOperation) BOOL CCurrenciesDialog::OnCancelOperation() Somone's obviously modified this handler to return a BOOL and the
|
| Need local suppression of debug info | 25 Nov 2004 05:29 GMT | 1 |
My latest library leads to a lot of internal errors and compiler limit errors (C1001, C1055, C1067) when compiled on VC7.1 with /Zi or /ZI. The library compiles on GCC 3.4.1, Comeau 4.3.3 and Intel 8.0, and with fewer errors on VC8.0 beta, so I don't think the errors reflect ...
|
| Non-static member function as a callback | 24 Nov 2004 23:13 GMT | 4 |
I would like to do something like this: struct A { int f(float f); };
|
| LNK2001 : unresolved external symbol ___pfnBkCheck | 24 Nov 2004 23:09 GMT | 4 |
I am new to C programming, and trying to run a console program on VC98 C++ version 6.0. service pack 5.0. I am running on WinXP SP2. The C program is just a simple 'hello world'. But it's not working. It worked before, but now I have visual fortran installed. Visual ...
|
| books on vc++.net | 24 Nov 2004 21:21 GMT | 3 |
i want to learn vc++.net but i am not sure from where should i start. i know c# and i have no idea about c++. where should i start first? thank chang
|
| name of the standardprinter | 24 Nov 2004 21:00 GMT | 1 |
in a .NET program I want to print, using a Standard C++ Library object. I have the following code, assuming the name of the printer is \\EDV_SERVER\EK-HPLJ5000N_PS ofstream printStream;
|
| how to set the file short name? | 24 Nov 2004 15:01 GMT | 5 |
Does anyone know how to change the file's short (8.3) name? I cannnot find the way anywhere including MSDN. I know how to get the long name and the short name of the files. (using GetLongPathName() and GetShortPathName())
|
| CSingleLock() Assertion failure | 24 Nov 2004 14:59 GMT | 5 |
I have some C++ code that uses the CSingleLock( CCriticalSection *) constructor. In visual C++ 6.0, this code compiles and runs fine in both Debug and release modes. However, in Visual Studio .Net, when I run this code I get an Assertion failure. The error appears to be ...
|
| Problem with VC++ signed and unsigned __int64 << and >> operators? | 24 Nov 2004 12:43 GMT | 17 |
The following code snippet does not seem to work correcly unsigned __int64 result = 0xFFFFFFFFFFFFFFFF; result = result << 64; Debugger.WriteLine(System::String::Format(S"{0:X16}", __box(result));
|