-
FlexPro
- At a Glance
- Features & Options
- Applications
- All Advantages
- What’s New in FlexPro 2021
- Try FlexPro For Free
- FlexPro View OEM Freeware
- Buying Guide
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
- Products
- News
- Support
- Company
- Contact
- Login
- Language
- +49 6894 929600
- infoweisang.com
- Google Maps
CopyTo Methode
Home > Community > Automation and VBA > CopyTo Methode
- This topic has 2 replies, 2 voices, and was last updated 18 years, 8 months ago by Dennis Reichenbach.
-
AuthorPosts
-
March 1, 2006 at 9:48 pm #12418Dennis ReichenbachParticipant
Hallo,
ich möchte die CopyTo Methode verwenden um eine Formel im RootFolder der aktiven Datenbank zu kopieren und unter einem anderen Namen einzufügen.
Ich habe es mit folgendem Code versucht, bekomme aber immer eine Fehlermeldung.Sub Test()
Dim Verluste_LL As FormulaSet Verluste_LL = ActiveDatabase.RootFolder.Object(“05_1_Verschiebung_V_LL”, fpObjectTypeFormula)
Verluste_LL.CopyTo (ActiveDatabase.RootFolder)Set Verluste_LL = Nothing
End SubKönnen Sie mir weiter helfen?
March 1, 2006 at 9:48 pm #8099Dennis ReichenbachParticipantHallo,
ich möchte die CopyTo Methode verwenden um eine Formel im RootFolder der aktiven Datenbank zu kopieren und unter einem anderen Namen einzufügen.
Ich habe es mit folgendem Code versucht, bekomme aber immer eine Fehlermeldung.Sub Test()
Dim Verluste_LL As FormulaSet Verluste_LL = ActiveDatabase.RootFolder.Object(“05_1_Verschiebung_V_LL”, fpObjectTypeFormula)
Verluste_LL.CopyTo (ActiveDatabase.RootFolder)Set Verluste_LL = Nothing
End SubKönnen Sie mir weiter helfen?
March 1, 2006 at 10:02 pm #8684Bernhard KantzParticipantIf you use a method in VBA without an assignment you have to remove the brackets.
This is not possible in VBA:
Verluste_LL.CopyTo(ActiveDatabase.RootFolder)
This code is correct:
Verluste_LL.CopyTo ActiveDatabase.RootFolder
or
Dim oDestination As Formula Set oDestination = Verluste_LL.CopyTo(ActiveDatabase.RootFolder)
-
AuthorPosts
- You must be logged in to reply to this topic.