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

  1. NeeNee

    Dlookup() and Sum() not working on subform through terminal server

    I have a subform in Access 2007 running through terminal server. when we moved from 2003 to 2007, the DlookUp and Sum() functions stopped displaying the results on the subform until I either push F5 to refresh the sub-form or click on the actual text box. When I run the same application...
  2. NeeNee

    Modifying a subform in 2007 cause a data source error

    I have an Access project created in 2003 but now converted to 2007. I have a subform which has a query as record source. This query only joins 2 tables. I am required to add a new field to the query and the sub form, but as soon as I switch to form mode, I get the following error; "The...
  3. NeeNee

    Can't change form design in design mode

    I have a master form which list revenue records from our financial system. When you select a record, it opens an add/edit from. When I switch the from from Form View to Design view, I can't change the design of the form unless I also change the main master from to Design View. We just...
  4. NeeNee

    Requesting 2 different pages from the same default asp page

    That may be the case because I am using 2 different buttons calling the same javascript function window.open() with different parameters. Now each does open in different windows but neither will display the results until the longest running report is complete. This is frustrating when one...
  5. NeeNee

    Requesting 2 different pages from the same default asp page

    I am creating several Budgeting reports using asp. Each report is requested from a default page where parameters are entered, such a year and quarters. Now, each report is opened in a separate window using the javascript window.open command. Each window opens and generates the report properly...
  6. NeeNee

    Using only one radio button

    After much research, the error lied in a few instances where the dynamic asp would only put one radio button on the page because there was only one record, and in the HTML DOM, you can;t have only one radio button. The array length returns a Null and it is impossible to get the value of the...
  7. NeeNee

    Using only one radio button

    Sorry, but this is an HTML question. My ASP page is placing only one radio button and I need to know why one radio button is not working. Denis Programmer, Canada
  8. NeeNee

    Using only one radio button

    I am creating an ASP page which generates a dynamic number of records displayed on the page. The user selects the radio button for the record they wish to view and press submit. It works great when there are more than one radio buttons, but fails when there is only one. Why is that and is...
  9. NeeNee

    Form submits when pressing enter from text field

    Because we have a mixture of Cobol where the user has to press enter to move to the next field and web where the user has to press tab to move to the next field. We found that those users kept pressing enter before they were done completing a form. I don't use onsubmit. I place all my...
  10. NeeNee

    Form submits when pressing enter from text field

    I have a simple form with one text field and a button. Now the button uses the onclick event with javascript to submit the form because I did not want the users to submit the form when pressing enter, which is the case with submit buttons. If I do not focus on the text field and press enter...
  11. NeeNee

    Code not returning value from iFrame to parent page

    Thanks Dan, Where is a good site where I could learn more about DOM methods and syntax. I am new to javascript. Denis Programmer, Canada
  12. NeeNee

    Code not returning value from iFrame to parent page

    Thanks Adam, I had tried document.parent but not parent.document. Do you know where I can find explicit comparisons between FF and IE? Denis Denis Programmer, Canada
  13. NeeNee

    Code not returning value from iFrame to parent page

    I am using an iFrame to look up a course name and display the value in the parent page using Javascript. document.parent.frmCancellation.txtCourseName.value = 'CUISINE A LA CARTE 2'; Now this code works great in IE but I get the following error from the Firefox Error console; Warning...
  14. NeeNee

    New window opening maximized when opening window maximized

    Dan, it appears the problem is with my browser settings. I had a coworker try it on their machine and it opened properly. I then tried my application on a different pc and it also worked properly. So there really was no problem, but I can't find the setting in IE causing this. Thanks again...
  15. NeeNee

    New window opening maximized when opening window maximized

    Here is my code. Pretty straight forward. vWinCal = window.open("", "Calendar", "width=300,height=275,status=no,resizable=no,top=200,left=200"); I am testing with IE 6.0 on XP Pro and there are no errors. Maybe with some errors I may have been able to figure it out myself. Denis Programmer...
  16. NeeNee

    New window opening maximized when opening window maximized

    I am using window.open to open a popup window 200 by 300 and it works great when the original window is not maximized. But as soon as it is, it ignores the height and width parameters and maximizes the popup window. The resizable parameter is set to no. Denis Programmer, Canada
  17. NeeNee

    ASP SQL Efficient queries

    I was unsure where to ask. This is also about efficient use of database connections and recordsets. If I use one query or stored procedure, I am returning many rows with duplicate data. But if I use many simple queries, I am only returning the required fields. Denis Programmer, Canada
  18. NeeNee

    ASP SQL Efficient queries

    I am creating a customer display page which displays information from various tables with multiple rows returned. Is it more efficient to write multiple simple queries and query the database multiple time? Or write one complex query which queries the database once? Denis Programmer, Canada
  19. NeeNee

    Stopping the escape key from being pressed twice

    it is an unbound form and I don't want to save the record until the user presses the save button (for validation of some fields) As far as using the input mask with the area code in it. It is a good idea but, it is not possible to change the area code if it is embedded in the input mask, and...
  20. NeeNee

    Stopping the escape key from being pressed twice

    Thanks, it almost worked, but because I am using an input mask, the length is always 14. I am at a loss. Denis Programmer, Canada

Part and Inventory Search

Back
Top