Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by mimpuerto

  1. mimpuerto

    Changing MS Access password using OLEDB Connection

    Hello! I really want to know how to change password of an MS Access database through OLEDb. If I have db1.mdb, my connection string would be: gstr = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=db1.mdb;Jet OLEDB:Registry Path=;Jet OLEDB:Database Password=;Jet OLEDB:New Database...
  2. mimpuerto

    How do I call stored procedure via ASP?

    I already solved the problem. My procedure is placed under user1 account. while my connection in asp is using user2 account. when calling the stored procedure in asp, you should specify the owner of the stored procedure. example: cnn.execute "user1.storedproc1" Hope this works for...
  3. mimpuerto

    How do I call stored procedure via ASP?

    I have an ASP code calling an Oracle stored procedure with IN parameters. Code written as shown below: <% Dim Cnn Dim Cmd Set Cnn = Server.CreateObject(&quot;ADODB.Connection&quot;) Set Cmd = Server.CreateObject(&quot;ADODB.Command&quot;) Cnn.Open DBCONN Set Cmd.ActiveConnection = Cnn...
  4. mimpuerto

    User Session Has Expired

    Hello! I have a problem calling a Crystal Report via ASP. The page was successfully loaded the Crystal Smart Viewer ActiveX. Unfortunately, records were not retrieved and a prompt saying &quot;User Session Has Expired&quot; is visible on my screen. I am using ADO (Data Definitions Only). During...
  5. mimpuerto

    VB Application calling Excel File with Macro - Macros not working

    Hi. I have an Excel application. This application is opening multiple Excel files. The Excel file contains macros. The macro opens another Excel file. When triggered by a VB application, the macro is executed except all methods issued. Thus, if i issue OPEN method, the macro will just run the...

Part and Inventory Search

Back
Top