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 Chriss Miller 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: tyhand
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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"...
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. tyhand

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

    Hey all, I'm writing a small program that requires enough flexibility to hold over 20,000 lines of text/data in each Text Box field. So far, I'm using plain Textboxes for this; but unfortunately I keep getting Overflow Errors with anything over 1000 lines of text/data. I'm wondering if...
  9. tyhand

    Where are the Outlook 2003 Personal Folders Located on a Machine?

    Hey all, Anyone knows where I can find the Outlook 2003 Personal Folders (and all others I created) on my machine? I used to use Outlook Express and all the folders I created where located in a directory named "Identities". For example,... C:\Documents and Settings\User\Local...
  10. tyhand

    Cron Script to Delete Folder Automatically?

    Hey all, Anyone know of a good standard script I can use to run a Cron Job to delete a folder on my site automatically on a daily basis? If not, can anyone recommend a good resource for me to learn some basic Unix scripting for me to accomplish this task? Thanks all! - Thank - You - Have - A...
  11. tyhand

    Upgrading From Office 97 to Office 2003...

    Hey all, I'm upgrading from Office 97 to Office 2003. Yes, I know - I'm ancient... Anyway, I have MS office 2003 professional - the Full Version. 1) Do I need to completely Uninstall Office 97 in order to install Office 2003? 2) I use Outlook Express for email. Will I be able to migrate my...
  12. tyhand

    Getting Country Name or Code for a Referer

    Hey all, Anyone know how I can get the country name or code for a referer using php? I wrote the following code to get the country name where a referer is from, but I keep getting a FATAL ERROR. // get country name location of host $refer = parse_url($_SERVER['HTTP_REFERER']); $host =...
  13. tyhand

    How to Get Rid of Windows Pop-up Notice for CSRCS.EXE

    Hey all, I recently ran my Antivirus program (Avast) and it found a Trojan? - CSRCS.exe I got rid of it by moving it to the Avast Virus Chest; but now everytime I start up my computer, I keep getting a pop-up notice that reads: "Windows cannot find 'csrcs.exe'. Make sure you typed the name...
  14. tyhand

    OK to Delete Files/Folders in "TEMP" Folder or ".tmp" files?

    Hey all, Is it ok to delete all those files and folders usually found in the "TEMP" folder? I'm talking about the folder in... C:\Documents and Settings\UserName\Local Settings\Temp This folder has files that end in ".TMP" and ".LOG" and others like ZIP files and even some DLLs. While...
  15. tyhand

    PestPatrol Quarantine Folder - Safe to Remove?

    Hey all, I'd like to know if it's safe to remove a folder named "Quarantine" that's found under PestPatrol in my Program File folder (C:\Program Files\Common Files\PestPatrol\Quarantine) Here's the thing... every time I scan my PC with Avast Antivirus v 4.8, Avast keeps saying it can't scan...
  16. tyhand

    Anyone Having These Issues Since SP 3 Update

    Hey all, Ever since the XP SP 3 update, my PC hasn't been the same. I constantly get the BSOD. It now takes about 10 minutes for the darn thing to start and sometimes even longer for it shut down. I remember after the update that I got rid of NAV 2008 and installed Avast anti virus v 4.8 Home...
  17. tyhand

    Htaccess to Run a Script, Then Redirect?

    Hi all, Don't know if this is possible but... is there a way to have an HTACCESS File run a javascript code and then redirect to a new page afterwards. Basically, I'd like to have my htaccess file read and run a snippet of code on a javascript file, if possible. Then afterwards, to redirect...
  18. tyhand

    Adding 1 Hour to Current Time Using Date Function

    Hey all, How can I add 1 hour to the current time in PHP? I'm using the date function. Example: $omydate = date("Y-m-d H:i:s"); What I want to do is add 1 hour to the "H". So whenever the code parses the date, it will always be the current time plus 1 hour. If current time is 14:25:30, I...
  19. tyhand

    How to get current date & time from visitor's machine or location

    Hey all, I'm using the date() function to get and echo the current date & time when a visitor comes to my site. However, I noticed I'm not getting the desired results. What I want to do is echo the current date and time on web page - so no matter where a visitor is located, his or her current...
  20. tyhand

    Is It Possible to Align Contents in a Frame?

    Hey all, What I'm trying to do is get the an image that is located in a frameset on the bottom half of a page to align with an image on the top half. Just follow me here a sec... I have 2 Framesets - one on top and one on bottom of a web page (the 2nd is embedded in the 1st one). The top...

Part and Inventory Search

Back
Top