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 bkrike 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. pascalxricher

    Div problem...

    Hi, When I try the code below, if I do this sequence... - click on the radio button "date" - click on the radio button "From to date" - click on the radio button "Date time" The two input:type="text" don't disappear with the rest of the elements in the div section... why ...
  2. pascalxricher

    make a list with lists

    Hi ! I need to take a list like that : [ [ [1, 2], [3, 4] ], [ [5, 6], [7, 8] ] ] and this list must become : [ [1, 2], [3, 4], [5, 6], [7, 8] ] I know the concept that recursively I'll add element in an other list but I don't know how to implement it... Anybody can help me ?! Thanks, Pascal ;
  3. pascalxricher

    ByRef Parameter

    Hi ! I need to know how to set a parameter "ByRef". Thanks !
  4. pascalxricher

    PostGreSQL Performance ?!

    Hi ! I did not see any benchmark with PostGreSQL on the web... Does this database engine is better or not in comparison of SQL Server and MySQL, for the performance... Thanks, Pascal ;
  5. pascalxricher

    On Error RETRY

    Hi! Is it possible to do a Retry on the line that caused the error in an error handling ?
  6. pascalxricher

    Can't connect to MySQL Server (error)

    Hi, I run a VB program with a lot of query to the server and I get the error "Can't connect to MySQL Server". The error never append on the same query... Just like if I do to much query in a second... Does this error can be fix by a connection timeout and if so, how can I fix it ...
  7. pascalxricher

    VB 6 and VB.Net on the same PC

    Hi ! Is it possible to install Visual Basic 6 and Visual Basic .Net on the same computer and to work on a project with vb6 and to work on another project with vb.net ?? Thanks ! Pascal ;
  8. pascalxricher

    DBF and ADO

    Hi, I need to access to DBF databases with vb6 and I need good performance. I tried Something like Apollo Database Server but there is an error when I open more than 1 database at the same time... I also read that ODBC give poor performance with FoxPro databases... What do you suggess to me...
  9. pascalxricher

    Create a trigger with a SELECT inside

    Hi ! I need to create a trigger on DELETE on a table and raise an exception if a field of the deleted row is in an other table... I tried this but without success : CREATE OR REPLACE TRIGGER BD_Table1 BEFORE DELETE ON Table1 FOR EACH ROW BEGIN IF (:OLD.Field IN (SELECT Field...

Part and Inventory Search

Back
Top