-
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
deploy import filter
Home > Community > Automation and VBA > deploy import filter
- Dieses Thema hat 3 Antworten sowie 2 Teilnehmer und wurde zuletzt vor vor 16 Jahren, 8 Monaten von sepp herberger aktualisiert.
-
AutorBeiträge
-
Februar 26, 2008 um 7:34 pm Uhr #12394sepp herbergerMitglied
Dear,
I developed one import filter for customer. but the deployment for the filter seemed difficult for customer user, he should import my vba source code into his flexpro macro environment and run filter_register and filter_deregister etc,.
Is there any easy way to deployment customized import filter?Thanks in advance.
TanyaFebruar 26, 2008 um 7:34 pm Uhr #8077sepp herbergerMitgliedDear,
I developed one import filter for customer. but the deployment for the filter seemed difficult for customer user, he should import my vba source code into his flexpro macro environment and run filter_register and filter_deregister etc,.
Is there any easy way to deployment customized import filter?Thanks in advance.
TanyaFebruar 26, 2008 um 8:13 pm Uhr #8611Bernhard KantzTeilnehmerTo deploy a filter written in VBA you need to import the VBA source code in one of the template databases. The registration should than happen in either AutoExec or AutoOpen (see the article on Auto macros in the online help and the import filter example). De-registration should occur in AutoExit or AutoClose.
All this can also be automated by using the object model of the Visual Basic Environment. Please take a look at the VBE property of Application for the entry point to this object model. You will need to add a reference to Microsoft Visual Basic for Applications Extensibility 5.3 to access the necessary type library.
Depending on what you can expect on the target system (module name or function name collisons, existing auto-macros etc.) this can be more or less work.You can reduce deployment issues by implementing your import filter as a COM add-in. Thus you just need to deploy and register a DLL (and its dependencies). As FlexPro VBA is the same as in Microsoft Office the same literature applies for COM add-in development.
Support
support@weisang.comFebruar 28, 2008 um 12:43 pm Uhr #8612sepp herbergerMitgliedThanks very much.
-
AutorBeiträge
- Du musst angemeldet sein, um auf dieses Thema antworten zu können.