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

  • Users: Micheal
  • Order by date
  1. Micheal

    Disabling the Print Icon on the Preview Screen

    Hi, I know how to take it off, if you were using ASP. WE can do that in the object tag of the CR Viewer. But I think u can help me out with something else that I'm facing. I happened to see another post from u in this forum, regarding printing labels. Label 2 was shifted down from it's...
  2. Micheal

    Radio button - OnClick

    You can still do it... To be efficient, you will have to load the image urls into the array taking care that the radio button's value and the array index match.. For a radio button value of '1', the image URL should be in imgArr[1] and so on. The code above will work for any no: of images...
  3. Micheal

    Radio button - OnClick

    rs.movenext happens at the server side and so may not be suitable for u... Since you are having only 10 images, you can load the image urls into an array on the body onload() function Then on the click event of the radio button, you can assign the urls appropiately. for e.g function...
  4. Micheal

    Transfering data in Form Fields to a new window

    You got from a form in one page to another on a different page by posting..right???
  5. Micheal

    Radio button - OnClick

    Consider the following <form name=frm1 action=trim.asp> <input name=radio1 type=radio value=1 onclick=&quot;radio_click(this);&quot;> <input name=radio1 type=radio value=2 onclick=&quot;radio_click(this);&quot;> <input name=radio1 type=radio value=3...
  6. Micheal

    Transfering data in Form Fields to a new window

    Hi, consider a form with a single text field <form name=frm1> <input type=text name=txt1> </form> In the second form (assuming that u are posting from the first form to the second form), you can get the value in txt1 using request.form (&quot;txt1&quot;) Additionally, you can have the...

Part and Inventory Search

Back
Top