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 strongm 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. tyhand

    How to prevent JQuery code from executing until JQuery souce is found

    Ok Got it. Read an article at hunlock dot com and figured it out. You were right after all. I was just implementing it the wrong way. Thanks again. - Jay
  2. tyhand

    How to prevent JQuery code from executing until JQuery souce is found

    Hey Vacunita, Thanks. Tested it a few different ways, but no cigar :( Still getting the "$ is not defined" error (as before). Very difficult cracking this nut; may have to go totally different route. Perhaps some one else may know. Thanks again.
  3. tyhand

    How to prevent JQuery code from executing until JQuery souce is found

    Hey all, I have the following code in an external JS file (ie: test.js); which creates an additional script tag pointing to a JQuery source if it detects that a JQuery source isn't already there. The code actually creates the script tag and inserts it before the actual script that's doing the...
  4. tyhand

    AMD Athlon 64 x2 Dual Core 4200 Keeps Overheating -- Solutions?

    Thanks guys! You guys rock! All the best, - Jay P.S. Right now, I have my AC on in the room, and my CPU Temp is at a cool 34 degrees Celsius. However, it just froze about 10 minutes ago at about 36 Degrees. So, I'm thinking Big Bad Ben is onto something. Thanks again!
  5. tyhand

    AMD Athlon 64 x2 Dual Core 4200 Keeps Overheating -- Solutions?

    Hi Dr Bob, Thanks for the reply. My BIOS is set to 72 degrees Celsius. That's the default setting. However, I have the Asus PC Probe II set to 50 degrees Celsius -- but that is just to warn me that the PC is heating up. I can have that set to 100 degrees Celsius and it wouldn't matter as...
  6. tyhand

    AMD Athlon 64 x2 Dual Core 4200 Keeps Overheating -- Solutions?

    I posted this over at the Windows XP forum, but thought it made more sense to post it here. My apologies for the multiple post. Original post is here: http://www.tek-tips.com/viewthread.cfm?qid=1657533&page=1 ********************************************************** Hey all! I'm running...
  7. tyhand

    Radio Button Onclick Event Requires Two Clicks to Fire on Firefox

    Hey all, Hoping someone has a solution to this weirdness on Firefox 3. I basically have 3 radio buttons and 3 text input fields (see following code): *input type="radio" name="group1" id="preloaded" value="preloaded_img" checked="checked" onclick="SetVals();" /* *input type="text"...
  8. tyhand

    How to Select Multiple Rows with Same "ID" from LookUp Table

    Hey R937, Thanks. First on got it. Best, - tyhand
  9. tyhand

    How to Select Multiple Rows with Same "ID" from LookUp Table

    Hey all, I have a lookup table that stores the IDs from two other tables as my database falls under the "many to many relationship" category. Here's the create table sql: $sql = "CREATE TABLE IF NOT EXISTS mylookup ( OID INT(11) UNSIGNED NOT NULL, LID INT(11) UNSIGNED NOT NULL, PRIMARY...
  10. tyhand

    Javascript Not Working On Page/Form Elements Returned by Ajax

    Hey Louisk2, Thanks for the reply. I pretty much forgot about it as I totally re-coded my project : ) At any rate, how does one go about "binding" the script? You say I have to run "jscolor.init()" -- but where do I do that? The script didn't mention anything about doing that. Do I just put...
  11. tyhand

    Javascript Not Working On Page/Form Elements Returned by Ajax

    Hi BigRed, Hey, Great Minds really do think alike! That's pretty much the same route I've taken. In my case, I just had AJAX via PHP return the values I wanted (just raw data, NO html or scripts). Then I used javascript to store and/or operate on those values. Would have been nice to figure...
  12. tyhand

    Javascript Not Working On Page/Form Elements Returned by Ajax

    Hi all, I have a page that's returning Form fields and values from a database (I'm using Ajax with PHP/MySQL; I'm also using JQuery framework). Everything works perfectly, except that for some reason, I am unable to execute javascript on the form's input fields. Specifically, I am using the...
  13. tyhand

    Problem Inserting Into More Than "X" Number of Columns

    Hey R937, You were write. Something was off with my code. I'm using AJAX and submitting variables for PHP to process. My ajax and javascript codes were returning Empty and Undefined variables and that was what was causing my the issue. Thank again for the help. Best!
  14. tyhand

    Problem Inserting Into More Than "X" Number of Columns

    Hey R937, Sigh... I'll look over my code again. I'm thinking there may be a clash with one of the variable's values and the column type. Thanks again for the help. Regards, - Tyhand
  15. tyhand

    Problem Inserting Into More Than "X" Number of Columns

    Hey all, Here's the complete CREATE TABLE CODE: (NOTE: The table always gets created successfully every time I install my script) $sql = "CREATE TABLE IF NOT EXISTS locker_settings ( ID INT(5) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, set_skin VARCHAR(25) COLLATE ascii_general_ci NOT...
  16. tyhand

    Problem Inserting Into More Than "X" Number of Columns

    Hey Andrew, I'm using MySQL 5.0.91-community, PHP 5.2.16 with Apache 2.2.17 Now, to be sure, the tables are successfully created upon my script's installation. The problem I'm having is with INSERTING data into one particular table that holds the script's settings. Thus, my PHP mySQL code...
  17. tyhand

    Problem Inserting Into More Than "X" Number of Columns

    Hey all, Hoping someone could help me out with this weird MySQL problem. I have a Table with 30 Columns/Fields. Whenever I try to run a query to insert data into it, nothing gets inserted. Even worse is that NO Errors are being generated. Originally, 13 of the Columns/Fields were of type...
  18. tyhand

    How to create a database from scratch with VB6?

    Thanks vb5! Read your comments on post #13 about how MS forgot to include CreateDatabase method -- funny : )) BTW, can you also recommend any online tutorials for database development concepts with VB6? Thanks again. - Tyhand
  19. tyhand

    How to create a database from scratch with VB6?

    Hey all, I'm trying to create an app with VB6 that requires the creation of a database, tables, etc. for a Windows XP environment and above AND regardless of whether or not the end user has MS Access. I've worked with databases before via PHP/MySQL so I know certain concepts. Also, my skill...
  20. tyhand

    Which holds more data: Textbox, Listbox, FlexGrid or Other?

    Hey all, Thanks for the replies. To be sure, I'm updating a program I wrote several years back when I was first learning vb6. Though my programming skills have improved over the years, I'm still sort of a newbie with vb6. The purpose of the program is to take large groups of words and...

Part and Inventory Search

Back
Top