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 Chriss 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: *

  1. CustomerResearch

    How to put odd or reserved characters into a script

    I'm trying to put together a script that needs to transmit some reserved symbols. Specifically "" and ~ Whenever I try to put these directly into the script, I get a reserved word error. IE transmit "~something" and (for whatever reason) I need to be able to transmit "" transmit """"...
  2. CustomerResearch

    How do I make a script that runs sub-scripts (Parent / Child scripting)?

    To make a script that runs a series of sub-scripts (or children scripts) in order just follow this format: ------------------------------------ ;Parent Script proc main execute "script1.wax" ;Runs script1 execute "script2.wax" ;Runs script2 endproc ------------------------------------
  3. CustomerResearch

    A Problem with Dates (months)

    No, the date isn't user entered (though come to think of it if worse comes to worse I could set up a script that prompted to get that info). The report is run bi-montly One date needs to go back five months (This will be either the 1st or the 15th, depending on the time the report is run)...
  4. CustomerResearch

    A Problem with Dates (months)

    Hello. I need to make a script that will pull records from an external source at half month intervals with the 15th of each month being the mid month draw line. For instance: 1st-15th Jan 16th-31st Jan 1st - 15th Feb 15th - 28th Feb etc. This is a new variation on something we sort of...
  5. CustomerResearch

    Questions about Parent scripts

    I used the above example without the error reporting and it works! My scripts are running MUCH more smoothly now. Thanks a lot, MrNoisy and Knob! ------------------------------- Brian, Customer Research Inc http://www.customerresearch.com
  6. CustomerResearch

    Questions about Parent scripts

    Not quite... you see we're trying to set up these scipts to download information from numerous clients. Right now this is done MOSTLY manually and is very time consuming. I have made aspect scripts that are able to go into two types of systems (R&R and ADP) and automate what was previously...
  7. CustomerResearch

    Questions about Parent scripts

    Would doing something like this work? <child script> dial DATA &quot;MY Jeep&quot; ;This changes for every Dealer if failure goto end endif while $dialing endwhile <all the dialing stuff> end: endproc ------------------------------- Brian, Customer Research Inc...
  8. CustomerResearch

    Questions about Parent scripts

    Hello I'm using ProCom and Aspect scripts to log into remote computers and download information. For the most part the scripts that I've made work fine on their own but we want to set up a parent script to run the various children scripts. I set up an &quot;all scripts&quot; script that...

Part and Inventory Search

Back
Top