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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: gzJungle
  • Order by date
  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...
  16. gzJungle

    Linking Error 2001...Newbie Question

    hi! Maybe you create this project as a &quot;console&quot; type. You should implement a entry function name: &quot;main()&quot; . Hope that help you. gzjungle
  17. gzJungle

    Whats stopping my AT command from running?

    hi, Sorry,the error log of scheduler is of kind &quot;system&quot; not &quot;application&quot; 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...
  18. gzJungle

    Whats stopping my AT command from running?

    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 &amp; your client files hadn't been backuped...
  19. gzJungle

    What are these programs?

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

    Question regarding use of ShellExecute

    hi,sdc: I understand what you want to do. I implemented it using &quot;CreateProcess&quot;. Hope it may help you. HANDLE hReadFile; STARTUPINFO si; hReadFile=CreateFile(&quot;c:\\input.txt&quot;, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING...

Part and Inventory Search

Back
Top