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. acrion

    ReDim String count from .txt file

    To keep the values already in a dynamic array, use: ReDim Preserve strAC(5) As String Otherwise it will be reset each time... usually.
  2. acrion

    Mulitple Dialog Boxes ??

    Try using Shell("ebrun filename.ebm", 1) to run another dialog in another thread. Should work, just communicate with Global variables.
  3. acrion

    How to prevent a error message?

    Try declaring your variables as Long instead of integer. rc& instead of rc% From the help file under "Data Types": Integer from -32,768 to 32,767 Long from -2,147,483,648 to 2,147,483,647
  4. acrion

    Extra Dialog which does not require user response

    Let me know if this helps... Add at the beginning of the macro '$Include "progress.ebh" Call this once you start the procedure Progress = 0 Shell("ebrun progress_dlg.ebm", 1) While Progress = Completed / Total * 100 DoEvents ' do what ever Wend ' Finished...
  5. acrion

    Static Variable in Extra Macro

    It will be reset to nothing when every instance of EXTRA! Personal Client is closed. Global LastAccountUsed As String Sub Main() Dim Account As String Account = InputBox("Please enter account below:", , LastAccountUsed) If Account = "" Then ' Assume cancelled or...
  6. acrion

    Data in Macro or in a Header File

    I would like to futher note that a .EBM file has header information the EBEDIT hides (see it by openning in notepad). It is the name, description, icon and such. If you try to "Save As" an .EBM file as a .EBH file, you will get errors when you try to include it. It will complain...
  7. acrion

    diff b/w WaitHostQuiet vs OIA.XStatus

    I've wondered the same thing and tested XStatus heavily. It is far more efficient than WaitHostQuiet and any other Wait function. I'm stuck with 6.4 and I've noticed that a running macro always uses 100% of the processor. Adding DoEvents reduces this to zero, it also noticably speeds up the...

Part and Inventory Search

Back
Top