Hi all,
Trying to save file. using file this code in B4XPages gives me the resulting screen with no filters. Any ideas?
Cheers,
Lildinti
Trying to save file. using file this code in B4XPages gives me the resulting screen with no filters. Any ideas?
Filechooser ShowSave:
Dim f As FileChooser
f.Initialize
f.Title="Save File"
f.InitialDirectory= File.DirApp
f.InitialFileName="test.jpg"
f.SetExtensionFilter("Image File", Array As String("*.*","*.jpg","*.png"))
f.ShowSave(B4XPages.GetNativeParent(Me))
Cheers,
Lildinti