Search results

  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
  16. G

    DoCmd.PrintPreview.......

    richary, I think I may have mislead. "Sub System" is the field I want to filter on the report "RptAll" and Forms![FrmPrintReports]![LstSelectSub] is the criteria. Cheers Gordon
  17. G

    DoCmd.PrintPreview.......

    Please help :o I have the following statement in a 'Select Case' and I get a blank result. DoCmd.OpenReport "RptAll", acViewPreview, , "Sub System" = Forms![FrmPrintReports]![LstSelectSub] Where am I going wrong Cheers Gordon
  18. G

    Using criteria

    Thanks for that, very useful, all ready added. Regretfully this is the wrong problem. My fault, did not explain properly. What I want is to display the inputed data in the report heading. e.g. "Report up to and including"&" "& [T0+] Cheers Gordon
  19. G

    Problem with DoCmd.Close

    Thanks for the help. I have solved the problem by deleting the form and creating a new one. The command works now even though it is exactly the same. 'The beauty of Micrsoft'. :rolleyes: Cheers
  20. G

    Problem with DoCmd.Close

    Hi Ken, Nothing starting with missing. Gordon
Back
Top Bottom