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

    Ordered List - Indent Spacing

    LTeeple, thanks for the post, it does exactly what I wanted. Thanks again. Thanks TBlack.
  2. blackte

    Ordered List - Indent Spacing

    I have an list of items on a page and I would like to control the indent spacing of this list. currently displays as - 1. Sentence One 2. Sentence Two I would like to move it all over like this - 1. Sentence One 2. Sentence Two Thanks in advance for the help...
  3. blackte

    Alert w/keeping keyed values from form

    I a form that has some edits that are fired when the user presses an OK key at the bottom of the page. But my problem is when the alert box displays and the user presses the OK button on the box, it then redisplays the form like the refresh button has been pressed. I know why the screen...
  4. blackte

    Checkboxes / how to limit

    Darkshadeau, thanks for the info, I will be using the radio buttons instead of the checkboxes. This is more approperiate to the specific questions that I'm asking. Thanks again for all of your help. Thanks TBlack.
  5. blackte

    Checkboxes / how to limit

    Darkshadeau & wolf8769, I would like to use radio buttons, for the Yes, No answers to my questions, but the users want to be able to tab through the answers with the tab key instead of just using a mouse. I have read in places that if your radio buttons are name the same i.e. both the same name...
  6. blackte

    Checkboxes / how to limit

    I have checkboxes on a form, and would like to limit how many can be checked at once. example Yes, No question, if they check Yes, I don't want them to be able to check No also? Can this be done? I know this works using radio buttons, but need to use checkboxes. Thanks in advance for the help...
  7. blackte

    Report and Boxes/Lines

    I have an application where I print forms with boxes and lines, some use Border Width of 1 pt, others use up to 3 pt. These print fine when just sent to a printer. But I loose the lines and boxes when I try to export and save them in Rich Text Format. We are using Access 97 with Windows 2000...
  8. blackte

    Popup Window needs variable from Parent Window

    I'm working on an ASP page that has several popup windows associated to it. I would like to send a variable from the parent(main) window to the popup. Can someone point me into the direction of what I would need to do from both the parent window and popup. I'm wandering if a hidden variable...
  9. blackte

    New Window w/o actual opening a new IE window

    The answer to my question is below. Basically the action tag on the form statement was being fired everytime I pressed the OK button, so to override the action tag, I used the following command. document.OldPage.action = "NewPage.asp" Thanks Thanks TBlack.
  10. blackte

    New Window w/o actual opening a new IE window

    WCBurton, I have tried the response.redirect and it does not work. The issue becomes I think is that this code is in a sub routine inside of vbscript. Thanks for your help. Thanks TBlack.
  11. blackte

    New Window w/o actual opening a new IE window

    PHV, yes the document statement is within CSQRevAdj.asp. I have it coded within the if logic of a vbscript routine. Thanks. Thanks TBlack.
  12. blackte

    New Window w/o actual opening a new IE window

    PHV, CSQRevAdj_C.asp is an actual page that will display based on answers from the original page CSQRevAdj.asp. I'm setting on the original page CSQRevAdj.asp and press an OK button the will validate the answers, then I need CSQRevAdj_C.asp to display within the current window. I do not want...
  13. blackte

    New Window w/o actual opening a new IE window

    PHV, thanks for the help, but does not seem to change the window. It just redisplays the current window. Thanks for the help. If (CSQRevAdj.Q1(0).checked = False) Then msgbox("test") window.document.location = "CSQRevAdj_C.asp" End If Thanks TBlack.
  14. blackte

    New Window w/o actual opening a new IE window

    Mark, changed to use getobject, now getting a syntax error on the getobject statement. Thanks If (CSQRevAdj.Q1(0).checked = False) Then msgbox("test") set IE = getobject("InternetExplorer.Application") ie.navigate2 "CSQRevAdj_C.asp" End If Thanks TBlack.
  15. blackte

    New Window w/o actual opening a new IE window

    Mark, added the full path, still does not work. Added a message box to make sure that I'm getting into the if and the message box does display. Thanks If (CSQRevAdj.Q1(0).checked = False) Then msgbox("test") set IE = createobject("InternetExplorer.Application") ie.navigate2...
  16. blackte

    New Window w/o actual opening a new IE window

    Mark, attached is the code that I added, but did not work. Not sure if I'm doing something wrong. Thanks again for your help with this. <script language="vbscript"> <!-- Sub CheckAnswers dim IE If (CSQRevAdj.Q1(0).checked = False) Then set IE =...
  17. blackte

    New Window w/o actual opening a new IE window

    I have an asp application that I have several question pages on. Based on those questions, I will need to display another asp page. Within my "vbscript code" is there a way to link to another page without opening another IE window. Currently I have coding like If ..... Then msgbox("...
  18. blackte

    Multiple Selects with a ASP Page

    ggriffit, thanks, I found my the problem as you suggested with the sql statement. I did not realize it was talking about the sql statement, I thought it dealt with the set statement. Thanks again for your help. Thanks TBlack.
  19. blackte

    Multiple Selects with a ASP Page

    I have an asp page that I have two selects, the first is for paging using a cursor, the second is for building a textarea within the main page. The first select works just fine, but when I attempt to execute the second select I get an error message "No value given for one or more required...
  20. blackte

    Textarea Box and Record Set Value

    mwolf00, Thanks for the help, it fixed my problem. Thanks TBlack.

Part and Inventory Search

Back
Top