Página 1 de 1

problem with BrowseForFolderDlg in Xailer 32

Publicado: Jue Nov 29, 2018 1:09 pm
por Ingo Junge-Herrmann
Hi all,
there is a problem in BrowseForFolderDlg. Setting a path to :cRoot has no effect. Always starts with the Rootdirectory of the disk.
Is there a Workaround?

Thanks Ingo

Re: problem with BrowseForFolderDlg in Xailer 32

Publicado: Vie Nov 30, 2018 1:48 am
por Hurricane
Hi Ingo,

how did you define cRoot?
I tested with Xailer 3.2 and it worked.

Código: Seleccionar todo

METHOD Button1Click( oSender ) CLASS TFrmMain
   ::oBrowseForFolderDlg1:cRoot:='C:\TEMP'
   ::oBrowseForFolderDlg1:Run()
RETURN Nil
I also tested the definition at design time.
create a small example.
Ingo Junge-Herrmann escribió:there is a problem in BrowseForFolderDlg. Setting a path to :cRoot has no effect. Always starts with the Rootdirectory of the disk.
Is there a Workaround?

Re: problem with BrowseForFolderDlg in Xailer 32

Publicado: Vie Nov 30, 2018 8:13 am
por Ingo Junge-Herrmann
Hi Hurricane,
thanks for replying.
Here my Code

METHOD OrdnerWahl( oSender, Value ) CLASS Eingangsliste
LOCAL cPfad := "C:\Debeka\data\"
LOCAL cPdfPfad := ""
WITH OBJECT ::oBrowseForFolderDlg1
:cRoot := cPfad
IF :Run()
cPdfPfad := :cRoot
ELSE
cPdfPfad := ""
ENDIF
END WITH
RETURN cPdfPfad

Is always showing the personal directory.
Any idea?

Ingo

Re: problem with BrowseForFolderDlg in Xailer 32

Publicado: Vie Nov 30, 2018 8:19 am
por Ingo Junge-Herrmann
Hi Hurricane,

it's solved.

Thank you

Ingo