Search results

  1. E

    Like Operator to include null values in Search

    Try: iif(Forms!myform!SearchBox = "",True,mytable.TextField is like Forms!myform!Searchbox & "*") Then set criteria to 'True' When search box is empty all records are passed, otherwise they are compared with Textbox Evan
  2. E

    Sub Query produces an editble recordsource?

    I thought that if you use a subquery you can't have an updatable query. This has always been true for me. But now I have a query that includes a subquery among its source tables and it is fully editable. Now I'm wondering if this is just a fluke, or if there is some logic behind it? Thanks...
  3. E

    12 Checkboxes vs. 1 Bit Flag thingie

    gemma, I think I am pretty much on target with your post. I have all these tables: suppliers - to hold suppliers products - your products purchase_orders - the general order details purchase_order_items - separate items for each order purchase_order_deliveries - consignments for each...
  4. E

    12 Checkboxes vs. 1 Bit Flag thingie

    How to deal with Status Here's what i've got so far: (these orders for materials and supplies - placed by employees in a manufacturing facility - no customers involved) TBL_REQUEST Pending Requested Authorized --OnHold --Canceled ------------------------------- TBL_ACTUAL Processed Confirmed...
  5. E

    Formatting issues with Excel from Access VBA

    Another way to figure things out in Excel is record a macro, then look at the code. Evan
  6. E

    Cannot refer to form controls after coded change to acDesign and back to acNormal

    I would guess that when you switch to design mode, that instance of the form goes dead, when you switch back you are not talking to the new instance, but to the old dead instance. Evan
  7. E

    12 Checkboxes vs. 1 Bit Flag thingie

    Banana, I think i do need to have 2 different tables - Request and Actual. In OrderRequest i store: OrderRequestID ItemID Quantity JobName OrderedBy AuthorizedBy DeliverByDate OrderActual stores: OrderRequestID ItemID Quantity SupplierID ShipMethodID DOA OrderActual has the potential...
  8. E

    12 Checkboxes vs. 1 Bit Flag thingie

    I'm wondering if you guys have any thoughts on this: tblOrderRequest stores original order as requested by user. I can easily create a separate status table as suggested above. But, when filling the order sometimes a substitue item must be used, and other times the order must be split across...
  9. E

    Contain link to access record in email

    Perhaps. They are already being sent an email, so I would just like the email to include a link to the record - that way 1 click will bring them to the correct spot.
  10. E

    12 Checkboxes vs. 1 Bit Flag thingie

    I think you are both right. The more I think about it, the more un-normalized I realize it was. The seperate Status table would also provide a trail for the order, and allow the status to take steps backwards, etc... datAdrenaline - the bitwise procedures you post will be very helpful...
  11. E

    Contain link to access record in email

    When something is wrong with an order, my database generates an email to the purchasing manager, saying: Such and such is wrong with this order, etc... Is there any possible way to include a link in the email, that when user clicks will pop open access, load the correct form and goto the...
  12. E

    12 Checkboxes vs. 1 Bit Flag thingie

    I've got an ordering database and I keep adding more and more checkboxes to the Orders table... Authorized,Processed,Confirmed,Shipping,Received,CheckedIn, RedFlagged,BackOrdered,etc... I also have a StatusField where I store a calculated value - giving the Order's current status in a...
  13. E

    suggestions?

    Just wondering what solution you ended up going with on your material list database? I originally made a seperate table for each category, but my database quickly got oudated as we were continually adding new products that didn't fit any of the existing tables. I have since implemented a new...
  14. E

    DAP is a losing horse? What to replace it with?

    I was planning on creating a Data Access Page for my boss. This way he could double-click and see a spending report for the month. After a bit of reading, it is apparant that DAPs are a failed experiment. What appealed to me about them was the ability to view a live report in a web browser -...
  15. E

    Popup form does not use Activate Event

    I learned from the tip in Access Help that by setting a form to popup it would not maximize when all other forms were maximized. This is why i wanted to set it as a popup - not because I wanted it to be on the top. It looks like I will have to forego using it. Thanks, Evan
  16. E

    Popup form does not use Activate Event

    I switched a form to popup, and suddenly the OnActivate event does not fire any more. When I switch it back it starts working again. Is this normal? If so, is there any easy way around this? Thank you, Evan
  17. E

    "Distinct" Query that is NOT read-only

    Yes, dlookup/elookup or dcount could work - but very slow. Hoping for a solution that stays within the SQL framework. Evan
  18. E

    "Distinct" Query that is NOT read-only

    I have 2 tables with a one to many relationship - tblItem and tblItemStock, respectively. I need to have an editable query based mostly on fields from tblItem. I would also like to have a yes/no field* that shows whether or not there are related records in tblItemStock (whether the item is a...
  19. E

    Any way to ctrl-DoubleClick

    I've got a subform that I use an half a dozen forms. The double-click action perform a task specific to each parent form. I would like the ctrl-doubleclick to do a single global task. Evan
  20. E

    Any way to ctrl-DoubleClick

    I was intending to use the ctrl-doubleclick to open a form - that's all. But, a right-click menu might be nice. Thanks!
Back
Top Bottom