|
Do you really need to support NT4?
Darka [Xanya]
-- modified at 4:40 Thursday 13th July, 2006
|
|
|
|
|
Yes, that's the problem!
I've only problems with the NT4.0 System.
If it's not possible to get the System Uptime
perhaps somebody could tell me how to get the
BootTime of this PC.
|
|
|
|
|
Metal_Knight wrote: ...how to get the
BootTime of this PC.
How about NetUserGetInfo() ?
"The largest fire starts but with the smallest spark." - David Crow
"Judge not by the eye but by the heart." - Native American Proverb
|
|
|
|
|
Excluding NT4, can you use the SystemUpTime member of the Win32_PerfRawData_PerfOS_System class?
Have you seen this article?
"The largest fire starts but with the smallest spark." - David Crow
"Judge not by the eye but by the heart." - Native American Proverb
|
|
|
|
|
Could you do it by scanning the event log for a boot message? Of course, if it's been up long enough, this message could expire off the event log buffer.
|
|
|
|
|
earl wrote: Could you do it by scanning the event log for a boot message?
Perhaps, but only Metal_Knight will know for sure if that's a viable option.
"The largest fire starts but with the smallest spark." - David Crow
"Judge not by the eye but by the heart." - Native American Proverb
|
|
|
|
|
hi..
I need to do a program in which i like to send data fron ethernet port and will catch in other systems hyperterminal...
Thanx in advance
birajendu
CyberG India
Delhi
India
|
|
|
|
|
Hi to all,
How to set my own Context Menu for Right Click of any file. ( as we see Normal Context Menu for right click on any file in Windows)
I am designing a code to play Audio Files. So (after installing it), I want to add Menu Item “Add in My_Project_Name” in Context Menu of Right Click on all Audio Files. How to do it?
Thanks & Best Regards,
Aniket Salunkhe
|
|
|
|
|
|
Hi all,
I'm trying write the variable line1's value to a file, but the output in the file is:
1824896
This is what i'm trying:
String^ line1 = "082 123 4567";
char *CellNumber = (char*)(Marshal::StringToHGlobalAnsi(line1)).ToPointer();
fprintf( CRCOutput, "%s",CellNumber );
-- OR --
fprintf( CRCOutput, "%d",CellNumber );
But I still get the same result.
Can anyone help.
Thanx in advance
Programm3r
|
|
|
|
|
Looks like your printing the pointer address, try dereferencing CellNumber.
|
|
|
|
|
ok, haven't thought of that.
Thanx I'll see if that works.
Programm3r
|
|
|
|
|
TClarke,
I came right thanx I used a StreamReader
StreamWriter^ CNFwriter = gcnew StreamWriter(path);
CNFwriter->Write(line1);
Without using conversions.
Thanx
Programm3r 
|
|
|
|
|
Thanks for the feedback
|
|
|
|
|
Is this a Managed C++ question?
"The largest fire starts but with the smallest spark." - David Crow
"Judge not by the eye but by the heart." - Native American Proverb
|
|
|
|
|
Hi all,
Can i split the movie(avi) file in to different frames?
Dream bigger... Do bigger...Expect smaller
aji
-- modified at 2:56 Thursday 13th July, 2006
|
|
|
|
|
Yes , lots of free splitter out there
|
|
|
|
|
Thanks
Can you give me some hint to it?
Dream bigger... Do bigger...Expect smaller
aji
|
|
|
|
|
|
I want to know it how can i split in to frame???
Dream bigger... Do bigger...Expect smaller
aji
|
|
|
|
|
see if this helps Link[^]
You know you're obsessed with computer graphics when you're outside and you look up at the trees and think, "Wow! That's spectacular resolution!"
Only kings, presidents, editors, and people with tapeworms have the right to use the editorial "we."
|
|
|
|
|
Hi,
I want to add a combobox ctrl to a listctrl column.
How can i make it ?
thanks in advance...
vinsankar
|
|
|
|
|
Care to explain how enabling checkboxes will make a combobox appear?
"The largest fire starts but with the smallest spark." - David Crow
"Judge not by the eye but by the heart." - Native American Proverb
|
|
|
|
|
|