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 Mike Lewis 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...

    It's not a browser issue... I have the problem with - IE - Firefox
  2. pascalxricher

    Div problem...

    Maybe it's a browser issue... Even with your example, i'm getting the error... - Click Date - Click From date - Click Date time The text field to the right, in the "date" section, doesn't disappear.
  3. 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 ...
  4. 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 ;
  5. pascalxricher

    ByRef Parameter

    Hi ! I need to know how to set a parameter "ByRef". Thanks !
  6. 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 ;
  7. pascalxricher

    Mysql - Loosing connections

    Does the max_allowed_packet solution will help for this problem ? 'Can't connect to MySQL Server on 192.168.1.134 (10055)' in my vb program... it just append sometimes, just like if I do too much query in a Do While. and If I enter in the debug mode, I do a Step Next, the query open well...
  8. pascalxricher

    On Error RETRY

    Hi! Is it possible to do a Retry on the line that caused the error in an error handling ?
  9. 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 ...
  10. 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 ;
  11. pascalxricher

    Data Corruption

    The utility FoxFix can fix dome dbf problem... Pascal ;
  12. pascalxricher

    Need help with mySQL triggers / stored procedures...

    it seems that the new version to come will support trigger... is it true ?!
  13. 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...
  14. 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