Search results

  1. D

    Is there a way to see if the BE is being used?

    Thanks Namliam. I have it working now: I have a button on my FE that checks if the BE is in use and, if not, compact and repairs it. Understand that the BE cannot be used during the C&R process. But there are only a few of us using the dB. Thanks for your help! PS Still struggling with...
  2. D

    Is there a way to see if the BE is being used?

    Hello Again Namliam, What I want is to have a button on my FE that will compact and repair my BE. I am a newbie - so if this is a daft thing to do please let me know. DubaiDave
  3. D

    Is there a way to see if the BE is being used?

    I would like to compact and repair from my FE, but would like to check if anyone else is using the BE first. DubaiDave
  4. D

    audit trail question

    Have you had a look at: http://allenbrowne.com/AppAudit.html ? DubaiDave
  5. D

    Limit Records in SubForm when opening MainForm

    Hi Namliam, I read on another forum that: One of the slight hassles with using a subform is that it doesn't exist as a member of the Forms collection so although you can open and filter the subform on its own with; DoCmd.OpenForm "frmPersonnelViewSub", , "qryLookUpSurname" you can't use...
  6. D

    Limit Records in SubForm when opening MainForm

    Hi Namliam, I read on another forum that: One of the slight hassles with using a subform is that it doesn't exist as a member of the Forms collection so although you can open and filter the subform on its own with; DoCmd.OpenForm "frmPersonnelViewSub", , "qryLookUpSurname" you can't use...
  7. D

    Limit Records in SubForm when opening MainForm

    Hello, I have a MainForm whose purpose is to allow users to apply various filters on a SubForm and then generate a report etc. However, when the MainForm and SubForm first open, all records from the query are being displayed, which takes some time. How can I limit the the records initially...
  8. D

    Lebans Alternate Bands of Color for Forms in Continuous View

    Banana, That did the trick. Thank you very much DubaiDave
  9. D

    Lebans Alternate Bands of Color for Forms in Continuous View

    I am using Lebans wonderful example of alternate colors for my continuous subform. However, I collapse and expand controls from a main form (setting height to zero) and need to update the subfrom backcolor because it stays at the original height. I think I need to update using: fbc.Create...
  10. D

    Search Engine for a Memo Field (AND NOT OR etc)

    Hello All, My dB includes a very large number of comments made on documents. These are stored in a memo field. My form allows a User to search for a word or string of words in the memo field by typing these into a form textbox and then this is applied to a query: Like "*" &...
  11. D

    Apply Conditional Formatting to apply a subform by Check Box on Main Form

    Galaxiom, Thanks for your help and encouragment. I have cracked it. It was a very small mistake I made..but a rather stupid one. Should have been Set objFrc = Me![fmSafetyNoticeReportContForm].Form![ClosedStatus].FormatConditions.Add(acFieldValue, acEqual, "'Closed'") What a...
  12. D

    Apply Conditional Formatting to apply a subform by Check Box on Main Form

    Hi Galaxiom, Unfortunately that did not solve the problem. David
  13. D

    Apply Conditional Formatting to apply a subform by Check Box on Main Form

    Hello Again Galaxiom, Closed Status is a textbox on the SubForm which is bound to a query. Does that help? Could you please add a little further explanation - I am a novice. DubaiDave
  14. D

    Apply Conditional Formatting to apply a subform by Check Box on Main Form

    Apply Conditional Formatting to a subform by Check Box on Main Form Hi, I would like to apply Conditional Formatting to a SubForm if a CheckBox on my MainForm is selected. My SubForm resides on a tabbed sheet on my MainForm (although according to Labans, this makes no difference to its...
  15. D

    Select Conditional Formatting (already setup) to apply to subform from a Check Box

    Thanks Galaxiom, That helps, but I am not quite yet there. My subfrom resides on a tabbed sheet on my main from (although according to Labans, this makes no difference to its referencing). The code I am now using runs without error but does not invoke the Conditional Formatting. Does...
  16. D

    Select Conditional Formatting (already setup) to apply to subform from a Check Box

    Thanks Galaxiom, That helps, but I am not quite yet there. My subfrom resides on a tabbed sheet on my main from (although according to Labans, this makes no difference to its referencing). The code I am now using runs without error but does not invoke the Conditional Formatting. Does...
  17. D

    Select Conditional Formatting (already setup) to apply to subform from a Check Box

    Thanks to pbaldy and Galaxiom ! Me!subformname!controlname.FormatConditions(0).Enabled = True worked. This refers to a single control. Rather than using this ten times or so for all my controls, how can I set all controls in the Detail part of my subfrom at the same time? I tried: Dim...
  18. D

    Select Conditional Formatting (already setup) to apply to subform from a Check Box

    Hi, Have spent an hour on the web researching this and have got nowhere. I would like to know how, or even if you can, turn on or off a conditional format setting already set up for a subform. Scenario is I select a filter to a subform, apply it and at that time if a Check Box is true then...
  19. D

    Need Help With Query - dB attached

    Dear SOS, Perfect! It does the job and I have also learnt another technique. Cheers Dubai Dave
  20. D

    Need Help With Query - dB attached

    Hi, I have been trying to work this out all day with no success at all. It is a bit hard to explain - Two tables: Book and Chapters Book has BookID + Name + Type Chapters has ChapterID + BookID + ChapterNo + No of Chapter Pages (Chapters are always incremented by one and start at 1) I...
Back
Top Bottom