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. bigjohn99

    ComboBox Recordset Index Field Disappeared

    I have a picklist table which contains: PickKey, FieldA, FieldB A Form bound to a table which contains PickKey from above picklist table as foreign key. A combobox field on the form links to above picklist as row source with PickKey as Bound Column. This combobox field had been working for a...
  2. bigjohn99

    Imbedded IIF Query Statement

    Thanks PH! your way does work... Do you know why the other way does not work?
  3. bigjohn99

    Imbedded IIF Query Statement

    The qurey I ran is: Select FieldA from TableA where (TableA.FieldA = IIf([Forms]![frmFormA]![ComboA]<> "ALL", [Forms]![frmFormA]![ComboA], 'ALL') When I select an item, the query returns the correct item record set, but when I select 'ALL' it returns an empty recordset. (There is no SQL...
  4. bigjohn99

    Imbedded IIF Query Statement

    Hi PH, I must be running a different query when I tested it. When I tried it again and it still failed.
  5. bigjohn99

    Imbedded IIF Query Statement

    I just tried it and it works. Thanks.
  6. bigjohn99

    Imbedded IIF Query Statement

    Thanks PH. But 'ALL' is not an value in Field A.
  7. bigjohn99

    Imbedded IIF Query Statement

    Not sure why the following query failed: Select FieldA from TableA where (TableA.FieldA = IIf([Forms]![frmFormA]![ComboA]<> "ALL", [Forms]![frmFormA]![ComboA], ([TableA].[FieldA] like "*")) This query gets created dynamically in Forms.frmFormA based on FieldA's comboBox selection with...
  8. bigjohn99

    cntrl + a

    Evalesthy's post works! I was doing the same thing along the line accept I was not awared of the KeyPreview property. This is great! I also noticed that user can also select all records from Menu Bar --> EDIT --> Select All. The suggested code would not intercept it and Customize Menu Bar...
  9. bigjohn99

    cntrl + a

    While a form is opened, pressing on cntrl+a and then delete would actually all the records from the table that is bound to the form. Is this a hole in Access and is there a way to circumvent it? Thanks.
  10. bigjohn99

    Add new record in one to many recordset

    Thanks all for your suggestions. Great forum!!!
  11. bigjohn99

    Add new record in one to many recordset

    Hi Richard, This is just a simple database to track workload. Every hour on the hour the system generates an Unique number and all the workloads within the hour will be grouped by this unique number. As you see, the Unique number does not require any additional descriptions other than just...
  12. bigjohn99

    Add new record in one to many recordset

    Hi Richard, Thanks for the response! The linkage between these tables are set properly. That is why the viewing and scrolling through records are working okayed. The problem I am having is the Main Form has only one field which is USERID with AutoNum. When I am trying to add a new UserID...
  13. bigjohn99

    Add new record in one to many recordset

    I have 2 tables set up in a one to many relationship. Table 1 contains only one AutoNum field as UserID. Table 2 has 2 fields with UserID as Number and Datestamp as Date. (These are just simplified examples and the relationship between tables are set to cascade update and delete). I created...

Part and Inventory Search

Back
Top