MyFlight
Technical User
- Feb 4, 2002
- 193
Help, I am writing a script that uses a Dialog box with Multiple selections. I have Grouped all of my buttons, but now I need to get started. First at least one selection must be made for each Group.
The First Group "Data FOLDER Group Name" I want to reference the Sub Folders In the current Connection Directory.
The Second Group "Password" Will decide if the password Generated for each site is Random or Listed. If Listeed is Selected then the Edit box below in Not Greyed out and text can be entered.
The Third Group "Logon Select" This allows the script to select which password will be changed (i.e., if Sysadmin is selected a Script called Sysadmin runs) Note this will reference the number from teh Fourth Group.
The Fourth Group "Password Length" This will decide how long the password should be 6,8, or 10 digits (script is already written PswdLength.wax).
dialogbox 0 218 121 238 199 2 " PhoneMail Password Changer Ver 5.4"
groupbox 3 13 2 214 36 "Data Group Name"
flistbox 4 23 17 182 13 "items.lst" SINGLE SelectVar1
; FNameVar1 = ProComm Directory Name
; SelectVar1 = Folder selected in Directory
; flistbox 4 22 17 182 13 FNameVar1 SINGLE SelectVar1
groupbox 5 14 52 102 71 "Password"
radiogroup 16 iVar1
radiobutton 6 27 68 74 11 " Random"
radiobutton 7 27 86 70 11 " Listed"
endgroup
editbox 8 27 104 80 12 eVar1
groupbox 9 121 52 106 70 "Login Select"
checkbox 10 126 69 86 11 "Sysadmin" IntVar3
checkbox 11 126 87 98 11 " TECH (Set to DEFAULT)" IntVar4
checkbox 12 126 104 88 11 " TECH 2nd Lvl" IntVar5
pushbutton 13 26 174 53 14 "Run"
pushbutton 14 94 174 53 14 "View Last"
pushbutton 15 162 174 53 14 "&Exit"
groupbox 17 12 132 214 29 "Password Length"
checkbox 18 30 146 57 9 " 6-Digits" IntVar6
checkbox 19 99 146 44 11 " 8-Digits" IntVar8
checkbox 20 162 144 46 13 " 10-Digits" IntVar10
enddialog
any assistance will be appreciated.
Here are my Questions.
The First Group "Data FOLDER Group Name" I want to reference the Sub Folders In the current Connection Directory.
The Second Group "Password" Will decide if the password Generated for each site is Random or Listed. If Listeed is Selected then the Edit box below in Not Greyed out and text can be entered.
The Third Group "Logon Select" This allows the script to select which password will be changed (i.e., if Sysadmin is selected a Script called Sysadmin runs) Note this will reference the number from teh Fourth Group.
The Fourth Group "Password Length" This will decide how long the password should be 6,8, or 10 digits (script is already written PswdLength.wax).
dialogbox 0 218 121 238 199 2 " PhoneMail Password Changer Ver 5.4"
groupbox 3 13 2 214 36 "Data Group Name"
flistbox 4 23 17 182 13 "items.lst" SINGLE SelectVar1
; FNameVar1 = ProComm Directory Name
; SelectVar1 = Folder selected in Directory
; flistbox 4 22 17 182 13 FNameVar1 SINGLE SelectVar1
groupbox 5 14 52 102 71 "Password"
radiogroup 16 iVar1
radiobutton 6 27 68 74 11 " Random"
radiobutton 7 27 86 70 11 " Listed"
endgroup
editbox 8 27 104 80 12 eVar1
groupbox 9 121 52 106 70 "Login Select"
checkbox 10 126 69 86 11 "Sysadmin" IntVar3
checkbox 11 126 87 98 11 " TECH (Set to DEFAULT)" IntVar4
checkbox 12 126 104 88 11 " TECH 2nd Lvl" IntVar5
pushbutton 13 26 174 53 14 "Run"
pushbutton 14 94 174 53 14 "View Last"
pushbutton 15 162 174 53 14 "&Exit"
groupbox 17 12 132 214 29 "Password Length"
checkbox 18 30 146 57 9 " 6-Digits" IntVar6
checkbox 19 99 146 44 11 " 8-Digits" IntVar8
checkbox 20 162 144 46 13 " 10-Digits" IntVar10
enddialog
any assistance will be appreciated.
Here are my Questions.