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 SkipVought 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. bpitche

    Check for open applications

    I was able to use one of the ways that was explained in Paul's thread. It works great. Thank you to all!! Brad Pitcher The Hoover Company
  2. bpitche

    Check for open applications

    I am using the Shell("G:\Max411\impmeter.exe") command to start an application. The impmeter.exe imports data into my database, then closes automatically. This works fine, but I do not want my code to continue until the impmeter.exe application is closed. Is there a that I can do...
  3. bpitche

    Data Report Problem - Not Displaying first Record in Recordset

    I have problem with my data report. I have developed a search program that displays the query results, from an Oracle database, in a data repeater. Then I created a report to print the results. When I preview or print the report for the first time, all of the records are displayed on the...
  4. bpitche

    Data Report Problem - Skipping First Record

    The only thing that I don't do is requery before passing the datasource to the report. I know that it works if I requery, but it also makes the program run slower. A requery should not have to be done for this to work, should it? Brad Pitcher The Hoover Company
  5. bpitche

    Data Report Problem - Skipping First Record

    I am using a Client Side cursor and I am using adOpenStatic. Brad Pitcher The Hoover Company
  6. bpitche

    Data Report Problem - Skipping First Record

    I have problem with my data report. I have a search program that displays the query results in a data repeater. Then I created a report to print the results. When I preview the report for the first time, all of the records are displayed on the report. But if I close the report and preview it...
  7. bpitche

    Comma/Tab Delimited Text File

    I'm sorry!! I am writing the file from an oracle database. I will have to look and see if there is a "replace" command that I can use. Do you have any ideas on what I can do? Thanks, Brad Pitcher The Hoover Company bpitcher@hoover.com
  8. bpitche

    Comma/Tab Delimited Text File

    I know how to replace the comma with a different character, but how to do I read that character in VB. Here is my code to open the recordset: ****************************************************** Dim TextPath As String Set conn = New ADODB.Connection TextPath = "c:\INDIRECT\&quot...
  9. bpitche

    Comma/Tab Delimited Text File

    I am using ADO to query a comma delimited text file. I have run into a problem. Some fields that I am using, have a comma(,) or quotes (to represent inches) in them. This is breaking up the one field into two or more fields when the records are diplayed in a Flex Grid. Any suggestions? I...
  10. bpitche

    DataRepeater Problem

    Problem solved!! Thanks for your help!! It was the way I was opening my recordset(adUseClient) (adOpenStatic), etc. Thanks again, Brad Pitcher The Hoover Company bpitcher@hoover.com
  11. bpitche

    DataRepeater Problem

    Here is my code for the form in which the data repeater exisits. This is where I call my connection string (global variable) and set up the datasource for my ADO data control. Then I set up the Data Repeater (Data1) using code (I have tried this both ways, using the properties and by using the...
  12. bpitche

    DataRepeater Problem

    I am not getting an error, it is just that my data is not displaying in the repeater. I did run the active x in it's own project and I get an image of form with no data. Brad Pitcher The Hoover Company bpitcher@hoover.com
  13. bpitche

    DataRepeater

    Yes, all of the properies are data-bound Brad Pitcher The Hoover Company bpitcher@hoover.com
  14. bpitche

    DataRepeater Problem

    I am using the active x in a standard .exe project. I am using an Oracle database. Like I said, there is data in my recordset, because I can view the list in a list box. I just cannot get it to work in the Data Repeater. Brad Pitcher The Hoover Company bpitcher@hoover.com
  15. bpitche

    DataRepeater Problem

    I am working on search tool in which I would like to display the query results in a DataRepeater. I built the .ocx ActiveX control, assigned the properties (let and get), and created the bindings. Repeater is linked to an ADODC user control. My problem is that no data is being displayed in...
  16. bpitche

    DataRepeater

    Here is my code for the control. I you need to see the code that I am using to call the control and set my bindings in the data repeater, let me konw. ******************************************************* Option Explicit Private Sub txtBinnum_Change() PropertyChanged "Binnum&quot...
  17. bpitche

    DataRepeater

    I am working on search tool in which I would like to display the query results in a DataRepeater. I built the .ocx ActiveX control, assigned the properties, and created the bindings. Repeater is linked to an ADO user control. My problem is that no data is being displayed in the repeater. I...
  18. bpitche

    Searching database with advanced search

    That is exactly what I am interested in. I have not tried it yet, but I will let you know how it works when I do. Thank you very much!! Brad Pitcher The Hoover Company bpitcher@hoover.com
  19. bpitche

    Searching database with advanced search

    In a report. Brad Pitcher The Hoover Company bpitcher@hoover.com
  20. bpitche

    Compact on Exit (when flagged)

    I know how to make my database compact on exit, but I need to do something a little more complicated. I have a database that I use an import procedure with. The database is strictly used for reporting. I am using a flag that is set to "True" when the import is run. I want to use...

Part and Inventory Search

Back
Top