Hi Storm,
Simple example of using tabs to switch between property pages:
set window title "Test"
`ADD YOUR CODE IN BELOW
setup gui "Test","XXXX"
create gadget tabs 1
resize gadget 1,640,480
add tab 1,"Tab One"
add tab 1,"Tab Two"
add tab 1,"Tab Three"
create with parent 1
create gadget panel 2,1
create gadget panel 3,1
create gadget panel 4,1
for i=2 to 4
set gadget i,5,20,630,455
if i > 2 then hide gadget i
next i
`Add gadgets for first tab
create with parent 2
create gadget listbox 5
set gadget 5,20,20,600,400
set dir "C:\"
perform checklist for files
for i=1 to checklist quantity()
add item 5,checklist string$(i)
next i
`Add gadgets for second tab
create with parent 3
create gadget button 6,"Button One"
create gadget button 7,"Button Two"
position gadget 6,50,50
position gadget 7,50,80
`Add gadgets for third tab
create with parent 4
create gadget radiobutton 8,"Option 1"
create gadget radiobutton 9,"Option 2"
create gadget radiobutton 10,"Option 3"
position gadget 8,50,50
position gadget 9,50,80
position gadget 10,50,110
do
current=gadget clicked()
if current=1
select active tab(1)
case 0
show gadget 2
hide gadget 3
hide gadget 4
endcase
case 1
show gadget 3
hide gadget 2
hide gadget 4
endcase
case 2
show gadget 4
hide gadget 2
hide gadget 3
endcase
endselect
endif
loop
As regards to Blue
IDE, please understand that it is a completely different product, it is something I work on in my free time and is not yet finished. However, every time you compile it will create a backup of your source code in a "Backup" folder (where your main source is).
I really hope that you find BlueGUI useful, if you are still having difficulties, or decide that it isn't the right plugin for you, then please email me.
BlueGUI:Windows UI Plugin - All the power of the windows interface in your DBPro games.