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 Chris Miller 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. FGorilla

    MDB2 Database Class Query Results

    I indeed was being an idiot and it's all working now. Sorry about that!
  2. FGorilla

    MDB2 Database Class Query Results

    Hi I'm probably being incredibly stupid but nevermind. I've got a simple database class using MDB2 which has the following function. public function query($sql) { $_result = null; try { $this->connect(); $_result =& $this->_connection->query($sql); if (PEAR::isError($_result)) {...
  3. FGorilla

    Dataview questions

    Cjelec, Have you managed to find a solution to this? I have a similar issue relating to employees and their assignments but I want to find people in a particular job. The only way I've found to do it at the moment is to loop through the filtered child table recording the ID's in a string...
  4. FGorilla

    mdiChild Background Worker from mdiParent

    Well I've only just started .NET so wasn't quite sure what I was doing. Needless to say I have now removed the offending line! Many thanks for your reply, it works pefectly. I'm sure once I get the hang of all the intricacies I'll be fine, it's a little different coming from working with VBA...
  5. FGorilla

    mdiChild Background Worker from mdiParent

    Hopefully a relatively simple question but I can't seem to find the answer. If I start a backgroundworker on a child form and then want to check it from the parent form to see if it's running how would I go about it? I've tried calling Form1.BackgroundWorker.IsBusy() but regardless of whether...
  6. FGorilla

    Data from one database to another

    I have managed to find a solution which is what I've used. I was missing the little AcceptChangesDuringFill Copying data from one database to another
  7. FGorilla

    Data from one database to another

    Hi Hopefully someone can advise as to the best way to do this. I am new to VB.NET so am trying to get to grips with the best method for doing things. What I need to do is run a series of SQL queries on an Oracle database and then send the results of these to an SQL server database. I have...

Part and Inventory Search

Back
Top