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 Mike Lewis 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. tschuler

    Object Reference to Opening Window

    OK, I figured out the problem. My dialog boxes are opened with the showModalDialog() method of the window object instead of the window.open() method. And, according to my JavaScript reference, the showModalDialog() method does not maintain a connection to the originating window via the opener...
  2. tschuler

    Object Reference to Opening Window

    I might add... if I delete from the code the 2 variable assignments at the start of the function and the 2 if constructs from the 'Handle_OK{}' function. The code for the entire page works without errors in Internet Explorer. (Of course, then I lose being able to set a new value on the Data...
  3. tschuler

    Object Reference to Opening Window

    Line 791 points to the line of code that begins: var RF_Obj = self.opener.... There is no "document.opener" anywhere in the code. I am not sure why the error message states it that way, because the code is "self.opener.opener.opener.document". That is the way the examples in my JavaScript...
  4. tschuler

    Object Reference to Opening Window

    I have code where a dialog box window needs to send data back to an opening window (3 back in the chain). This is my code: function HandleOK() { //window.alert("Close this window."); var RF_Obj = self.opener.opener.opener.document.DataEntryForm.RF_ComboBox; var MF_Obj...
  5. tschuler

    Selecting Text in a Table Cell

    Thanks everyone for the help. feherke's code snippet did the trick for Firefox. I must have done something stupid when testing for IE, because the code snippet for IE that I had in the original post does work.
  6. tschuler

    Selecting Text in a Table Cell

    The Trim function is in a piece of code that is commented out in the original post. The Trim function is my own function and it works perfectly fine. Also, the commented out code (the first 3 lines of actual JavaScript code) work perfectly fine. I commented them out, because they are not...
  7. tschuler

    Selecting Text in a Table Cell

    I have a page with a table of database records. In one of the table cells, I have an onclick event in the <td> tag that calls a function. <td onclick="javascript:GetText(this)"> What I want to happen is that when the user clicks on the cell, the text within the cell becomes selected. I...
  8. tschuler

    Need help organizing table data for a Combo Box

    I don't understand what I am to do with the information in your reply. Could you please add some more detail? How is that supposed to take the data from my tables and make the list I want in the Combo Box look like the list in my original post? I just started learning Access a few months ago...
  9. tschuler

    Need help organizing table data for a Combo Box

    I need help trying to figure out how to write a query to populate a combo box on a form. Here's the scenario: I have a list of parts that are kept in supply or available for order. The table holds the list of parts. There are columns in the table for the 'Part Name' and 'Part Number' there...

Part and Inventory Search

Back
Top