Code: Select all
Dialog>MyDialog
Caption=DirectioryBomb
Width=445
Height=279
top=CENTER
left=CENTER
Button=run macro,184,198,98,20,3
Button=exit macro,184,146,97,20,2
Checkbox=msCheckbox1,boom,24,56,97,False
Checkbox=msCheckbox2,bam,24,80,97,False
EndDialog>MyDialog
Label>MainLoop
Show>MyDialog,result
if>result=2,End
if>result=3
if>boom.mscheckbox1=true,createboom
if>bam.mscheckbox2=true,createbam
endif
Goto>MainLoop
Label>End
SRT>createboom
CreateDir>BOOM
END>createboom
SRT>createbam
CreateDir>BAM
END>createbam
This is a test to see if I could do a simple textbox menu well.. Kinda but if I try and tell it to create the directiory, nothing happens and debugging says it is fine...
Could someone please point out the error I have so obviously made, please. Thank you - jj45410