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

  1. billycat

    2008 DC containing FSMO roles in a 2003 function domain

    Any one have any idea if this is supported? Upgrading DCs and would like to go straight to 2008 x64, but am unsure whether or not this would be wise considering id be using one of these 2008 as the FSMO role holders.
  2. billycat

    Access VPN clients from the internal network

    Im curious as to if this is a simple routing problem, or if its just not possible altogether. I can ping the vpn clients (static address pool: 192.168.100.1 - 192.168.100.254) from the ISA server, but cannot ping from the internal network (10.181.8.0/21). Ive been adding all sorts of different...
  3. billycat

    Need help with Array

    $arr = $_POST['AG_LANGUAGE']; $num = count($arr); for($i = 0; $i > $num; $i++){ /* insert into DB */ echo $arr[$i]; }
  4. billycat

    form element coming up as undefined

    thats alot man! learning alot.
  5. billycat

    form element coming up as undefined

    ok so this is my attempt. var r1 = 1; function value(a) { a = r1 return r1 } then this is my radio <input type="radio" value="AND" name="R1" onClick="value(and); "><b><font size="1">AND</font></b> <input type="radio" value="OR" name="R1" onClick="value(or); "><b><font size="1">
  6. billycat

    form element coming up as undefined

    that is past my JS knowledge
  7. billycat

    form element coming up as undefined

    ok i got that working... now would i tell which one was clicked?
  8. billycat

    form element coming up as undefined

    I did that, and this.form.R1.value = undefined still.
  9. billycat

    form element coming up as undefined

    this is the radio <input type="radio" value="AND" name="R1" id="R1"><b><font size="1">AND</font></b> <input type="radio" value="OR" name="R1" id="R1"><b><font size="1">OR </font>
  10. billycat

    form element coming up as undefined

    what do u mean exactly?
  11. billycat

    form element coming up as undefined

    I have a radio button named R1 .. but when i call it, it comes up as undefined. <input type="button" class="formfield" value="submit" onClick="window.location=self.location.href.split('?')[0] + '?row=' + document.myform.mylist.value + '&value=' + this.form.values.value + '&set=1' + '&r1=' +...
  12. billycat

    onClick speed issue

    When the onclick occurs.. the popup page loaded in the function loads, and at the same time. the value of the text box changes. is there anyway to make the value of textbox change immediately, even before the popup page loads? <INPUT TYPE="text" NAME="values" value="" onClick="this.value =...
  13. billycat

    linking to self + passing GET variables..

    excellent, thanks for your help!
  14. billycat

    linking to self + passing GET variables..

    When i press submit, nothing at all is happening.. <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <SCRIPT LANGUAGE="JavaScript"> function testResults (form) { var TestVar = form.mylist.value; window.open('select_options.php?row=' + TestVar , 'child_window' ...
  15. billycat

    linking to self + passing GET variables..

    its not submitted at all, after i add the code as you wrote it.. im not good with JS, sorry.
  16. billycat

    linking to self + passing GET variables..

    what do i put inside the split(_)?
  17. billycat

    linking to self + passing GET variables..

    I have a form, when submitted, it passes GET variables back to self. If i then go ahead and select another form value, in the URL, the current GET values stay, and the new ones are appended to the URL. <input type="button" value="submit" onClick="window.location=self.location.href + '?row=' +...
  18. billycat

    href + onClick problem.

    Trying to have a link go to an external window named "somename" then close itself.. echo "<a style=\"text-decoration:none; color: navy; \" href=\"search_results55.php" onClick=\"javascript:self.close();\" target=\"somename\">"; }
  19. billycat

    PHP + Javascript problem. encoded variable, cannot decode

    BillyRay, Thanks much.. 3 days of headaches, fixed by quotes haha
  20. billycat

    simple window.open problem.

    Cannot get the code correct to open the window at a certain size. If i remove the width + height stuff, the window opens fine.. Would it be easier to use JS on the child window to specify size? <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <SCRIPT...

Part and Inventory Search

Back
Top