-
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
Sequential Numbering
Home > Community > Automation and VBA > Sequential Numbering
- Dieses Thema hat 2 Antworten sowie 2 Teilnehmer und wurde zuletzt vor vor 10 Jahren, 8 Monaten von Fiona Vidal aktualisiert.
-
AutorBeiträge
-
März 11, 2014 um 4:39 pm Uhr #12850Fiona VidalTeilnehmer
I am trying to write a piece of VBA code to copy and paste a specific folder, “Data1”, from multiple files into one file. The data will subsequently be concatenated. I would like to name the folders that are pasted into the main FPD file sequentially, i.e. 01,02,03… etc. Do you know how I would do this? The number of files would be arbitrary.
Many thanks for your help
März 11, 2014 um 4:39 pm Uhr #8510Fiona VidalTeilnehmerI am trying to write a piece of VBA code to copy and paste a specific folder, “Data1”, from multiple files into one file. The data will subsequently be concatenated. I would like to name the folders that are pasted into the main FPD file sequentially, i.e. 01,02,03… etc. Do you know how I would do this? The number of files would be arbitrary.
Many thanks for your help
März 12, 2014 um 10:38 am Uhr #9346Bernhard KantzTeilnehmerUsing the Open method of the Databases collection of the Application object, one can load a FlexPro project database. The Folder object to be copied can be obtained via the RootFolder method of the opened Database object. Using its CopyTo method with the RootFolder of the destination Database performs the actual copy operation. With the Rename method the newly created folder can be given the desired name.
If you count the databases using an integer variable nCnt and FlexPro project database filenames as a string sFpd the code in your loop might look like the following:
Dim nCnt As Integer Dim sDstName As String Dim oSrcDb As Database Dim oSrcFolder As Folder Dim sFpd ... sDstName = "Data" & Right$(Str$(nCnt + 100), 2) Set oSrcDb = Application.Databases.Open(sFpd, fpOpenModeReadOnly) Set oSrcFolder = oSrcDb.RootFolder("Data", fpObjectTypeFolder) oSrcFolder.CopyTo(ThisDatabase.RootFolder, fpNameClashHandlingOverwrite).Rename sDstName oSrcDb.Close fpDoNotSaveChanges
But be aware that opening a project database is a time consuming operation, so get a cup of coffee when executing the script.
-
AutorBeiträge
- Du musst angemeldet sein, um auf dieses Thema antworten zu können.