Recent content by wiltshire

  1. W

    Hyperlinks have stopped hyperlinking!

    Hi There, I have a documentation control system that I wrote in Access many years ago for my company. It has always workd very well, with a table populated with hyperlinks to a server drive that opens the documents when the user clicks on the button in the forms views. Today I have had a user...
  2. W

    how to refresh subform after another subform event !

    sorry, don't need gotocontrol , just use REQUERY and put the name of your subform as it appears on your form, not it's actual name i.e. right click on the subform in your form's design and look at the name it's called, then use this
  3. W

    Showing hidden combo boxes

    sorry - I can do most things with databases, but never learned VB so I do it using macros, hopefully someone else out there can help with the VB code !! Good luck
  4. W

    how to refresh subform after another subform event !

    use GOTOCONTROL to select the second subform then use REQUERY to refresh the data in it
  5. W

    Going from Parent to One Record in Full Recordset

    I do this using a macro - but you may know how to do it in VB choose the record in form one, then, on click of a button, run a macro that opens the second form, then in the actions column of the macro use GOTO CONTROL to go to the appropriate field on the second form, then FIND RECORD to go to...
  6. W

    how to refresh subform after another subform event !

    In the settings of the first subform, use the 'on change' setting to point to some VB code or a macro that requeries the second macro, and Bobs your uncle !
  7. W

    Showing hidden combo boxes

    you could have some code attached to the form so that, on change of the record, or initial load, it looks at each combo box and only makes it visible if the value is not null. You would also need to have settings for making it invisible if the value is null. That way, when you move between...
  8. W

    'Between...and' problems

    Just tried your suggestion and it works perfectly. Cheers !!!
  9. W

    'Between...and' problems

    your right - that sounds easier. Thanks for all of your help Steve
  10. W

    'Between...and' problems

    Sorry FoFa, the big penny just dropped. I suddenly realised what you meant by adding a day and taking a second off. I'll try that. Is this the only way, it seems a bit of a complicated way of looking at the date value of a date/time field?? Thanks
  11. W

    'Between...and' problems

    Thanks for the info FoFa. Adding one day would not normally cause a problem, but the data I'm working with is the quantitiy of failures within a production environment. The last thing I want to do is panic the management team by double counting failures when two consecutive weeks are reported...
  12. W

    'Between...and' problems

    ok - next question - FoFa kindly explained that it's the time stamp I have that is casuing the problem with my query. How do I extract just the date part of the date/time field and still leave the result as a date? Thanks
  13. W

    'Between...and' problems

    Thanks FoFa, I'm with a colleague at the moment and we just realised it was the time stamp causing the problem but didn;t know why - your reply explains why Thanks for you help Steve
  14. W

    'Between...and' problems

    Hi There, I'm gettng really frustrated with a query that should be quite simple. I have a query that pulls out data from a table based on user inputs for 'start date' and 'end date'. This is done using the "between [Start Date[ and [End Date]" function in the query. This sounds simple enough...
  15. W

    Returning to menu from different forms

    A simple way to do it would be to make all forms pop-up, these just open on top of each other. Then, when you close the top form down, the one below it will show.
Back
Top Bottom