Hi, All
A remote user reported that the file pick dialog was stopped to work under Win7.
Initially it was working - now no. How to understand it ?
Button click just does not open the file dialog.
He tried another user account - it was working there yesterday, but today - again does not work ! Now in 2 Windows accounts.
A remote user reported that the file pick dialog was stopped to work under Win7.
B4X:
kvs.Initialize(File.DirData(appname), "kvs")
SourceFileFolder = kvs.Get("SourceFileFolder")
If SourceFileFolder = "null" Then
SourceFileFolder = File.DirApp
End If
Dim a As FileChooser
a.Initialize
a.InitialDirectory = SourceFileFolder
a.Title = "Choose .XLS:"
a.setExtensionFilter("Excel file", Array As String("*.xls", "*.xlsx", "*.xlsm"))
Dim fn As String = a.ShowOpen(MainForm)
If fn = "" Then Return
SourceFileFolder = File.GetFileParent(fn)
fn = File.GetName(fn)
Initially it was working - now no. How to understand it ?
Button click just does not open the file dialog.
He tried another user account - it was working there yesterday, but today - again does not work ! Now in 2 Windows accounts.