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 DamoOz

  1. DamoOz

    ADO and textfile driver - how to force all field types as text??

    CCLINT, whoever you are - THANK YOU
  2. DamoOz

    ADO and textfile driver - how to force all field types as text??

    I have tried this...... How do I reference the schema.ini when opening the recordset. I have checked msdn and found some info but not exactly what I need. Do I need to use ODBC and create dsn etc Thanks in advance
  3. DamoOz

    ADO and textfile driver - how to force all field types as text??

    I have the follow code extract where I access the contects of a text file through ADO and run a SQL query to populate a table with the text file contents. This work fine apart from some fields which the text driver is assuming is a long integer and I need to access the field as a text data type...
  4. DamoOz

    ADO and textfile driver - how to force all field types as text??

    I have the follow code extract where I access the contects of a text file through ADO and run a SQL query to populate a table with the text file contents. This work fine apart from some fields which the text driver is assuming is a long integer and I need to access the field as a text data type...
  5. DamoOz

    Finding Distinct Records

    try something like this SELECT DISTINCTROW Producer, count([producer]) as NumOfDups FROM tblClaims GROUP BY Producer HAVING count([claims]) > 1
  6. DamoOz

    Only report if there is a 30% increase or decrease from previous group

    Jim I have tried something like this but my problem is that I do not have a {table.value}. I am just keeping a count of the number of errors and I want to report if the number of errors increase or decrease by 30%. The previous function does not allow me to do a previous(count({table.error})...
  7. DamoOz

    Only report if there is a 30% increase or decrease from previous group

    Hi I have just created a program to collect error information from a switch and populate a database. I have a report to display the error information for the last 3 hours, totals treatment etc. I now require a report that only reports on errors that have a 30% increase or decrease from the...
  8. DamoOz

    Recordset updated but report does not!!

    Please help I am updating a recordset and exporting my report but the report data is not being updated. I AM using the report.DiscardSavedData but this is not working. I need to refresh this report from within code - Any suggestions??? DamoOz
  9. DamoOz

    Copy tables using recordset

    Hey Mats..............Maybe nobody knows!!! Can I even copy from one recordset into another recordset if they are on different connections???.
  10. DamoOz

    Copy Files

    use ..... FileCopy Source, Destination
  11. DamoOz

    Problems exporting to HTML

    Why not just use DHTML if it works fine???
  12. DamoOz

    Copy tables using recordset

    Mats I think we have a very similar problem - you have posted a reply to my question ("a quicker way to import CSV file in ADO) in the VB - Database forum. We have to find a solution to this!! There must be a quicker way to load a table form a table in another database or CSV file etc...
  13. DamoOz

    exporting A Crystal Report to word for from VB6

    Here is some modified code I have used Dim myReport As New CrystalReport1 With myReport .DiscardSavedData .ReportTitle = "Title here" .ExportOptions.FormatType = crEFTWordForWindows .ExportOptions.DiskFileName = enter path here...
  14. DamoOz

    Copy tables using recordset

    Can explain a little more as I have a similar problem. Can you copy from one recordset to another even if they are from different connections. DamoOz
  15. DamoOz

    Update recordset problem..

    Paul Check the properties of cursor type in the returning recordset 0 - Forward only 1 - Keyset 2 - Dynamic 3 - Static DamoOz

Part and Inventory Search

Back
Top