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!

Recent content by comtechau

  1. comtechau

    Running WZZIP from ProComm

    I was a tad off the mark previously... To zip files of the format 1234567_*.txt there is a MISSING UNDERSCORE character. In my previous post I thought the asterisk was being used as a portion of a filename rather than a wildcard. try changing the line -> string aSuf = "*.txt" -> string...
  2. comtechau

    Running WZZIP from ProComm

    Hi, For an Acct # of 12345 the script compiles the startQuote string as..."C:\Temp Data Files\Raw Data\WZZIP 12345.zip c:\Temp Data Files\Raw Data\12345*.txt" The asterisk looks like the problem. I'd modify the following line string aSuf = "*.txt" To string aSuf = ".txt" hope that...
  3. comtechau

    How can I use procomm to autorun a script everyday?

    Hi B, Re:- "a script example about how to open a session download information, close the fole and save it changing the name everyday in order to don't overlap the information?" This script example opens a TELNET session to an entry called "Central TTY 7", logs in to the PABX, sets the...
  4. comtechau

    Basics

    The documentation you might need is available from within Procomm. (well on my install of ver4.8 it is) Open PROCOMM....point to HELP > Script Reference open it. Then on the Contents TAB > Aspect Command Reference. I have been reading this for years and still havent got the gist of it all...
  5. comtechau

    script help please

    before turning capture you can set the filename and path using.... proc main set capture path "C:\capture" set capture file "MyCaptureFile.txt" capture on http://commtechau.bravehost.com
  6. comtechau

    How can I open Procom from Excel?

    A Hyperlink perhaps ? In the EXCEL spreadsheet -> Insert Hyperlink Text to Display = UPDATE Link to: Existing File or Webpage Look In: Navigate to the location of your script file Select "OK" Then when anyone clicks "UPDATE" in excel, your script runs. http://commtechau.bravehost.com
  7. comtechau

    Select vlaue in a string after a waitfor

    TERMGETS is useful for extracting specific info from the screen. Also, WHENTARGET might be better to use than WAITFOR integer cursrow = 0 integer curscol = 0 string TmpStrAA string TmpStrBB while 1 waitfor "RLS NO RESPONSE" ;define/store XX as a variable ;the following line may be needed...
  8. comtechau

    XVR problems with Procomm

    I wrote a Procomm script to automate EDD,XBK & XVR.... So I can wander away from the PC while it does it. http://commtechau.bravehost.com/page01.html#Opt11_BUP Give that a whirl; If you still get the same problem, it won't be your Procomm settings. http://commtechau.bravehost.com
  9. comtechau

    Replace first 16 characters of a line with new characters

    I know there will be simpler ways... but (A) I couldn't work out how to back up the file pointer and (B) this works, so I didn't bother. This sample below will Filter through "C:\Program Files\Symantec\Procomm Plus\Capture\tempfile.txt" It searches for "0123456789ABCDEF" as the 1st 16 chars of...
  10. comtechau

    Print Disabled TN's

    As previous posts indicated.. To list disabled units per loop in LD 32, -> LDIS <loop> <shelf> If you want to get a list of all those Loops.... LD 97, REQ: PRT TYPE: SUPL http://commtechau.bravehost.com
  11. comtechau

    Logi at a certain time - Script

    RE: "How do I get this script to wait for a certain time and then log itself in..." You could set up a SCHEDULED TASK from 'Control Panel' to run the script file at the desired date/time. http://commtechau.bravehost.com
  12. comtechau

    Cutting A Gold Bar

    Doh.. Didn't read the entire post! Nifty answer Bob! http://commtechau.bravehost.com
  13. comtechau

    Cutting A Gold Bar

    I know I am not allowed 3 cuts but... 1st cut |=|=|=|=|X|=|=|=| giving you |=|=|=|=| |=|=|=| Then stack the block of 3 on TOP of the block of 4 2nd cut |=|=|X|=|=| through 2 layers giving you |=|=| |=|=| |=|=| |=| Then stack the 3 blocks of 2 on TOP of each other 3rd cut |=|X|=| through 3...
  14. comtechau

    Swap DN/TN script needed please

    That cut'n'paste didn't go so well.. Here it is again... ;################################################################ ;# TN_SWAP Procomm Script # ;# Author: Chris Jackson. # ;# Disclaimer: The script is provided without any warranty # ;# as to...
  15. comtechau

    Swap DN/TN script needed please

    It is not a GUI Script, but here is a Procomm Script I wrote to swap the programming between two TN's. I created two TNs to mess with. 4 0 8 4 (DN-1204), 4 0 8 5 (DN-1205). The script works in the following manner. ASK USER for 1st TN CHECK 1st TN for INVALID CHARACTERS ASK USER for 2nd...

Part and Inventory Search

Back
Top