Recent content by gpurger

  1. G

    Finding itallics

    Hi, is there a way in excel 2000 to find if part of the information in a cell is in itallics or not. Cheers G
  2. G

    display message if field left empty

    Thanks for that G
  3. G

    display message if field left empty

    Hi, I am trying to notify users to fill a specific field in if they forget it and can not work out which event to use. Can you please help Cheers g
  4. G

    With Dialogs/ Word bookmarks

    Thanks, I only am trying to open the doc via Word because I can not find how to open it in Access. Remember it can have any name. Cheers for your help
  5. G

    With Dialogs/ Word bookmarks

    Hi, I am trying to let the user open a chosen word file. I can activate word but I am having problems displaying the 'Open Dialog' to allow them to choose. The file will be a Word .doc with bookmarks that I want to save to a table. Can anyone point me in the right direction please? Cheers
  6. G

    Hide Buttons

    Thanks for that
  7. G

    Hide Buttons

    Hi, Have tried but can not get it to work. I want it to react as I increment through the records. Code used is Private Sub Continuation_BeforeUpdate(Cancel As Integer) If Me![Continuation] = "hello" Then Me![BtnContinuation].Visible = True Else Me![BtnContinuation].Visible = False...
  8. G

    Hide Buttons

    Hi, I can hide buttons on a form but what I want is to hide/ show it when one of the fields has a specific value. Cheers Gordon
  9. G

    information from word

    I know thtat you can use word bookmarks to create a doc from access (can not remember how) but can you read bookmarks from word into a table? Cheers Gordon
  10. G

    Edit a Table Using VBE

    Are you using this in an access environment or is it exported to an other environment
  11. G

    Property Let/ Get

    Thanks for that Gordon
  12. G

    Property Let/ Get

    Hi, I am trying to use the property let command but I do not know how or where to call/ insert it. I have a list and want another module to use the result. Code as follows With UserForm1.ListBox1 .RowSource = "" .AddItem "Class and Operation data" 'Adds item to the userform list End...
  13. G

    Reports not sorting

    Hi, The options are: All records or Sub-system (from listbox) records and Date filtered(formula on query) and Preview or Print The report works if I select anything AND Date filtered but not if I miss out the date filter. All queries sort when previewed so I think it is my VBA...
  14. G

    Reports not sorting

    I have a form that the user can select a report using options through 'group options'. These then open up the report using specific queries. One report many queries. The queries are the same except for the filter criteria. I created 1 query then copied the rest and adjusted the criteria. I am...
  15. G

    DoCmd.PrintPreview.......

    Cheers for that, already incorporated. Gordon :D
Back
Top Bottom