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 dencom 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: *

  • Users: steveB2006
  • Content: Threads
  • Order by date
  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

    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 {...
  3. 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
  4. 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...
  5. 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