ValDog Active Member Licensed User Longtime User Oct 16, 2014 #1 Trying to set the initial directory with "InitialDirectory" but it doesn't seem to work - defaults to "C:\" each time. Any ideas?
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 Oct 16, 2014 #2 working fine here with B4X: Dim fc As FileChooser fc.Initialize fc.InitialDirectory = "c:/temp/" fc.ShowOpen(MainForm) Upvote 0
working fine here with B4X: Dim fc As FileChooser fc.Initialize fc.InitialDirectory = "c:/temp/" fc.ShowOpen(MainForm)
ValDog Active Member Licensed User Longtime User Oct 16, 2014 #3 Daestrum said: working fine here with B4X: Dim fc As FileChooser fc.Initialize fc.InitialDirectory = "c:/temp/" fc.ShowOpen(MainForm) Click to expand... Yep, sorry - I found my mistake. Thanks! Upvote 0
Daestrum said: working fine here with B4X: Dim fc As FileChooser fc.Initialize fc.InitialDirectory = "c:/temp/" fc.ShowOpen(MainForm) Click to expand... Yep, sorry - I found my mistake. Thanks!