Small problem with the CustomDialog2

alan1968

Active Member
Licensed User
Longtime User
hello ,
I have a small problem with the CustomDialog2 to ICS , my box does not display the same to a tablet 10" and 7" ,Why ?

Thx!

alan

B4X:
'Activity module
Sub Process_Globals
   'These global variables will be declared once when the application starts.
   'These variables can be accessed from all modules.

End Sub

Sub Globals
   'These global variables will be redeclared each time the activity is created.
   'These variables can only be accessed from this module.
Dim cd As CustomDialog2
Dim panel1 As Panel
End Sub

Sub Activity_Create(FirstTime As Boolean)
panel1.Initialize("panel1")
cd.AddView(panel1,77%x,66%y)
cd.Show("test","OK","Cancel","",Null)
End Sub

Sub Activity_Resume

End Sub

Sub Activity_Pause (UserClosed As Boolean)

End Sub
 

Attachments

  • CD1.png
    CD1.png
    22.2 KB · Views: 259
  • cd2.png
    cd2.png
    18.8 KB · Views: 236
Top