-
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
Automated import binary files
Home > Community > Automation and VBA > Automated import binary files
- Dieses Thema hat 3 Antworten sowie 2 Teilnehmer und wurde zuletzt vor vor 19 Jahren, 4 Monaten von norbert.bakkers@lr.org aktualisiert.
-
AutorBeiträge
-
Juli 12, 2005 um 1:22 am Uhr #12433norbert.bakkers@lr.orgTeilnehmer
I use the following code to import binary files in Flexpro:
ImportSettings.ImportCompleteFile = True
ActiveDatabase.RootFolder.Import FName, “Binary files (*.*)|*.*”
The problem is that it will display the ‘Binary Data Set ‘BinaryDataSet’ Properties’ dialog box.
Is it possible to import binary data in a Flexpro dataset without having any visible dialog box?Juli 12, 2005 um 2:31 am Uhr #8725Bernhard KantzTeilnehmerThere are two possibilities to import binary data files with VBA:
1) Create a FPScript formula using the ReadBinaryFile function.
2) Use the BinaryDataLink object in VBA.Dim oBinaryDataLink As BinaryDataLink Set oBinaryDataLink = ThisDatabase.RootFolder.Add("Demo", fpObjectTypeBinaryDataLink) oBinaryDataLink.FilePath = "...ImportfilterDemoFile.tst" ...
See the FlexPro ImportFilter example.
Juli 13, 2005 um 12:09 am Uhr #8726norbert.bakkers@lr.orgTeilnehmerThanks.
The second option does exactly what I needed.Juli 13, 2005 um 12:15 am Uhr #8114norbert.bakkers@lr.orgTeilnehmerI use the following code to import binary files in Flexpro:
ImportSettings.ImportCompleteFile = True
ActiveDatabase.RootFolder.Import FName, “Binary files (*.*)|*.*”
The problem is that it will display the ‘Binary Data Set ‘BinaryDataSet’ Properties’ dialog box.
Is it possible to import binary data in a Flexpro dataset without having any visible dialog box? -
AutorBeiträge
- Du musst angemeldet sein, um auf dieses Thema antworten zu können.