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. collib

    VB & Crystal Reports with Parameters

    If I use CrystalRpt.ParameterFields("From_Date").AddCurrentValue CStr(gFromDate) @from_date is a string I get type mismatch
  2. collib

    VB & Crystal Reports with Parameters

    I have created a report in crystal with two parameters fields called @From_date and @To_Date and they are both strings in Crytsal. How do I pass the parameters into this report. Stuff that has ' in front of it is stuff I was playing with to try and get it to work Here is my code Dim CrystalApp...
  3. collib

    Parameters question

    New to using Crystal, question can i create a report with out setting up a connection to a DB and then just pass parameters to it. In the application I want to have standard parameter screens that pass over different parameters like a date range, client name, date range & clients etc. Am i able...
  4. collib

    Find Name of Combobox on a form

    I kind of knew what it was but had forgotten Thank you
  5. collib

    Find Name of Combobox on a form

    Sorry but the name of the combobox on the form willn't be known. i was wondering if it can be found at run time. i want to be able to use this function for different forms that will have different name for the combobox Thanks
  6. collib

    Find Name of Combobox on a form

    I am trying to write a function that passes name on the current form and then loads a combobox on that form with names from a table in the DB. If frmName.Controls = combox Then cboName.Name = frmName.Controls.Name End If or something like this Do Until mrst.EOF...
  7. collib

    Licensing error

    I created a program at home, I copied forms, modules and the project from one machine to the other. Both computers run VB6.0 sp5 and both have the msdatagrid.ocx in the system32 folder. When I try to run form at work I get an error message about license not found. Is there anyway around this...
  8. collib

    Can't run Microsoft Datagrid Control 6.0(sp5) OLEDB

    No i hsut copied forms, modules and project from one machine to the other and tryied to start up the project and I got this message about licensing. Any help would be appreciated.
  9. collib

    Can't run Microsoft Datagrid Control 6.0(sp5) OLEDB

    I created a program at home, copied files to another machine. Both computers run VB6.0 sp5 and both have the msdatagrid.ocx in the system32 folder. When I try to run form at work I get an error message about license not found. Is there anyway around this issue. Thanks in advance
  10. collib

    Calling stored procedure from sql

    Thanks for your help guys I was able to get the stored procedure to work.
  11. collib

    Calling stored procedure from sql

    Thanks Bob, still having problems I have a SP in SQL called sp_add_client it has 4 parameters @Surname varchar(70), @Given varchar(70), @Middle varchar(70), @Birthday varchar(70) I connect to db using this: Public mconHS As ADODB.Connection Public mcmdHS As ADODB.Command Public Function...
  12. collib

    Calling stored procedure from sql

    Thanks one last question, can you explain this line to me Set adorsLocal = AccessADO.Execute(strSQL) I assume adorsLocal is the recordsest, but what is AccessAdo.
  13. collib

    Calling stored procedure from sql

    I have created a stored proceure in SQL called sp_add_client, it has 4 parameters (Surname, Given, Middle, Birthday). I have connected to the SQl db using ADO, adoConn.ConnectionString = "driver={SQL Server};" & _ "server=qaserver\sql2000;uid=sa;pwd=me4wsql;database=chris&quot...
  14. collib

    sending mail through outlook.application

    I tried this code just as a test and I get a compliler error (invalid outside procedure)on the keyword SET for: Set appoutlook = CreateObject("Outlook.application") I have made reference to outlook 9.0. Any ideas?

Part and Inventory Search

Back
Top