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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. sravva

    Can I able to change button icon image

    Hi trScott, I have used document level javascript as: var myfield = this.getField("Button1"); myfield.buttonImportIcon("../PDF/logo.jpg"); it will work in Acrobat 7 prof and not in Acrobat Reader 7.
  2. sravva

    Can I able to change button icon image

    How can i change button icon image at runtime. I am using Acrobat prof 7 and will it work fine in Acrobat Reader 7? Thanks.
  3. sravva

    Full Version of Acrobat to use Forms?

    Can I change icon image at runtime on a button. I am using Acrobat 7 Prof. Will it run on Acrobat Reader 7 aswell?
  4. sravva

    SP call using ADO command object

    Can I get a link to sample code for these. Thanks for your valuable help.
  5. sravva

    SP call using ADO command object

    yes, PL/SQL Tables are defined as IN parameter here. There are 6 columns of these types. It is supposed to work as BULK updates for the modified columns. Passing arrays to the procedure. Is it possible doing with ADO? Are there any third party tools to do this. Thanks.
  6. sravva

    SP call using ADO command object

    Thanks!! Here is the snippet of the code... TYPE wno IS TABLE OF report_schedule.wno%TYPE INDEX BY BINARY_INTEGER; TYPE vno IS TABLE OF report_schedule.vno%TYPE INDEX BY BINARY_INTEGER; TYPE repseqno IS TABLE OF report_schedule.rep_seq_no%TYPE INDEX BY...
  7. sravva

    SP call using ADO command object

    Please find the code as below: Dim cmd As ADODB.Command Dim sAction As String, sPrintSchDate As String Dim sWaesNo(0) As String Set cmd = New ADODB.Command cmd.CommandText = "rpt_core.pr_report_schedule" cmd.CommandType = adCmdStoredProc cmd.ActiveConnection = Conn sAction = "U"...
  8. sravva

    SP call using ADO command object

    Thanks fredericofonseca!! When I am trying to see parameter collection, i am getting following error "Provider cannot derive parameter information and SetParameterInfo has not been called"
  9. sravva

    SP call using ADO command object

    I am calling a oracle stored procedure having one of column as "PL/SQL TABLE" through Visual basic code using ADO objects. I am getting wrong types passed error. at the following code: cmd.Parameters.Append cmd.CreateParameter("P_REPORT_CD", adVarchar, adParamInput, Len(sReportCd(0))...
  10. sravva

    SP call using ADO command object

    I am calling a oracle stored procedure having one of column as "PL/SQL TABLE" through Visual basic code using ADO objects. I am getting wrong types passed error. at the following code: cmd.Parameters.Append cmd.CreateParameter("P_REPORT_CD", adVarchar, adParamInput, Len(sReportCd(0))...

Part and Inventory Search

Back
Top