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 gkittelson 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. steveB2006

    Using defined types

    I am trying to implement a "struct" or user-defined type where I can implicitly name but cannot implement with the NEW keyword. I have resorted to an array structure Option Explicit Public Type InvoiceRecord ID as Integer invDate as Date End type Public Function loadStruct() Dim...
  2. steveB2006

    string joining in variable

    Thanks for the input. Yes Lee, your answer regarding the academic setting hit the nail on the head. Thanks again... steveB
  3. steveB2006

    string joining in variable

    I thought that using the break; statement in a loop was bad form?
  4. steveB2006

    string joining in variable

    The return 0 statement was breaking the entire script not just the loop. I simply substituted break; for return 0; and it works fine.
  5. steveB2006

    string joining in variable

    I am having trouble adding string values to a variable, also tried $ref .= $tmp; $ref .= $ref.$tmp; <== crashes apache $referer = $_SERVER['HTTP_REFERER']; $counter = strlen($referer); $ref = " "; $searchChar = "/"; for($i = 7; $i < $counter; $i++) //just get after http:// to first slash {...
  6. steveB2006

    MySQL ODBC driver hanging on connection

    Hi QatQat, I am just accessing MySQL tables internally using DSN to access the tables on the web server. Actually I did interface via MSAccess eventually but the DSN drivers seem to be having some issues. During setup if I click "test" the connection hangs. However I did manage to successfully...
  7. steveB2006

    MySQL ODBC driver hanging on connection

    I am running Novel with Apache2 if it makes a difference. steveB
  8. steveB2006

    MySQL ODBC driver hanging on connection

    I downloaded the MySQL 3.51 ODBC driver and it is hanging on connection for some reason. Is there a fix? I just want to get data from my web tables via VBA Cheers, steveB
  9. steveB2006

    default index extensions

    OK I did see that. will it be hierarchal pending on which extenion comes first? and what is index.html.var also I am guessing a restart will be necessary Thanks
  10. steveB2006

    default index extensions

    How do I get apache to recognize the .php extension so I can access the index by simply going to the domain name(www.somedomain.com) rather than having to qualify the the entire URL ie. www.somedomain.com/index.php php is working fine but I can only access the index if it has an .html...
  11. steveB2006

    table/recordset problem

    After building a form in php the MySQL table I was adding to quit accepting data entry on the 16th record. Now it is stuck however I was able to edit records. If I delete and rebuild the table it won't accept any new record entries. Not sure why this is? I recently shifted from ASP to PHP and...

Part and Inventory Search

Back
Top