home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 18 REXX
/
18-REXX.zip
/
vxdemo.zip
/
SYSTEM.$$$
/
POST.VRM
< prev
next >
Wrap
Text File
|
1993-09-01
|
6KB
|
293 lines
/* Custom mainline for macro */
call RXFuncAdd "VRLoadFuncs", "VROBJ", "VRLoadFuncs"
call VRLoadFuncs
_VREVersion = SubWord( VRVersion( "VRObj" ), 1, 1 )
if( _VREVersion < 1.01 )then do
call VRMessage "", "This program requires VX-REXX version 1.01 to run", "Error!"
_VREReturnValue = 32000
signal _VRELeaveMain
end
signal on SYNTAX name _VRESyntax
signal _VREMain
_VRESyntax:
parse source . . _VRESourceSpec
call VRMessage "", "Syntax error in" _VRESourceSpec "line" SIGL, "Error!"
_VREReturnValue = 32000
signal _VRELeaveMain
_VREMain:
/*:VRX Main
*/
/* Main
*/
Main:
/* Process the arguments.
Get the parent window.
*/
parse source . calledAs .
parent = ""
argCount = arg()
argOff = 0
if( calledAs \= "COMMAND" )then do
if argCount >= 1 then do
parent = arg(1)
argCount = argCount - 1
argOff = 1
end
end
InitArgs.0 = argCount
if( argCount > 0 )then do i = 1 to argCount
InitArgs.i = arg( i + argOff )
end
drop calledAs argCount argOff
/* Load the windows
*/
call VRInit
parse source . . spec
_VREPrimaryWindowPath = ,
VRParseFileName( spec, "dpn" ) || ".VRW"
_VREPrimaryWindow = ,
VRLoad( parent, _VREPrimaryWindowPath )
drop parent spec
if( _VREPrimaryWindow == "" )then do
call VRMessage "", "Cannot load window:" VRError(), ,
"Error!"
_VREReturnValue = 32000
signal _VRELeaveMain
end
/* Process events
*/
call Init
signal on halt
do while( \ VRGet( _VREPrimaryWindow, "Shutdown" ) )
_VREEvent = VREvent()
interpret _VREEvent
end
_VREHalt:
_VREReturnValue = Fini()
call VRDestroy _VREPrimaryWindow
_VRELeaveMain:
call VRFini
exit _VREReturnValue
VRLoadSecondary: procedure
name = arg( 1 )
window = VRLoad( VRWindow(), VRWindowPath(), name )
call VRMethod window, "CenterWindow"
call VRSet window, "Visible", 1
call VRMethod window, "Activate"
return window
/*:VRX Add_PB_Click
*/
Add_PB_Click:
info = VRGet( "Info", "Value" )
value = VRGet( "Value", "Value" )
if value \= "" & info \= "" then do
call VRSet "Add_PB", "Enabled", 0
call VRSet "Info", "Value", ""
call VRSet "Value", "Value", ""
iquoted = VRGet( "Quotes1", "Set" )
vquoted = VRGet( "Quotes2", "Set" )
if iquoted then info = '"' || info || '"'
if vquoted then value = '"' || value || '"'
string = info || ', ' || value
call VRMethod "LB_1", "AddString", string
end
else do
call VRSet "Add_PB", "Enabled", 0
end
return
/*:VRX Comments
*/
Comments:
/*
Post: Generate a prototype for the Post method
Usage: call Post <Parent>, <Object>
Where: Parent is the parent window for the dialog
Object is the name or id of object posting the event string.
*/
return
/*:VRX Error
*/
Error: procedure
field = arg( 1 )
error = arg( 2 )
call VRMessage VRWindow(), error, "Error"
call VRMethod field, "SetFocus"
return
/*:VRX Fini
*/
Fini:
window = VRWindow()
call VRSet window, "Visible", 0
drop window
return Prototype
/*:VRX Halt
*/
Halt:
signal _VREHalt
return
/*:VRX Info_Change
*/
Info_Change:
info = VRGet( "Info", "Value" )
value = VRGet( "Value", "Value" )
if value \= "" & info \= "" then do
call VRSet "Add_PB", "Enabled", 1
end
else do
call VRSet "Add_PB", "Enabled", 0
end
return
/*:VRX Init
*/
Init:
Prototype = ""
/* Assume 1 argument: object.
*/
TargetObject = InitArgs.1
name = TargetObject
window = VRWindow()
call VRMethod window, "CenterWindow"
call VRSet window, "Visible", 1
call VRMethod window, "Activate"
drop window
return
/*:VRX LB_1_Click
*/
LB_1_Click:
selected = VRGet( "LB_1", "SelectedString" )
if selected \= "" then do
call VRSet "Remove_PB", "Enabled", 1
end
else do
call VRSet "Remove_PB", "Enabled", 0
end
return
/*:VRX PB_1_Click
*/
PB_1_Click:
object = "Application"
threadid = VRGet( 'ThreadID', 'Value' )
if threadid = '' then do
call Error 'Thread ID', 'You must specify a thread ID.'
return
end
event = VRGet( 'Event', 'Value' )
if event = '' then do
call Error 'Event', 'You must specify an event string.'
return
end
if VRGet( "Quotes", "Set" ) then do
event = '"' || event || '"'
end
pairs = ""
numpairs = VRGet( "LB_1", "Count" )
if numpairs > 0 then do
do i = 1 to numpairs
selected = VRMethod( "LB_1", "GetString", i )
pairs = pairs || ', ' || selected
end
end
Prototype = 'ok = VRMethod( "' || object ||,
'", "Post"' ||,
', ' || threadid ||,
', ' || event ||,
pairs ||,
' )'
call Quit
return
/*:VRX PB_2_Click
*/
PB_2_Click:
rc = ""
call Quit
return
/*:VRX PB_3_Click
*/
PB_3_Click:
"view a2z.inf Post method"
return
/*:VRX Quit
*/
Quit:
window = VRWindow()
call VRSet window, "Shutdown", 1
drop window
return
/*:VRX Remove_PB_Click
*/
Remove_PB_Click:
selected = VRGet( "LB_1", "Selected" )
call VRMethod "LB_1", "Delete", selected
selected = VRGet( "LB_1", "SelectedString" )
if selected \= "" then do
call VRSet "Remove_PB", "Enabled", 1
end
else do
call VRSet "Remove_PB", "Enabled", 0
end
return
/*:VRX Value_Change
*/
Value_Change:
info = VRGet( "Info", "Value" )
value = VRGet( "Value", "Value" )
if value \= "" & info \= "" then do
call VRSet "Add_PB", "Enabled", 1
end
else do
call VRSet "Add_PB", "Enabled", 0
end
return
/*:VRX Window1_Close
*/
Window1_Close:
rc = ""
call Quit
return