Search results

  1. maxmangion

    Combo Box Question

    not sure if i understood your question correctly, but try searching these forums for "cascading combo boxes"
  2. maxmangion

    Calculate a Calculation

    you're welcome :)
  3. maxmangion

    Type Conversion Failure: Data Import

    i am on Access 2003 and on this version you do not need to select the data type, you only have to select the table and once you click ok, the data type for each field will be available on the report created.
  4. maxmangion

    Calculate a Calculation

    a possible solution would be to use the NZ Function i.e. NZ(MT, 0)+ NZ(TT, 0) etc
  5. maxmangion

    Type Conversion Failure: Data Import

    You can go to Tools -> Analyze -> Documenter, place a tick next to the table you wish and click ok
  6. maxmangion

    Validation on a combo box selection

    unfortunately i am still on Access 2003 but that property is usually found at table level, but once you set it there it will have effect on the combo box as well.
  7. maxmangion

    Validation on a combo box selection

    you can simply set the tutorialtype field required property to "Yes", and this will ensure that a value has been selected.
  8. maxmangion

    drop a DropDown with vba

    you can also try the F4 key.
  9. maxmangion

    variable table name

    Hi, To be honest i do not understand why do you have a table for each location and for each month. Could you explain better what are you trying to achieve as in my opinion it is time for some re-designing.
  10. maxmangion

    Happy Birthday CraigDolphin!

    Happy Birthday :)
  11. maxmangion

    Pressing tab highlight the entire contents of a field

    i agree with missinglinq, if you want this behaviour for your entire database then the Keyboard option is the ideal way.
  12. maxmangion

    Iif.......

    hi, check out this link
  13. maxmangion

    Iif.......

    The true part of the iif is certainly wrong ... what are you dividing the [Closing @ Cost] with? ... you need to have something before the "/" in the true part.
  14. maxmangion

    Iif.......

    in the true part of your iif statement you only have "/[Days]" so what are you dividing the [Days] with ?
  15. maxmangion

    Pressing tab highlight the entire contents of a field

    Hi, you can use the selstart and selLength properties.
  16. maxmangion

    vba emailing report & assigning file name

    you're welcome :)
  17. maxmangion

    Access 97 and Vista

    Hi check this link
  18. maxmangion

    View Text box based on combo box selection

    you're welcome and i am glad that you solved your problem. Just one thing which i would change is DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70 because with DoCmd.RunCommand acCmdSaveRecord
  19. maxmangion

    View Text box based on combo box selection

    you can put the code on the onCurrent event of the form as well, so that when you open the form and the first record is shown, based on the value in the combo the textbox will be visible or not.
  20. maxmangion

    vba emailing report & assigning file name

    stdocname is a variable name. Therefore you can either insert the filepath directly instead of the stdocname or else use the method explained in my previous post. Good luck
Back
Top Bottom