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 SkipVought 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. AlexMidd

    Tearing my hair out - Coldfusion/Apache problem

    OK, cancel that. It is now working. I haven't a clue why, but it is working. I used the computer name in the URL instead of localhost. Have fun! :o) Alex Middleton
  2. AlexMidd

    Tearing my hair out - Coldfusion/Apache problem

    I have searched high and low for a solution to this problem with no luck, although it seems to be a common problem. I have installed Apache server 2.0.59 and then Cold Fusion 6.1. When I go to view any .cfm file in the browser I just get asked if I want to save the file, and yet .html files are...
  3. AlexMidd

    Query from preselected items in form

    If you need criteria for different fields, are they "OR" or "AND"? This determines where on the grid you have to put the criteria. Some idea of the logic and requirements that you are trying to achieve might be of help. Have fun! :o) Alex Middleton
  4. AlexMidd

    microsoft access print options

    OK, I take it you know how to add a tabbed window to your form and how to set up the report and you just need to know how to programme a control to display/print the report? Have fun! :o) Alex Middleton
  5. AlexMidd

    Using WHERE in dcmd.openreport

    What is the relationship between the tables and how is the boolean value calculated? Have fun! :o) Alex Middleton
  6. AlexMidd

    Over flow results in a query

    IIf([AVERAGE DEMAND]=0,0,[AVERAGE DEMAND]/20) Have fun! :o) Alex Middleton
  7. AlexMidd

    This is probably easy..but I can't figure it out!

    One table for customers containing all the customer details and a unique identifier as the primary key, and another table for the product details with a unique product id as the primary key and a field to contain the customer id to act as a foreign key. You can then pull out products for...
  8. AlexMidd

    On Click button - on a specific spot in a photo

    Glad to have been of help. Have fun! :o) Alex Middleton
  9. AlexMidd

    Security schema and Split Database

    You will ned to relink the back-end to the security (.mdw) file that contains the user-level security data. Have fun! :o) Alex Middleton
  10. AlexMidd

    Summing calculated text boxes

    You might need to create a field in your query for the form, which calculates the same result as txtBalance, then set the control source for the textbox in the form footer to that field. Have fun! :o) Alex Middleton
  11. AlexMidd

    On Click button - on a specific spot in a photo

    How's about putting a button on the picture, setting its size to tha same as the doors, and its Transparent property to true? Have fun! :o) Alex Middleton
  12. AlexMidd

    How To Use Data In User Input Form

    Create a report from the query then open the report using code in a button as follows: Dim Condition as String Condition = "[Field1] = '" & [Forms]![Form1]![Combo1] & "'" DoCmd.OpenReport "Report1", acViewPreview, , Condition Replace "Field1" with the field used to filter the table and...
  13. AlexMidd

    How To Use Data In User Input Form

    Set the table or a query based on the table as the form's Record Source. You can then use this table or query or create a new query for use in the report. Have fun! :o) Alex Middleton
  14. AlexMidd

    subreport in report footer (Access 97)

    Agency name should probably be in a group header for the agency field, rather than the page header. Have fun! :o) Alex Middleton
  15. AlexMidd

    creating a subreport in Access?

    Not sure what you mean by "two sub reports in one". You can have as many sub reports within the detail section as you wish, but to work correctly they need to be related to a table that the main table for the report has a one-to-many relationship with and link the master/child fields on the...
  16. AlexMidd

    Combining Rows

    Select the "Group By" button (Greek Sigma symbol in toolbar) in the query for the report. This will put any identical rows into one record. Have fun! :o) Alex Middleton
  17. AlexMidd

    "Next Record" button not advancing through subform records

    Do you mean the relationships as in the relationships between the tables or do you mean the Link Master/Child fields in the property tables of each subform with the main form? Have fun! :o) Alex Middleton
  18. AlexMidd

    "Next Record" button not advancing through subform records

    Do you have link master and child fields set up correctly in each subform? Have fun! :o) Alex Middleton
  19. AlexMidd

    Print a report for single record

    Create a report exactly the same as the form, with all the same subreports as subforms, and the same query in the report. Create a button on the form and put your version of the following code (example only) in the On Click event: Private Sub Button1_Click() Dim Condition As String...
  20. AlexMidd

    Alternatives to Data Access Pages?

    The easiest, but not necessarily the cheapest, way is to use Developer Edition. Not sure of the prices. Web front-end will take a lot of work. Data Access Pages, I would agree, are not very good. Have fun! :o) Alex Middleton

Part and Inventory Search

Back
Top