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...
hi!
Maybe you create this project as a "console" type.
You should implement a entry function name: "main()" .
Hope that help you.
gzjungle
hi,
Sorry,the error log of scheduler is of kind "system" not "application" as I last posted.
If there is no error logof scheduler
(that seems really quite strange), maybe your
schedule service hasn't been started? (maybe ridiculous, :-) )
Moreover ,the AT command...
hi,syndicate47 :
How often did you set your batch files in AT command to run?
I think that:
[1]The time that your At command would execute hasn't
reach yet;
[2]Maybe your AT command's format is wrong so its
execution cause an error & your client files hadn't
been backuped...
Loadwc.exe :
also known as Load WebCheck, is responsible for customizing some of the settings in Internet Explorer. Loadwc.exe is responsible for adding, removing, and updating subscriptions.
The Loadwc.exe file is located in the Windows\System folder, is installed from the Ie4_4.cab...
hi,sdc:
I understand what you want to do.
I implemented it using "CreateProcess".
Hope it may help you.
HANDLE hReadFile;
STARTUPINFO si;
hReadFile=CreateFile("c:\\input.txt",
GENERIC_READ,
FILE_SHARE_READ,
NULL,
OPEN_EXISTING...
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.