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 IamaSherpa 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. bonk33r

    Dialogbox and variables

    When I try and run the following script, I get the error "Error C155 Line 4: Invalid integer constant". proc main integer iTemp = 50 ; Define and display the dialog box. dialogbox 0 0 0 100 iTemp 11 "Dialog Box" enddialog pause 5 ; Show off the dialog box...
  2. bonk33r

    RGET and Array problem

    Well since this script has the possibility to go to over 120 offices that have the same OS and version of Procomm, I found a work around. proc main string sMES[4],sTemp integer Loops transmit "MES^M" Loops = 0 while (Loops++) < 3 while nullstr sTemp rget sTemp...
  3. bonk33r

    RGET and Array problem

    We have XP Pro on all our systems.
  4. bonk33r

    RGET and Array problem

    4.7
  5. bonk33r

    RGET and Array problem

    Ok, I leaned the script down to this: proc main string sMES[10] rget sMES[1] endproc I've tried running it on my desktop and laptop. On both I get the "001 Value out of range" error. When I run this script: proc main string sMES rget sMES endproc It runs with no errors. I've been...
  6. bonk33r

    RGET and Array problem

    Knob, Thanks for the quick reply! Just for grins and giggles I changed string sMES[3] to string sMES[10] and still received the same error. Thanks, Bonk
  7. bonk33r

    RGET and Array problem

    When I run the following script I get the error "001 Value out of range" after 30 seconds. If I take out the array and make sMES a normal variable it works fine. Any ideas? Thanks, Bonk proc main string sMES[3] integer Loops transmit "MES^M" Loops = 0 while (Loops++) < 3 while...

Part and Inventory Search

Back
Top