problem with BrowseForFolderDlg in Xailer 32

Xailer English public forum
Responder
Ingo Junge-Herrmann
Mensajes: 339
Registrado: Lun Jul 02, 2007 7:17 pm

problem with BrowseForFolderDlg in Xailer 32

Mensaje 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
Avatar de Usuario
Hurricane
Mensajes: 262
Registrado: Mar Mar 24, 2015 10:21 am
Ubicación: Brasil
Contactar:

Re: problem with BrowseForFolderDlg in Xailer 32

Mensaje 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?
Developments | Trainings | Projects
Site | E-mail | Messenger | YouTube
Ingo Junge-Herrmann
Mensajes: 339
Registrado: Lun Jul 02, 2007 7:17 pm

Re: problem with BrowseForFolderDlg in Xailer 32

Mensaje 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
Ingo Junge-Herrmann
Mensajes: 339
Registrado: Lun Jul 02, 2007 7:17 pm

Re: problem with BrowseForFolderDlg in Xailer 32

Mensaje por Ingo Junge-Herrmann »

Hi Hurricane,

it's solved.

Thank you

Ingo
Responder