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 bkrike 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: *

  • Users: ctdapper
  • Content: Threads
  • Order by date
  1. ctdapper

    Need help with session variables

    I have written a local intranet program so that users can chech the status of different projects. I use session variables to keep tract of the project number and the phasecode of the project they are viewing. How ever if there are more then two users then the one that changes the project number...
  2. ctdapper

    Dataset updates after sorting from a grid

    I am able to add a new record to the dataset with the following code. Dim i As Integer Dim anyRow As DataRow = Me.objpagers.COMM.NewRow Me.objpagers.COMM.Rows.Add(anyRow) i = Me.objpagers.COMM.Count Me.grdCOMM.CurrentRowIndex = i grboxadd.Visible =...
  3. ctdapper

    Application uses a value of the wrong type

    Using a stored procedure in an SQL Database with VB calling it: CREATE procedure dbo.up_select_company @code_id varchar(4) as select * from company where code = @code_id VB part: cmdcompany.Parameters.Append cmdcompany.CreateParameter("@code_id", adVarChar, adParamInput, 4, varcode)...
  4. ctdapper

    Application uses a value of the wrong type

    Using a stored procedure in an SQL Database with VB calling it: CREATE procedure dbo.up_select_company @code_id varchar(4) as select * from company where code = @code_id VB part: cmdcompany.Parameters.Append cmdcompany.CreateParameter("@code_id", adVarChar, adParamInput, 4, varcode)...
  5. ctdapper

    exporting A Crystal Report to word for from VB6

    I am unable to export a report created by crystal reports to a word doc through code alone. Vb code will only display it in the crystal reports preview. But I would like to have VB call it and save it with out user interface. Can this be done? If so how
  6. ctdapper

    un able to auto export to MSword

    I am unable to auto export a report to a MSword doc using VB6. I could use any hints/help with the code if possible Thanks

Part and Inventory Search

Back
Top