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 Wanet Telecoms Ltd 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. HISCorsair

    Insert SQL statement on DECommand from a form...

    You'll need to put that code in the procedure that calls the Data Report I think, not in the Data Report itself. Because the Data Report is bound, you'll need the commandtext set before the Data Report gets opened. If you still get that error after moving the code, you might try putting this...
  2. HISCorsair

    Insert SQL statement on DECommand from a form...

    Hi wacks, The code you want is: DataEnvironement1.commands("Command1").CommandText = strSQL You'll need to close any open recordset and then reopen it after you change it, something like this: if DataEnvironement1.rsCommand1.State=adstateopen then dataenvironment1.rscommand1.close...
  3. HISCorsair

    Search for text

    Actually, you might look at using a Microsoft Rich Text Box control if it suits your purposes otherwise. It already has a built in find command which can find multiple instances of a word. It's included with Visual Basic already, just add it to your Project from the Components menu. J. Broadus...
  4. HISCorsair

    Images with Access 2000, VB6, and Crystal 4.5

    I'm trying to do what seems like it should be a simple task, but is turning into a nightmare. I have a program with an Access 2000 database, which needs to store an image into an OLE Object field, and then retrieve that image for a Crystal Reports report to display. I'm using an unbound form...

Part and Inventory Search

Back
Top