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

  • Users: RWF
  • Order by date
  1. RWF

    <a href> not working with inner.html

    Not sure if quesiton is phrased properly. This code generates a popup and shows links. Nothing happens when I click on the link. <html> <head> <script language=&quot;JavaScript1.2&quot;> <!-- var isie=0; if(window.navigator.appName==&quot;Microsoft Internet...
  2. RWF

    &quot;Popup&quot; in frame too big

    Of course not what I wanted to hear. Nonetheless, an excellent answer. The response begs the question, is is necessary to have the div tag? And if not, would it then be possible to go outside the frame. The contents of the frame are a series of anchors in one TD cell, nothing more. Not...
  3. RWF

    &quot;Popup&quot; in frame too big

    I have a popup(not a window) that is too big to fit inside the navigation frame. I have no control over the frame itself, only the popup. Is it possible to &quot;float&quot; the popup outside the frame? If necessary, it would ok to have the popup appear in the main page assuming I could use...
  4. RWF

    ASP Form Values - Object expected

    Makes perfect sense. And after all this I believe the &quot;Object expected&quot; problem was caused by issuing a function call in the <BODY> tag &quot;<BODY onload=x()&quot;. Apparently not legal in an ASP file, or I did not construct the code properly. As soon as I removed the...
  5. RWF

    ASP Form Values - Object expected

    My bad qsac, I sent the wrong info. The .checked=true works as I found out later on. Nice catch though. lobstah, the error occurs sometime after/during when the function has been executed. The &quot;file stuff&quot; is not a problem. I left it there to indicate it is necessary to be using the...
  6. RWF

    ASP Form Values - Object expected

    The code is supposed to read through a server text file and set the check boxes on the client display accordingly. It doesn't like the following: Programx.asp ------------ <HTML> <HEAD> <script language=&quot;VBScript&quot; runat=server> <!-- sub ReadData() Const ForReading = 1 Dim fso...
  7. RWF

    Form Multiple Button Submit - Call ASP Page

    The VBScript code does indeed work. After significant investigation I realized that the &quot;File Download Window&quot; problem occurs when I put in a path(e.g. &quot;C:\....&quot;) to an ASP file I want to load. No problem with HTML using that construct, but my ignorance precluded me from...
  8. RWF

    Form Multiple Button Submit - Call ASP Page

    Here you go: <!-- Main.asp --> <HTML> <HEAD> <script language=&quot;VBScript&quot; type=&quot;text/vbscript&quot;> <!-- sub doSubmit(x) Set TheForm = Document.forms(&quot;Formx&quot;) select case x case 1 TheForm.action=&quot;c:\Retal\Response1.asp&quot; TheForm.Submit case 2...
  9. RWF

    Form Multiple Button Submit - Call ASP Page

    Thanks phuctran, works fine. I did have to remove the semicolons from the INPUT though. I would have preferred vbscipt, but for my purposes this will suffice. I also noticed some errors in my code, and after fixing those, and placing the function in the head portion of the document, I copied...
  10. RWF

    Form Multiple Button Submit - Call ASP Page

    Thanks phuctran, works fine. I did have to remove the semicolons though. I would have preferred vbscipt, but for my purposes this will suffice. I also noticed some errors in my code, and after fixing those, and placing the function in the head portion of the document, I copied your code to a...
  11. RWF

    Form Multiple Button Submit - Call ASP Page

    The intent is to call an ASP page to perform a series of actions. I have tried numerous variations with no luck. The concept of submitting a form is clear to me, but calling a specific ASP to perform an action from within a form is not. Perhaps I am using the wrong approach in this, and may in...
  12. RWF

    Command Control in MSFlexGrid

    Haha! Most amusing! Now, perhaps one you can tell me how to get the button to show in the cell.
  13. RWF

    Command Control in MSFlexGrid

    Arrghhhh! I got here too late! Just after I took a break and sat down I saw it right away.
  14. RWF

    Command Control in MSFlexGrid

    I'va doen some research on this and I am fairly sure it is possible, but the exact technique is escaping me. I would like to place a command button in a cell in a MSFlexGrid control. This is a condensed version of what I have: ----------------------- Dim cmdViewTable As VB.CommandButton Set...
  15. RWF

    HTML Preview

    I would like to open a view window for html files in a form. Any suggestions?
  16. RWF

    VB 6.0 Properties Window

    Most disappointing. I got spoiled with VFP, which shows all the properties. Maybe I can make a copy of the help file and prune it down to just controls. Thanks anyway.
  17. RWF

    VB 6.0 Properties Window

    Any way to display both design time AND run time properties for controls in the properties window?
  18. RWF

    Validation By-Pass

    Thanks to both of you, and almost, but not quite. The reason for this request is to allow a user to <Esc> out of any field containing a validation. As far as I know, NO other event, with the exception of ON KEY, can occur before the validation event. Remember I am in the control and the next...
  19. RWF

    Validation By-Pass

    The Search is down, and I did check the FAQ. The Valid method appears to be somewhat of a trap to get out of. It is readily obvious that each validation could be adjusted, or the valid code could be placed in the LostFocus method, but I would prefer a more elegant solution. I would like to be...
  20. RWF

    Foxpro 2.6 Window Icons

    I appreciate your answer Rick, however, I specifically stated in my question I do not want the information relating to &quot;Windows Style&quot; in the Screen Designer. Once again, I want to change the icon in the Title bar of the open window. This cannot be done through Foxpro.

Part and Inventory Search

Back
Top