Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by gzJungle

  1. gzJungle

    A way to copy a file from my www-server to CPU…

    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...
  2. gzJungle

    Win2000 Path Variable

    Please try : set Path=%Path%;NEW_PATH
  3. gzJungle

    Problem in starting an external program with input file

    Add below line before "CreateProcess" please: si.dwFlags = STARTF_USESTDHANDLES | TARTF_USESHOWWINDOW;
  4. gzJungle

    Customised logon message

    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...
  5. gzJungle

    ShellExecute, open with dialog, and win2k

    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...
  6. gzJungle

    ShellExecute, open with dialog, and win2k

    hi, please try <b> WinExec(&quot;rundll32.exe shell32.dll,OpenAs_RunDLL filepath_filename&quot;,SW_SHOWDEFAULT); </b> good luck!
  7. gzJungle

    Logon script

    Why not use Copy /y SourceFile DestinationFile?
  8. gzJungle

    How to link external disk

    http://www.sunworld.com/swol-10-1995/swol-10-openboot.html
  9. gzJungle

    Problems unmounting CD

    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...
  10. gzJungle

    Help me please !!!

    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 &quot;C/C++&quot; Tab Page, In the Category ComboBox Chooce &quot;Precompiled Headers&quot;, here you can chooce &quot;not using...
  11. gzJungle

    How do i get rid of the debugger

    run regedit, found the below key branch: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug, empty the Debugger item
  12. gzJungle

    Reading Files

    Why not try like this: strncmp(waveBuffr,&quot;RIFF&quot;,4); ?
  13. gzJungle

    Problem with implementing a program!!

    hi,you should avoid the wrong deletion of original object when override the '=' operator. Dude &amp;operator=(const Dude &amp; dude) { if(this == &amp;dude) { printf(&quot;avoid the same object\n&quot;); return *this; } delete []p; p = new...
  14. gzJungle

    How do you create a new folder in C++?

    BOOL CreateDirectory( LPCTSTR lpPathName,// pointer to directory path LPSECURITY_ATTRIBUTES lpSecurityAttributes // pointer to security descriptor );
  15. gzJungle

    dll files

    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 -> &quot;.&quot; ,so you should delimited the names by double quotes. You can do so directly by...

Part and Inventory Search

Back
Top