Hi, How can I get the path of my current macro? (not the drawing path) Thanks
Hi Andre Maybe this sniplet can help... (requires reference to 'Microsoft Visual Basic for Applications Extensibility') Dim VbaApp As VBIDE.VBE Dim PrjNme as String Set VbaApp = Application.VBE PrjNme = VbaApp.VBProjects("YourProjectName").FileName Cheers