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 Chris Miller 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: hujirong
  • Order by date
  1. hujirong

    What are most popular Perl forums?

    Sorry to ask such a question here. I know Tek-Tips has some very good forums. Is there any other good perl forums? Thanks Jirong
  2. hujirong

    Why dir path is hard coded in the generated dll?

    Please look into attached image, and you'll know immediately. The path in green is where the build picks up the source code. We don't want this information embeded inside the dll. It's a release version, somehow got debug information inside? How can we get rid of it? Below is the code we run...
  3. hujirong

    Why dir path is hard coded in the generated dll?

    Hi I am a build engineer of some VB6 and MSVS VB applications. I notice the directory path (the location of source code, e.g. c:\build_views\v70r3\ ....) information is stored in the generated dll, exe. This gives us a lot trouble, because I can't use another path to build the dlls, otherwise...
  4. hujirong

    $ver = $1 if ( m/^[->]>\s+(.*)$/);

    Can anyone explain to me in details how the above work? The objective I guess is to get the lines start with >> from the following output. Thanks Jirong ------------------- output ----- Comparing the following: V70R2_TxNR_081219_030506_B159_GP1_429.741@\hppc_pvob...
  5. hujirong

    Can't run any VBScript on the server

    Hi I can't run any VBScript on the server. When I run it from command line, it gets displayed in Wordpad. In addition, when I got an error "Invalid procedure call or argument" when I do a Set MyShell = CreateObject("WScript.Shell"). The wield thing is a subsequent call to MyShell.Run...
  6. hujirong

    How to send a http request from VBScript?

    Thanks a lot, tsuji. I will test it out this weekend. Can we use WinInet library to send the HTTP request in VBScript? Jirong
  7. hujirong

    How to send a http request from VBScript?

    Hi I need to invoke a remote web service from my VBScript. Can anyone give me a sample code to make a HTTP call within VBScript? Thanks a lot. Jirong
  8. hujirong

    How to pass multiple parameters?

    New question: now if I want to pass in one of parameter a variable, what's the format? I tried the following but got a "parameter" as the value, not "headline". Jirong Dim parameter parameter = "headline" Log (parameter) scmd="C:\Temp\get_parameters.bat -a ""USD_WS"" -ref parameter -sf...
  9. hujirong

    How to pass multiple parameters?

    It works perfect. Thank you guys very much. Jirong
  10. hujirong

    How to pass multiple parameters?

    Hi I need to call a remote batch file from VBScript. I try to use this: Set MyShell = CreateObject("WScript.Shell") MyShell.Run(???) The program I need to call is Program.bat -a "USD_WS" -ref "42" -sf "xxx" -sfns "yyyy" -u "id" -desc "description zzz" How should I write this line? I don't...
  11. hujirong

    How to strip off the last word in this string?

    Then how to transfer from C:\ClearCase\ss_view\Prod\jihu_WebLinks_Mainline\Playground_apps_sub\WebLinks_docs to C:\\ClearCase\\ss_view\\Prod\\jihu_WebLinks_Mainline\\Playground_apps_sub\\WebLinks_docs Really not a programmer, thanks a lot. Jirong
  12. hujirong

    How to strip off the last word in this string?

    Hi All Not a Perl programmer but have to write something. How to take out the last word "WebLinks_docs" from the following string? Thanks a lot. Jirong C:\ClearCase\ss_view\Prod\jihu_WebLinks_Mainline\Playground_apps_sub\WebLinks_docs
  13. hujirong

    How to run Windows command in perl script?

    e.g. I want to run dir > temp inside a perl script. Thanks.

Part and Inventory Search

Back
Top