-
Topic
-
I have used the applet examples to create a list box of different conference rooms. Once the room is chosen, I would like the code to launch that would run an applet.
Here is the code that comes after the list of radio buttons:
if Dlg.Execute = Btn1 then
if Radio1.Checked then
ActivityRoom
end if
if Radio2.Checked then
ArtStudio
end if
end if“ActivityRoom” is a function with the following code:
Function ActivityRoom(Client, GWEvent)
Dim iFilePath
Call GroupWise.ViewOpenFile(“d:groupwisevdesignResActivityTesting”, “”, “”)
ActivityRoomTest.showmodal
Call groupwise.focusset(fcsMessage, “”)
GroupWise.EditPasteEnd Function
This bit of code works fine without the list box.
Is there any way to make this work?
Any help is appreciated. Thanks!
- You must be logged in to reply to this topic.