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!

Search results for query: *

  • Users: det07
  • Order by date
  1. det07

    Video IP References -

    Are there any good books to check out or web sites to go to for Video Teleconferencing with VoIP ?
  2. det07

    Video VoIP Reference Information Sources?

    I am looking into providing Video calling capability from the desktop, implemented on or with a VoIP system. Does anyone know any good reference books on the subject? Are there any good websites on this subject you'd reccomend? I am interested in exploring both Open Source and Commercial options.
  3. det07

    LINEFEEDS

    I think you can try this: IF PUSHBUTTON 2 CLICKED THEN CALL THE FOLLOWING DIALOB BOX: ;******** CODE FOR THE LOOKUP DIALOG BOX ********** proc main string TextStr = "" ; set the string to empty integer status dialogbox 0 8 22 158 65 3 "Look Up Cash Customer" text 1 13 2...
  4. det07

    LINEFEEDS

    You could initialize the string variable(s) for the editboxes to an empty string just before opening the dialog box and use the DEFAULT option for them. I think that should eliminate any eroneous characters. (not sure why they're there but that should fix it anyway. Otherwise I think you'd...
  5. det07

    Windows Screen Resolution User Setting

    Is there a way for the screen resolution setting to be setup so that a change made by one user does not change the setting for all other users of the same computer. ie. User #1 likes to set: (Desktop) Properties - Settings - Screen Area - 1280 X 1024 User #2 sets: Screen...
  6. det07

    Dialup and Telnet

    Hank, If after logging into the Unix Server you're at a shell prompt the shell command 'telnet' should work to telnet from the server to anywhere in its network. % telnet 192.168.10.10 Or something similar where the '%' is the prompt. The actual prompt will depend on which variation of...
  7. det07

    TEST FOR NULL STRING

    I believe the format of the format text is the same as the format used in creating a custom number format in Excel. (Format - Cell - Number - Custom) Try searching Excel Help for "create custom number format" then try the link for "number" at the bottom. This will provide detailed information...
  8. det07

    Closed usermsg box after 10 sec

    There is a problem with using statmsg when dealing with multiple users. Many turn the statusline off. Also statusline messages do not get attention that a pop-up gets. Another option might be to create a userwindow display your message then delete it later. Basically roll your own usermsg...
  9. det07

    Transmit not working ??

    Have you tried manually connecting then running the script: proc main transmit "1^M" endproc As a test separating the two functions from each other. Hope the thought helps, DT
  10. det07

    Telnet / Waitfor

    If you're worried about the waitfor firing off before the prompt is displayed after the entire screen is displayed you can follow the found target waitfor with a waitfor 'prompt' where prompt is the prompt character (or string) at the bottom of the screen. Or just use a waitquiet after the...
  11. det07

    Scripts that ask and then get info based on answers

    Sounds to me like you should use an if statement possibly something like this: integer YESS = 0 integer DID string sDID = "N" ... sdlginput "DID Present Input" "Input Y if DID present: " sDID DEFAULT strlwr sDID strcmp sDID "y" DID if (DID == YESS)...
  12. det07

    Dial a number after phone connects

    If the distant station answers consistently within a second or so you could set your dial string to the number followed by a number of pauses to equal that length of time (I think they are 1.5 seconds each) and follow those by the 999. Of course this would be going in blind and depending on how...
  13. det07

    Array length

    One more thought. If you are just saying there is a number you have setup your script to accommodate a number of array elements say 20. Instead of hard coding the array size throughout, try: integer arrayLimit = 20 proc main integer myArray[arrayLimit] string...
  14. det07

    Array length

    As I understand it Aspect does not allow for truely dynamic arrays. So you really just have to: 1. Dimension your array plenty large when you first define it. * Note that if you like to keep your variables locals like Computer Sci types push you'll run into a problem of limited memory...
  15. det07

    Remote Terminal Paths

    If the window you refer to as your window is a procomm session running an aspect script and the new window is a procomm window also running a script and they are on the same machine or both have access to a shared directory one option would be: Setup a INI formatted text file Use...
  16. det07

    Opening and Closing Capture Files

    If all you are doing is looking for a different way to open & close capture files via your script aspect has the command "capture ON" and "capture OFF". I guess you are already using the AUTOSTART keyword version of the "set capture" command. "set...
  17. det07

    Sorting

    I am not entirely sure but I don't think there would be any problem in treating these numbers as floats which should give a full 14 digits of (decimal) range. [note: as per aspect help it gives 15 decimal places but is limited to some value, so to ensure all digits can be all values, subtract...
  18. det07

    Status line messages with VT100 in Procomm

    As a side note: it is possible to install Procomm 4.7 (4-5 years old by Datastorm Techologies subsidiary of Quarterdeck Corp) on Windows 2000. I do not know about XP. At my work the Procomm is setup for installation from a network server. Our IT is even unaware that Procomm 4.7 is unsupported...
  19. det07

    Wait for output of previous command to stop before transmiting

    Another way around this requires you know something about the response of the command you are waiting on the output to complete. Look for some unique string near the end of the output (spaces before or after characters can make it unique from other occurrences). Use the string near the end of...
  20. det07

    Spawning Telnet Sessions From A Script

    One way to do what you are trying to do is use the aspect run command to start new instances of procomm for each machine you want to get into. for machine = 1 upto 8 ... run pw5 Your_Telnet.dir connect telnet telnet_dir_entry getin_machine_script.wax pause 8 ... endfor That is the...

Part and Inventory Search

Back
Top