XbpFileDialog() problem
Posted: Thu May 15, 2025 2:24 am
Hi,
one of my users reported a problem with displaying icons when selecting a file using XbpFileDialog. Some icons are blacked out. This happens on 2 computers, restarting them helps. In the program it looks like this:
FUNCTION M_PDFName()
LOCAL cName, oXbp
oXbp := XbpFileDialog():new()
oXbp:defExtension := "PDF"
oXbp:validatePath := .T.
oXbp:restoreDir := .T.
oXbp:fileFilters := aFilters := { {"Dokument PDF", "*.PDF"}}
oXbp:title := "Podaj nazwÄ™ dla tworzonego pliku PDF"
oXbp:create()
cName := oXbp:saveAs(,.F.,.T.)
IF Empty(cName)
cName := ""
ENDIF
RETURN cName
And on the screen like this:
Has anyone encountered this problem?
Regards
Piotr
one of my users reported a problem with displaying icons when selecting a file using XbpFileDialog. Some icons are blacked out. This happens on 2 computers, restarting them helps. In the program it looks like this:
FUNCTION M_PDFName()
LOCAL cName, oXbp
oXbp := XbpFileDialog():new()
oXbp:defExtension := "PDF"
oXbp:validatePath := .T.
oXbp:restoreDir := .T.
oXbp:fileFilters := aFilters := { {"Dokument PDF", "*.PDF"}}
oXbp:title := "Podaj nazwÄ™ dla tworzonego pliku PDF"
oXbp:create()
cName := oXbp:saveAs(,.F.,.T.)
IF Empty(cName)
cName := ""
ENDIF
RETURN cName
And on the screen like this:
Has anyone encountered this problem?
Regards
Piotr