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 bkrike 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: mystuff
  • Content: Threads
  • Order by date
  1. mystuff

    Can a table be used as a filter on a form?

    Hi, Can a table (or query) be used as a filter on a form? The record source of my form has a Product ID. I have another table that also has a product ID. I would like to use the Product IDs in this second table as a filter to my form. I know I could join the 2nd table in the record source...
  2. mystuff

    Can I calculate a control name and test it?

    I don't know if this is possible. I want to use a "Do" loop to run thru a series of controls on my form. The controls are named ctrl1, ctrl2, ctrl3 ... ctrl20 etc. The controls are check boxes. So I am trying to loop thru to determine which ones are "True". I want to use a DO loop to...
  3. mystuff

    Open A form with a filter to be applied to its subform

    Hi, I have a question that may be a bit confusing. Can anyone help me? I have an unbound main form. The subform is bound to a table. I would like to open the main form with a filter to be applied to the subform. Actually, the filter is really another table with a list of IDs. (Does a...
  4. mystuff

    Query and Reports showing up behind form

    When I run a report or query, the result keeps showing up "behind" my form. My form is NOT model or pop up. Any idea why this is happening?
  5. mystuff

    Does Cascade Delete work after you Upsize Tables to SQL?

    I have upsized my tables to SQL. Now, a DBA is maintaining the production tables and I maintain the Access front end. Can relationships be set in Access to enforce referential integrigty to SQL tables? Or do the relationships have to be set within SQL. Also, with regards to "Cascade...
  6. mystuff

    Filter not working on Form bound to a Query

    I have a form that is bound to a Query. When I type an "Employee Id" (for example the number 42) in the criteria of the query, it pulls up 1 record and the form shows the 1 record and it works fine. But I when I try to use the Filter property, nothing happens ... I get ALL records (I do not...
  7. mystuff

    SQL Backend recordset error - 3622 and 3251

    Hi, I have code that works fine in Access 2002/2003 with an Access backend. But when I changed the Back-end to SQL, I am getting errors. Here is my original code: Dim rstSchedule As Recordset 'Add user to schedule Set db = CurrentDb() Set rstSchedule =...
  8. mystuff

    Move to a record

    This seems ridiculously easy, but I can't figure it out. I have a form with Workstation information (Key is WorkstationID). One of the fields in the record is EmployeeID. I have an unbound combo box (cboEmployee) for Employees (key is also EmployeeID). When the user selects and employee in...
  9. mystuff

    Extra Page Printing

    Hi everyone, I am working on a project plan. In the page setup I select "Fit to: 1 page wide by 2 page tall". This has been working fine -- the plan prints 1 page wide by 2 pages tall. All of a sudden, it is printing 3 pages, with the last task on the 3rd page. In Page setup when I change...
  10. mystuff

    Start Page Number at different number (other than 1)

    I have a report that will be inserted into other documentation. So I would like my report to start at page 9. Currently there are no groups. How can I do this?
  11. mystuff

    Change Column Headings property in Crosstab Query w/ VB

    Is it possible to change the Column Headings property in a Crosstab Query using VB? Thanks.
  12. mystuff

    Print negative values in red on Report

    Hi, Can anyone tell me how I would print a negative value in red and positive values will remain in black? Thanks
  13. mystuff

    Query Error Message - How do I hide it, or not display it.

    Hi, I have created a form that allows a user to enter an excel file name. The code imports the file into a table. Then a query joins the table to another table and then exports the results out into another excel file. When the join field (Project Number) is not in the original file, the...
  14. mystuff

    Update Query to update all fields from another table

    I have 2 tables that have an identical structure. I run 2 queries. 1 is an append to capture new records, the other is an update where I update every field. I have several tables that I need to do this for, but some of the tables have many many fields. I join the 2 tables and then in the...
  15. mystuff

    Write VB Code in Excel from within Access

    I am using VB Code within Access to format a spreadsheet. That is working fine. Then I manually go into the spreadsheet to add code to the “Open Worksheet” event. Here is what I do manually: 1. Open the spreadsheet 1. Right click a tab and select “View Code” (or press Alt+F11) 2. Under...
  16. mystuff

    Create a WORD Form to add data to Access Database

    Hi, I would like to create a Word form that a user will input data into fields and those fields will be added to an access database. I thought I could do a reverse mail merge. In other words, the user can input data into a form, and the data would be inserted into the database. However I...
  17. mystuff

    How do you run / launch / use Access Runtime?

    Hi, This is probably a stupid question, but I am using Access97, in a large corporation, and have been told that I have Access Runtime. However, I don't kow where to find it or how to use it. I have written an Access Application and would like to distribute it using Access97 Runtime...
  18. mystuff

    Can you change task dates without changing the dates of resources?

    When I change the Start and Finish dates of a task, the dates of the resources change automatically. Is there a way to change the Start and Finish dates of a Task without automatically changing the dates of individual resources? The reason I want to do this is as follows: I may have a person...
  19. mystuff

    Resource Hierarchy -- should I use groups?

    I have a question on how to design my resources. Our company has a hierarchy that goes something like this: TOWER DOMAIN BUSINESS FUNCTION TEAM BAY Instead of assigning "people" to each task/project on my Gantt Chart, I want to assign "bays" (so a bay can be...
  20. mystuff

    Close Report without Saving

    Can a report be set up so that when a user clicks the "X" to close it, that it does not prompt him to save it. It just closes without being saved? First I use this command: DoCmd.OpenReport "rptFlexible", acViewDesign Then, using VB, I populate a lot of the report based on selection criteria...

Part and Inventory Search

Back
Top