Ver Mensaje Individual
  #4 (permalink)  
Antiguo 25/11/2010, 14:12
Juan-jo
 
Fecha de Ingreso: septiembre-2004
Mensajes: 8
Antigüedad: 20 años, 1 mes
Puntos: 0
Respuesta: Abrir archivo con libreria hecha en VB

Cita:
Iniciado por mc_quake Ver Mensaje
dice que el archivo imprimir2.asp no existe en la ruta

lo otro si usas dll debes registrarla en el server:
[url]http://www.hormiga.org/dll/registrar_archivos_dll.html[/url]
Gracias por responder...
De hecho marca el error cuando hago la llamada a la DLL
La DLL si la registre, de hecho, volvi a hacerlo para comprobar y aun asi no jala.

Al parecer me dice que el archivo que no encuentra es el archivo 'Formato1.zpl'

He aqui el codigo
________
Set ObjPrint = Server.CreateObject("ImprimirEtiqueta.sendToPrint" )
Set ObjFile = Server.CreateObject("Scripting.FileSystemObject")

Set objFSO = Server.CreateObject("Scripting.FileSystemObject")
If objFSO.FileExists(Server.MapPath("Formato1.zpl")) Then
Response.Write("OK to Access")'OK to access the file.
Set objFile = objFSO.OpenTextFile(Server.MapPath("Formato1.zpl") ,1)
Else
Response.Write("File Not Found")'File not found.
End If



ObjPrint.printIt Server.MapPath("Formato1.zpl")
______________________

La funcion printIt recibe como parametro la ruta del archivo...
En el if de FILEEXISTS, devuelve que si existe...