if you want to do it more basicly in socket level:
[1]connect to www.ceco.se : 80;
[2]send http get request, such as:
GET /ExistingTxt.txt HTTP/1.0\r\n
Host: www.ceco.se
Pragma: no-cache\r\n
Agent: simple\r\n
\r\n
[3]wait web server response,
normal one likes:
HTTP/1.0 200 OK\r\n
Content-Length...
hi,maff:
Maybe you can do so by modifing the resource DLL of
winlogon.exe -> msgina.dll.
Using a tool like Visual C++ to open this DLL as
resource ,find the dialog that you want to change
and change it as you want. The last thing is save the
changes & reboot to view the result...
hi,
Wow! Why¡¢Where did you use "CString"?
The following code really works on my Window2000 Server.
char buf[200];
strcpy(buf,"rundll32.exe shell32.dll,OpenAs_RunDLL ");
strcat(buf,"c:\\winzip.gol");
WinExec(buf,SW_SHOWDEFAULT);
Hope so do the...
hi,DGRFL:
Try doing below:
Open a console window, change to a directory not within
the Cdrom's ,type eject.
If that not help,then type eject -n to see
the ejectable media device lists to find cdrom device name.
then try again like eject -n cdrom0 etc..
Good luck...
hi you:
Do below may solve your problem:
In Visual C++ ,open your project then Select Menu:
Project->Setting
In the opened Dialog chooce the "C/C++" Tab Page,
In the Category ComboBox Chooce "Precompiled Headers",
here you can chooce "not using...
hi,you should avoid the wrong deletion of original object
when override the '=' operator.
Dude &operator=(const Dude & dude)
{
if(this == &dude)
{
printf("avoid the same object\n");
return *this;
}
delete []p; p = new...
HI!
To do so,you can:
In resources editor ,please set the resource names
of the HTML type resources you have added to their real
file names exactly. Because the file names include the
dot -> "." ,so you should delimited the names by double
quotes.
You can do so directly by...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.