@ Rob.k : I don't know if it was mentionned before but, I've a small problem with EDIT gadget ...
I create them using this function :
Function GDG_Create_Gadget_Edit( Gad , Title$ , Xpos , Ypos , XSize , YSize , Parent )
If Gadget Exists( Gad ) = 1 Then Delete Gadget Gad
Create Gadget Edit Gad
Set Gadget Font Gad , 1
Set Gadget Text Gad , Title$
If Parent > 0 Then Set Parent Gadget Gad , Parent
Position Gadget Gad , Xpos , Ypos
If XSize > 0 And YSize > 0 Then Resize Gadget Gad , XSize , YSize
Rem Set Gadget Color Gad , Rgb( 192 , 192 , 192 )
EndFunction
The function work but, if I set parent in a gadget located inside DBP windows , I can't enter text ... mouse click does not choose the gadget and put cursor to enter text ...
I must use this because I create a small windows inside dbp window
Create Gadget Window 1 , 1 , LOCALE$(44) , 0
Set Gadget 1 , 0 , 0 , 420 , 224
And put all gadget inside this one ...
I'm under Windows 98SE ... my X-Quad Editor's beta tester have the same problem under Windows XP ... I use BlueGUI 1.045 ...
Thanks