M
MarcoPolo
i use this for export on the server
For Each Module In Application.VBE.ActiveVBProject.VBComponents
if Module.Type = 1
Module.Export pthVisual & Module.Name & ".bas"
Module.Export "E:\vb\functions\" & Module.Name & ".bas"
endif
Next
how can i add automatic this modules into the different clients?
I didnt find a proper page helping me about "import"
For Each Module In Application.VBE.ActiveVBProject.VBComponents
if Module.Type = 1
Module.Export pthVisual & Module.Name & ".bas"
Module.Export "E:\vb\functions\" & Module.Name & ".bas"
endif
Next
how can i add automatic this modules into the different clients?
I didnt find a proper page helping me about "import"