'// Requires a reference to the_ VB Extensibility Type Library Public Sub AddFile_ (VBInst As VBIDE.Application) Dim AP As Object Set AP = VBInst.ActiveProject AP.AddFile (App.Path & "\y.xxx") Set AP = Nothing End Sub
Add a file to the current project.
When making an add-in, you may want this functionality. This tip shows how: