hi again.. this start a few month ago.. but now i have new info..
Forget about VSS.. or at least don't look like the error come from there..
i have forms with the same name in several projects.. but they open ok and i can load another ok..
maybe i just need a method to close the project.. so there will be no error them...
im doing something like this...
Code:
Private Sub CmdComenzar_Click()
On Error GoTo CmdComenzar_Click_Error
With gVBInst
.ReadOnlyMode = 0
.VBProjects.AddFromFile "e:\archivos de programa\s.i.ap 2\siap_funciones\Siap_funciones.vbp", True
.ActiveVBProject.MakeCompiledFile
.VBProjects.AddFromFile "e:\archivos de programa\s.i.ap 2\blowfish\segdll.vbp", True
.ActiveVBProject.MakeCompiledFile
.VBProjects.AddFromFile "e:\archivos de programa\s.i.ap 2\xmlamdb\Xmlamdb.vbp", True
.ActiveVBProject.MakeCompiledFile
.VBProjects.AddFromFile "e:\archivos de programa\s.i.ap 2\interfaces\clasegenerica\Icgen.vbp", True
.ActiveVBProject.MakeCompiledFile
.VBProjects.AddFromFile "e:\archivos de programa\s.i.ap 2\siap_contribs_dll\Contribs.vbp", True
.ActiveVBProject.MakeCompiledFile
.VBProjects.AddFromFile "e:\archivos de programa\s.i.ap 2\siap4\contribuyentes\SIAP_CONTRIBUYENTES.vbp", True
.ActiveVBProject.MakeCompiledFile
.VBProjects.AddFromFile "e:\archivos de programa\s.i.ap 2\modulo Instalar\Proyecto1.vbp", True
.ActiveVBProject.MakeCompiledFile
.VBProjects.AddFromFile "e:\archivos de programa\s.i.ap 2\siap4\siap_backup\SIAP_RESGUARDO.vbp", True
.ActiveVBProject.MakeCompiledFile
.VBProjects.AddFromFile "e:\archivos de programa\s.i.ap 2\siap4\Siap_4.vbp", True
.ActiveVBProject.MakeCompiledFile
End With
Me.SetFocus
errores:
Exit Sub
CmdComenzar_Click_Error:
MsgBox "error" & vbNewLine & Err.Number & vbNewLine & Err.Description
gVBInst.Windows(1).SetFocus
End Sub
as you can see.. i never close any project.. maybe that's the problem???
thanks in advance.. any point toward this will help me a lot...
Gonzalo Bianchi