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 TouchToneTommy 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: buzzt
  • Order by date
  1. buzzt

    select first instance

    Thanks a lot!
  2. buzzt

    select first instance

    How would I select only the first instance of each result? In other words, if there was an 10 events taking place 3 times each in the date range specified, how could I get the db only to give me first instance of each distinct event?
  3. buzzt

    Virus problem

    My bad... I just noticed that it's XP Home - sorry. Any ideas?
  4. buzzt

    Virus problem

    I have a very annoying problem. I have a friend's windows xp pro box that had (are you ready for this?) 2712 infected files on it. I was unable to log into the system normally, so I restarted in safe mode. After running a system cleaner (which I have used many times on it before) to remove the...
  5. buzzt

    Javascript + PHP

    I need to capture the values for screen height and screen width and assign them PHP variable names ($width, $height) without reloading or submitting the page. Can I do this?
  6. buzzt

    Subtract times

    I have what I thought would be a very simple question. I want to subtract a time in my database from the current time, and get a difference in minutes. What is the most concise and efficient way to do this?
  7. buzzt

    Modem/ Ethernet Simultaneously

    I posted this in another forum also (which will no doubt anger the moderators - SORRY) but I did not know where to go... I have a problem. I need to be able to use an external dial-up modem to connect to a remote application, but I also want to maintain my internet connection through the LAN on...
  8. buzzt

    Simultaneous Modem and Ethernet Connections

    BTW... Sorry if this is the wrong forum for this post. I just could not find one closer.
  9. buzzt

    Simultaneous Modem and Ethernet Connections

    I have a problem. I need to be able to use an external dial-up modem to connect to a remote application, but I also want to maintain my internet connection through the LAN on the same workstation. Even when I specify the DNS and gateway (even though they are assigned by DHCP), as well as select...
  10. buzzt

    'event' is null or not an object

    I fixed it. Here's what I ended up with (in case anybody ends up in a similar situation): <script language="JavaScript" type="text/JavaScript"> <!-- var formWin = null; function openFormWin() { if (document.form.formfield.value=='') { alert("Enter search criteria")...
  11. buzzt

    'event' is null or not an object

    Well, that stops the error, but the window still opens. I need for the script to just stop everything when that alert comes up.
  12. buzzt

    'event' is null or not an object

    Anyone else have an idea?
  13. buzzt

    'event' is null or not an object

    Now it's 'window.event' is null or not an object. ??
  14. buzzt

    'event' is null or not an object

    Why do I keep getting this error? The script works, but there is still this error. Here is the script: <script language="JavaScript" type="text/JavaScript"> <!-- function formval() { if (document.form.formfield.value=='') { alert("Please enter your search.") event.returnValue=false; } } var...
  15. buzzt

    Edit row in flat file

    Works! Finally... I'm just curious though, the array_splice() seemed quite promising. Could I have accomplished the same with it?
  16. buzzt

    Edit row in flat file

    Close... but it doesn't take the place of the existing row. It re-writes the first row. Also, even though is rewrites the first row I always get this error: Warning: split(): REG_EMPTY in FOLDER LOCATION on line 83
  17. buzzt

    Edit row in flat file

    On submit; $edid replaced by $edid //I should have named this differently $edqrow replaced by $edq $edarow replaced by $eda in array $edrow
  18. buzzt

    Edit row in flat file

    So here's my form. What am I doing wrong? <? if ($ed != "") { for ($i=0; $i<$num; $i++) { $edrow = explode("|", $count[$i]); if ($edrow[0]==$ed) { $edid = $edrow[0]; $edqrow = $edrow[1]; $edarow = $edrow[2]; } } ?> <form name="ed" method="post" action="add.php"> <input name="edid"...
  19. buzzt

    Edit row in flat file

    But how would I do this?
  20. buzzt

    Edit row in flat file

    Oh well... I can just edit the text file manually then. Thanks.

Part and Inventory Search

Back
Top