Compiled EXE is not working on HP iPAQ214

agraham

Expert
Licensed User
Longtime User
but how to add a DateTiemPicker on a Panel of tabpage ?
Like this
B4X:
AddObject("DTpicker", "DateTimePicker") ' you could also add it in the IDE as usual
DTpicker.New1("Form1",0,0,120) ' create it on a form
Tab1.AddControl(DTpicker.ControlRef,0, 20, 20) ' move it to the required tab page
 

mozaharul

Active Member
Licensed User
Hi agraham,

Regarding the Format of the DateTimePicker, I used in the App_start like:

dtp.Format(8,"dd/MM/yyyy") ' dtp is DateTimePicker

but generating error, what is the correct syntax ?

Best regards,
 
Top