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 Mike Lewis 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. JesseGrune

    C# as a .EXE file to automate Client Access?

    Hello, Has anyone ever created a C# program, converted it to a .EXE file and ran it in a Personal Communications VBScript .MAC file with the autSystem.Shell method? I am considering doing that to hide the code of my macros so that co-workers cannot learn from, modify, or edit my programs...
  2. JesseGrune

    compiler error

    Never mind. I found out that, due to some security feature, scripts that import data from an external source are scanned before being compiled to stop them from running. As a result, I cannot import data from Excel until my security clearance is raised. I did not know security systems became...
  3. JesseGrune

    compiler error

    Hello, Have any of you had an unusual error in which hundreds of lines of similar code are fine and then one line generates an error that an end statement is needed? I checked all my code and every loop had both a start and a stop. I was trying to replace people by having an automation pull...
  4. JesseGrune

    How to start script over?

    Hello, You will need a value to enter in the input box that will kill the loop. For example: Dim filename,errorhandler filename = InputBox ("What do you want to search?") Do If filename <> "" Then filefunction(filename) Else errorhandler = Msgbox("Do you want to quit?",36) If...
  5. JesseGrune

    Automate Data Input Into IBM Emulator (AS/400)

    J, autECLMacro is to use Macro commands. Copy and paste functionality does not need Macro commands to perform the job. Instead of marking an area and then copying it, use: autECLSession.autECLPS.GetText(row,column, length) Instead of using sendkeys from a COM object, use SendKeys from...

Part and Inventory Search

Back
Top