-
FlexPro
- Zoom sur FlexPro
- Fonctionnalités & Options
- Domaines d’application
- Tous les avantages
- Nouveau dans FlexPro 2021
- Testez FlexPro gratuitement
- FlexPro View OEM Freeware
- Conseils d’achat
- Login
- Langue
- +49 6894 929600
- infoweisang.com
- Google Maps
- Produits
- News
- Support
- Société
- Emplois
- Contact
- Login
- Langue
- +49 6894 929600
- infoweisang.com
- Google Maps
Indirektion in VBA etc.
Accueil > Community > Automation and VBA > Indirektion in VBA etc.
- This topic has 2 replies, 2 voices, and was last updated 15 years ago by Stefan Palaveev.
Viewing 3 posts - 1 through 3 (of 3 total)
-
AuthorPosts
-
November 13, 2009 at 4:13 am #12381Stefan PalaveevMember
Hallo,
ich habe eine an sich einfache Frage, bei der ich nicht weiterkomme:
wie kann ich das Verzeichnis Namens “Auswertung.FLD” nicht im RootFolder, sondern in einem bestehenden Verzeichnis Namens ‘091112’ erstellen?
so geht es jedenfalls nicht 🙂
Dim oFolder As Folder Set oFolder = oDB.RootFolder.Object("\091112\Auswertung.fld", fpObjectTypeFolder)
Vielen Dank für die Unterstützung
November 13, 2009 at 4:13 am #8064Stefan PalaveevMemberHallo,
ich habe eine an sich einfache Frage, bei der ich nicht weiterkomme:
wie kann ich das Verzeichnis Namens “Auswertung.FLD” nicht im RootFolder, sondern in einem bestehenden Verzeichnis Namens ‘091112’ erstellen?
so geht es jedenfalls nicht 🙂
Dim oFolder As Folder Set oFolder = oDB.RootFolder.Object("\091112\Auswertung.fld", fpObjectTypeFolder)
Vielen Dank für die Unterstützung
November 13, 2009 at 6:10 pm #8586Bernhard KantzParticipantAccess the folder ‘09112’ and create a new folder with the Add command.
Example:
... Dim oFolder As Folder Dim oSubFolder As Folder Set oFolder = oDB.RootFolder.Object("091112", fpObjectTypeFolder) Set oSubFolder = oFolder.Add("Auswertung", fpObjectTypeFolder)
-
AuthorPosts
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.