Forum FlexPro – Discuss your topic!

Indirektion in VBA etc.

Accueil > Community > Automation and VBA > Indirektion in VBA etc.

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #12381

    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

    #8064

    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

    #8586
    Bernhard KantzBernhard Kantz
    Participant

    Access 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)
    

    support@weisang.com

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.