Custom Dialogs

BrutalSnyper

Member
Licensed User
Longtime User
I'm trying to set up a custom dialog but I'm receiving this error on compiling and CustomDialog isn't working properly in my code.

The error:
B4X:
Error description: Unknown type: customdialog
Are you missing a library reference?
Occurred on line: 15
Dim saveAreaDialog As CustomDialog

My code:
B4X:
Sub Globals
Dim saveAreaDialog as CustomDialog
End Sub

Sub FirstTimeCheck

   If settings.Get(firstTimeOpen) = 0
      settings.Put(firstTimeOpen, 1)
      
      saveAreaDialog.Show("Choose storage location", "Where shall I save notes to?", "Internal", "", "External", Null)

End Sub
 

BrutalSnyper

Member
Licensed User
Longtime User
No, I am currently on the trial version.

Do I seriously need to upgrade in order to be able to install this library and use dialogs?
:-/ That sucks big time.
 
Upvote 0

BrutalSnyper

Member
Licensed User
Longtime User
Wow, that is a huge disappointment, one of the main features that I wanted to try before buying and it can't be used before buying. :-/

That's going to weigh in on my decision of whether or not to purchase this...
 
Upvote 0
Top