Search results

  1. maxmangion

    Display details in two subform

    Hi check this this how you should reference between forms/subforms Also note that in this line you have double exclamation mark
  2. maxmangion

    FE/BE Problem: Can't change field type in linked tables

    try re-linking the table in your FE.
  3. maxmangion

    Help with Dlookup

    you are welcome :) And welcome to the forums!
  4. maxmangion

    Help with Dlookup

    probably the line causing the problem is this: lookup_ref = DLookup("[Ref]", "working days table", "[working_day] = start") try lookup_ref = DLookup("[Ref]", "working days table", "[working_day] = '" & start & "'")
  5. maxmangion

    Question Compile error appears after running security wizard

    Hi, goto tools -> references and make sure you have the reference Microsoft Office XX.X Object Library checked. XX.X being the version of your access database
  6. maxmangion

    How do I bypass "switchboard" menu

    try hitting the F11 key and it should display the database window.
  7. maxmangion

    Avoid repeating code

    if you create a sub in a module and place your code there then all you have to do is on the OnMouseDown event put Call YourSubName
  8. maxmangion

    Subform COntrol

    check out this link how you should reference forms/subforms.
  9. maxmangion

    Question New Record Button Disabled

    You should check with this other person as probably he disabled the button on purpose until some criteria is met to enable it.
  10. maxmangion

    Pat Hartman Reaches 20,000 Posts

    Congratulations Pat and thank you very much for help and support.
  11. maxmangion

    Count Problem

    it could be a requery problem.
  12. maxmangion

    Displaying more than 1 Coloumn in Combo Box

    that happens because probably your combo is "bounded" to just 1 column. If you would like to display the other fields why don't you do that at query level by joining the lookup table in your query. Also you can populate them via a dlookup, however, it is less efficient than the query method.
  13. maxmangion

    Displaying more than 1 Coloumn in Combo Box

    if the fields are already in the combo box then you should set the column count property to 3 and set the width property as well.
  14. maxmangion

    Erasing Data

    you can go to the form properties and set the "Data Entry" property to Yes
  15. maxmangion

    Comparing columns to find mistakes

    It means that calculated fields are not meant to be stored in tables. You should create a calculated field in your query and then do the math there i.e. your new field would be: NewField: [IDTo] - [IDFrom]
  16. maxmangion

    a query within a form and i will like to export to excel

    try searching for the DoCmd.TransferSpreadsheet method.
  17. maxmangion

    Can i clone a record from a table ?

    not sure why you want to do this, but you can create a button on a form and from the wizard choose the "duplicate record"
  18. maxmangion

    table or extra field

    Thank you very much for all the feedback. Actually my original post wasn't related to a particular database i am working on, but i was wondering what approach other developers take in such circumstance. Once again, thank you.
  19. maxmangion

    Ms Outlook Reading Pane

    i perfectly agree with you. Once again, Thanks
  20. maxmangion

    Ms Outlook Reading Pane

    creating the shortcut and entering the target manually did the trick :) i wonder why in the outlook help file it says: Thanks Minkey
Back
Top Bottom