-
FlexPro
- Auf einen Blick
- Features & Optionen
- Einsatzgebiete
- Alle Vorteile
- Neu in FlexPro 2021
- FlexPro gratis testen
- FlexPro View OEM Freeware
- Kaufberatung
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
- Produkte
- News
- Support
- Unternehmen
- Jobs
- Kontakt
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
VBA File Browser
Home > Community > Automation and VBA > VBA File Browser
- Dieses Thema hat 2 Antworten sowie 2 Teilnehmer und wurde zuletzt vor vor 8 Jahren, 9 Monaten von HerveM1234 aktualisiert.
Viewing 3 posts - 1 through 3 (of 3 total)
-
AutorBeiträge
-
Februar 15, 2016 um 1:39 pm Uhr #12902HerveM1234Teilnehmer
Hi,
Why the syntax :
fileToOpen = Application _ .GetOpenFilename("Text Files (*.txt), *.txt") If fileToOpen False Then MsgBox "Open " & fileToOpen End If
returns “error 438” ?
How to browse directories using FlexPro VBA ?
ThanksFebruar 15, 2016 um 1:39 pm Uhr #8562HerveM1234TeilnehmerHi,
Why the syntax :
fileToOpen = Application _ .GetOpenFilename("Text Files (*.txt), *.txt") If fileToOpen <> False Then MsgBox "Open " & fileToOpen End If
returns “error 438” ?
How to browse directories using FlexPro VBA ?
ThanksFebruar 16, 2016 um 12:08 pm Uhr #9430Bernhard KantzTeilnehmerGetOpenFilename() is (as the error 438 states) no part of the FlexPro object model. It is a function from the Win32 API (and also mimicked by MS Office applications).
You may use the FileDialog property to display a file chooser. An example can be found in the online help (Index: FpFileDialog (object), follow Example link). -
AutorBeiträge
Viewing 3 posts - 1 through 3 (of 3 total)
- Du musst angemeldet sein, um auf dieses Thema antworten zu können.