B4J Question FileChooser Issue?

ValDog

Active Member
Licensed User
Longtime User
Trying to set the initial directory with "InitialDirectory" but it doesn't seem to work - defaults to "C:\" each time. Any ideas?
 

Daestrum

Expert
Licensed User
Longtime User
working fine here with
B4X:
    Dim fc As FileChooser
    fc.Initialize
    fc.InitialDirectory = "c:/temp/"
    fc.ShowOpen(MainForm)
 
Upvote 0
Top