|
|
|
equivalent of win32 waitable timer
Replies (1) 12 January 2006
Hi all,
I am not sure if it is even possible to do it from .NET itself. Is
there something like a waitable timer which can resume the system from
its hibernate or standby (S3: suspend to ram) mo...
|
|
|
|
Command line arguments ignored
Replies (1) 11 January 2006
Hi,
I am developing a C++ project and want to pass some command line
arguments in VS .NET 2003. I am in debug mode, the configuration is set
to Debug and I entered my argument list in Project -> ...
|
|
|
|
can't display multi-arrays variable in watch windo ...
Replies (2) 11 January 2006
look my simple code below(vc8):
double ends[2][3];
ends[0][2]=8.3;
when i debug it, the variable ends[0][2] cannot be displayed in the
watch window.
it just said "error: index '0' out o...
|
|
|
|
problems passing data from native thread back to m ...
Replies (2) 11 January 2006
Hi all,
I'm having difficulties passing data back to managed class from my
native class when the data is generated from within a native thread in
the native class itself. I will give the followi...
|
|
|
|
Using RevertToSelf in DLL to be used from classic ...
Replies (1) 11 January 2006
Hi,
I've developed a COM DLL in Visual C++ to generate a digital signature =
based on a certificate read from a PFX file.=20
This DLL is used in a classic ASP webapplication to digitally sign a X...
|
|
|
|
Dot NET DataSet/DataRelation/DataGrid Question
Replies (1) 11 January 2006
Hi,
Using VC to write a small app that displays data extracted from a database
into a typed DataSet. That all works fine.
I have three tables - Parent, Child, and then each record in the Child...
|
|
|
|
LPCSTR from System::String for newbie please
Replies (1) 11 January 2006
Please advise, why does
MessageBox(NULL, textBox1.Text, "Error", MB_OK)
work fine in VB
but
MessageBox(NULL, textBox1->Text, "Error", MB_OK)
will not compile in VC++.NET?
Have tried t...
|