Search results

  1. maxmangion

    Ms Outlook Reading Pane

    I have several folders in ms outlook which i would like to turn their reading pane option to "off", however according to the outlook help files this has to be done on each folder individually. Does anyone knows of a "trick" which can change this setting to all folders at once rather than going...
  2. maxmangion

    Get rid of Exact Search

    try Like "*" & [enter name] & "*"
  3. maxmangion

    Label

    I'm glad that you sorted your problem. Since you have solved your issue there is no need to upload the sample because i was simply going to take a look where the problem was :)
  4. maxmangion

    Label

    could you upload a small sample of your database i.e. the form in question?
  5. maxmangion

    Label

    probably the problem is that either your FirstName or Surname fields are null. In that case you can use an if statement to check whether any of the fields are none i.e. If Not IsNull(Me.FirstName) And Not IsNull(Me.Surname) Then Label7.Caption = 'reference the controls here Else Label7.Caption...
  6. maxmangion

    Exceptions Queries

    you're welcome :)
  7. maxmangion

    Label

    put your code on the OnCurrent event
  8. maxmangion

    Automatic CheckBox

    you're welcome :)
  9. maxmangion

    Automatic CheckBox

    you can try: If Not IsNull(Me.FieldName) Then Me.CheckboxName = True Else Me.ChecboxName = False End If
  10. maxmangion

    Story

    and undercover task
  11. maxmangion

    Story

    one of the
  12. maxmangion

    filter help

    try Private Sub cmdPrint_Click() Dim str_Filter As String str_Filter = "[Casenumber] =" & Me.txtCase DoCmd.OpenReport "rptSCT", acViewNormal, ,str_Filter End Sub Note that a comma has been added near the str_Filter
  13. maxmangion

    Story

    and some strange
  14. maxmangion

    filter help

    try using a different name rather than Case because case is also a vba Keyword. Try naming your field something like txtCase
  15. maxmangion

    filter help

    Hi, As I have already explained above that should read "[Case Number] = " & Me.Case
  16. maxmangion

    filter help

    so it should be str_Filter = "[Case Number] =" & Me.Case note that in your original code you did not have the "Me."
  17. maxmangion

    Opening subforms with command control

    I'm glad that you solved it out :)
  18. maxmangion

    filter help

    what is the datatype of your field? Because if it is "Text" and not "Number" you will need to add the quotes i.e. str_Filter = "[Case Number] = '" & Me.Case & "'"
  19. maxmangion

    Story

    so that it
  20. maxmangion

    Opening subforms with command control

    you're welcome :)
Back
Top Bottom