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!

Recent content by keithcorbin

  1. keithcorbin

    How to use parameters as variables?

    First of all not true, you can define variables in many ways, including in an included basic file. In the fetch of the first query set the return that you are interested in to a variable. Use this variable in the second. good luck. K
  2. keithcorbin

    Range of data between two parameters

    It is not that hard....I recomend overwriting the obtainSelect method and appending the where clause you need. Your parameters should be set as global variables and all you need to do is write the dynamic where clause. If you need more help, email me I can send an example we do this very thing...
  3. keithcorbin

    Need help to create & e-mail PDF or HTML reports

    It is possible to frite a function in the finish method of a report that creates a pdf of the report. An easier method is to use a third party software solution such as RightFax.
  4. keithcorbin

    daily tip pop up

    Popping the tip on a specific page is easy. In order to know if the user has seen a specific tip before is more difficult, and would require cookies.
  5. keithcorbin

    Set a session variable using javascript

    <% Session(&quot;VarName&quot;) = Request.form(&quot;vName&quot;) %>
  6. keithcorbin

    onMouseOver Question - I hope there's an answer.......

    add this right after the <Script> tag var isFirst=True; Then in side the MM_popUpMessage fuction. if (isFirst) { then at the end of the function. } this is as basic as I can explain it....if you send me the code from <script> to </Script> I could edit and send it back...
  7. keithcorbin

    reload approaches

    Create a hidden form n the results page and and fill it with all the data from the post. At the end of the countdown timer, submit the form with the post data.
  8. keithcorbin

    how to validate ?

    On a text field change you can use the OnKeyUp and OnKeyDown events to trigger the validate.
  9. keithcorbin

    Frameset refresh

    If you click fresh on a frameset. It sends the user back to the initial html page that was in the main frame. How can I stop this?
  10. keithcorbin

    Form Validation - mixed elements

    The quickest simplest answer would be to have a fourth radio button next to the text box that automatically gats selected as soon as you enter text in the box. Keith
  11. keithcorbin

    Open new window, choose radio, send val to orig. page text box??

    try this opener.textfield1.value=&quot;blah blah blah&quot;;
  12. keithcorbin

    Close all Children

    I have a web site that allows the user to open and view reports in multiple windows, the requirement is for unlimited windows. However, when the user logs out of the site all the windows should be closed, cleaning up after them. I tried one method of creating an array and assigning each new...
  13. keithcorbin

    Parent wont load new window.

    I have fixed it for all interested, the first time I open the window the parent does have frames on the second click it does not. I end up setting the Parent name attribute on the first click and using that as a reference for window.open as you suggest after that. -Keith
  14. keithcorbin

    Parent wont load new window.

    I have a parent window creating a child that has multiple links. Each link should open in the parent window. This is working the first time, but the second time you click on a link the parent looks like it is opening (status at the bottom shows loading the correct page) but the page is never...
  15. keithcorbin

    Configure link name for Actuate.

    Use frames! That way you can hide the lengthy url from the user.

Part and Inventory Search

Back
Top