Search results

  1. M

    Solved Stop code until other application finished

    Thanks for all the input guys. MarkKs information about the optional parameter for OutlookItem.Display is just the ticket and solves my problem. Thanks again.
  2. M

    Solved Stop code until other application finished

    Actually that is actually what I am doing, but the message appears before I have finished tending to Outlook.
  3. M

    Solved Stop code until other application finished

    I have finally gotten my code to work. From my form I create an outlook appointment from data on the form and send it to recipients that are also on the form. After generation the appointment is displayed in Outlook and I check for errors or may add notes manually. After all is OK I send the...
  4. M

    Strange behaviour with form

    Horizontal: left Vertical: Upper This is the same as with all controls on the form. I have never messed with anchoring.
  5. M

    Strange behaviour with form

    Thanks for the suggestions. I have not changed the design of the form. All controls are visible and they all have the sam anchor settings.
  6. M

    Strange behaviour with form

    I have updated a form of mine in a database. In design view everything is how I want it. Whenever I switch into the form view, none of the new labels or check boxes I have inserted are in the position that I have placed them. They are either in another location on the form or are not being...
  7. M

    Loop through Sub Form Table Controls

    Thank you so much. This is exactly what I was looking for,
  8. M

    Loop through Sub Form Table Controls

    Hi there, I have a main form (Daten) with a sub form (BewerberUF) in my database. The sub form is shown as a table. In the sub form one of the columns ("Ausgewählt") is made up of checkboxes. Is there a way (possibly with a command button) to loop through one of the columns and set all the...
  9. M

    DTPicker on Form

    Thank you for the many tips. I finally got it to work by inserting the code If Len(Me.txtSuchen) <> 10 Then Exit Sub into the module. Thanks again.
  10. M

    DTPicker on Form

    I have a Date Picker on my form to jump to the record that corresponds to the date in the Date Picker using the change event As long as I select the date with the date picker, everything is Ok. If I wish to select a date by typing it in manually, I get an error message because the change event...
  11. M

    GetLabel on firing on startup

    Unfortunately, still getting the same "with block" error.
  12. M

    GetLabel on firing on startup

    Thanks for the quick answer. Unfortunately trying to invalidate the ribbon invariably causes an "object variable or with block variable not set" error.
  13. M

    GetLabel on firing on startup

    In my custom ribbon I use the getLabel function to write data to a button lable. Sub GetLabel(control As IRibbonControl, ByRef label) ' Callbackname in XML File "getLabel" ' To set the property "label" to a Ribbon Control Select Case control.ID Case "Btn_25" label =...
  14. M

    dlookup and date

    Thanks for the quick reply. Unfortunately the problem remains. The message box always appears when cycling through the records even if the date in the form field is not in the public holiday table.
  15. M

    dlookup and date

    Hi there, I have a split database. On the backend there is a linked table with all the dates of the public holidays occuring in the next few years. The table is called "ArbFreieTage" and the column with the dates is called "Datum". When I open the form "Außenpforte" I would like to check if...
  16. M

    Custom Ribbon on Form

    Open your form in design view and open the property shhet. Select the "All" tab and scroll down to "Name of Ribbon". Select the custom ribbon you would like. When you now active the form this ribbon will always be displayed.
Back
Top Bottom