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 SkipVought 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: modalman
  • Order by date
  1. modalman

    window.open() called from a dropdown list

    Works fine for me in ie6. What browser are you using? ASCII silly question, get a silly ANSI
  2. modalman

    Asus P4P8X motherboard wont post

    Thanks guys. Would the board still beep if there was no CPU installed or if the CPU was faulty? ASCII silly question, get a silly ANSI
  3. modalman

    Asus P4P8X motherboard wont post

    Hi. We have just tried our 2nd brand new P4P8X board and it still doesn't post. All we get is the green power light on the board. No fan or drive power. No power light on the case. We have tried 2 PSU's and different memory. We have also bypassed the power switch using a jumper. Still nothing...
  4. modalman

    Check that an item i selected

    Aha, didn't realise it was a >1 sized select box. The selectedIndex will be -1 if nothing is selected. Try this: function PreviewItem(){ if(frm.tid.selectedIndex>=0){ previewframe.window.location.replace("set_template_preview.asp?ID=" +...
  5. modalman

    Check that an item i selected

    frm.tid looks suspect. Could you show the scripting that sets the object 'frm'? ASCII silly question, get a silly ANSI
  6. modalman

    Reset Button

    I've pasted the html below with the extra form tags removed: <html> <head> <title>WEB REQUEST</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#D8D8D8"> <FORM METHOD="POST" ACTION="http://www.name.com/cgi-bin/mailto"> <INPUT TYPE="HIDDEN"...
  7. modalman

    Check that an item i selected

    This will check for the null value in JS. Hope I'm on the right track: function PreviewItem(){ if(frm.tid.options[frm.tid.selectedIndex].value!=''){ previewframe.window.location.replace("set_template_preview.asp?ID=" + frm.tid.options[frm.tid.selectedIndex].value); } return...
  8. modalman

    Reset Button

    Make sure it is inside the form tags. It would be good if we could see your code. ASCII silly question, get a silly ANSI
  9. modalman

    Check that an item i selected

    I suppose you could set the top option text to 'Please select' with a value of ''. Your function can then check if the select element value is '' or not. If not then an option has been selected. ASCII silly question, get a silly ANSI
  10. modalman

    New window on Mac IE 5.2

    Hi, I've written the code below to open a new window. However on a Mac running IE5.2 the window height seems to be ignored and is less than half of what it should be. This is a problem especially as I need the scrollbars disabled as well. My code is: myWin4=window.open("myPage.asp"...
  11. modalman

    Java error on Mac

    Hi. I've written a Java applet that works fine on pc's but when viewed on a Mac with IE 5.2 it returns this error: java.security.Access Control Acception; Access denied. Does anyone know what this means and how to overcome it? Many thanks in advance. ASCII silly question, get a silly ANSI
  12. modalman

    parseFloat?? parseDouble??

    Oops, here's the code: int weightAr[] = new int[stringtokenizer.countTokens()]; for(int i = 0; i < weightAr.length-1; i++) weightAr[i] = (int)Integer.parseInt(stringtokenizer.nextToken()); ASCII silly question, get a silly ANSI
  13. modalman

    parseFloat?? parseDouble??

    Hi. I have a string that contains delimited ints and floats and these are converted and read into an array. It works fine until a float appears, then I get the numberException error. I have tried casting etc but to no avail. I only need ints in the array so I'm not worried about the fractions...
  14. modalman

    replace last instance of a substring only

    Try something like this: myStr=&quot;My dog chased this dog and that dog.&quot; targetStr=&quot;dog&quot; swapStr=&quot;cat&quot; ix=InStrRev(myStr,targetStr) If ix&gt;0 Then myStr=Left(myStr,ix-1) &amp; Replace(Mid(myStr,ix),swapStr) ASCII silly question, get a silly ANSI
  15. modalman

    Invalid bookmark error

    Hi. I have written a bunch of asp's to manage an Access database. It has been working fine until I had an 'Unrecognized database format' error appear on the webpage. After this the database becomes corrupt and unusable. Upon investigation using a back up database it seems that a loop that...
  16. modalman

    SHow and hide elements

    I'm not sure if you can do that with table rows. Try placing the customerID in a div and name the div instead of the row. ASCII silly question, get a silly ANSI
  17. modalman

    Stopping downloads from opening in the browser

    Hi, I need to set up some pdf downloads for a client. Is there a way of stopping the download from opening in the browser? Can they be forced to save the download as a file instead? Many thanks in advance ASCII silly question, get a silly ANSI
  18. modalman

    Can you crack this code?

    mwolf00 Meeble has said that maybe his friend has cut and paste this script from another site so its possible that multiple websites use it for validation. This could be any number from 2 to 100,000. Its probably highly unlikely though that anyone viewing this thread will come across one of...
  19. modalman

    Can you crack this code?

    First of all, I would like to credit all the programmers on this thread that have withheld the publishing of the password. It seems to me Meeble, that you have failed to grasp the ethical reasons why this has happened. Although you may be a very responsible, honest person and may even feed the...
  20. modalman

    Animated Gif in Powerpoint

    I have 97 and 2000. I've only tried on 97 though. ASCII silly question, get a silly ANSI

Part and Inventory Search

Back
Top