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.
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...
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...
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...
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...
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...
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...
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
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...
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)...
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...
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...
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...
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...
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...
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...
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.