Search results

  1. F

    Copy rich Text to Outlook

    Does anyone know how to transfer data from a Rich Text activex control to an outlook message? Apparently Sendkeys does not work in Outlook vba becasue of new security settings?
  2. F

    icon ghosting

    when a toggle button object is selected on a form, it becomes ghosted. What property is changed? I want to reset all the other toggle button images when a new one is selected.
  3. F

    Text Selection

    Is there a way for Access VBA to know what text is selected in a text box of a form similar to Selection. in Word? I only want to proper capitalize the text selected and not the entire field.
  4. F

    Step Into doesn't work

    I use Step Into F8 all the time in Excel. All you do is put the cursor in the sub and hit F8. Nothing happens in an Access sub. I put the cursor on the sub name, etc. and nothing works.:confused: Can this be that hard?
  5. F

    Step Into Event Procedure

    Can you step into an Event Procedure line by line in Access? I toggled the Breakpoint at the End Sub of the Event Procedure, clicked in the middle of the sub, and pressed F8. Nothing! I do this all the time in Excel.
  6. F

    Hiding Report Duplicates Iif

    How can I hide in a report duplicates conditional on whether another field [ConduitNumber] is hidden? Query results: ConduitNumber Size CableNumber 1234C 3/4 CableA 1234C 3/4 CableB 2345C 3/4 CableC after using conditional hide command in...
  7. F

    Tab Index sorting like Form Controls

    cancel question With a mixture of Before Updates, Before Delete, After Delete, For, next loops, unique ID's and Sorting numbers, I got it! It was fun. If you want it request it. :)
  8. F

    Tab Index sorting like Form Controls

    Does anyone have any ideas on how Microsoft in Forms changes the order number with Tab Index? I have a [Tasks To Do] table that I want the ability to quickly re-prioritize. Maybe features like add pick the order of a new Task and then reindex the others, or reindexing after deleting or...
  9. F

    Update label each time a new record is displayed

    That was the ticket. Thanks again.
  10. F

    The Search Key was not found in any record

    I have a form / subform. The form has a memo field. I have 10,000 plus records in the Form table. Each time I make a correction in two or more of the fields, I get the error: The Search Key was not found in any record error. For instance, I can even manually tie a many to many relationship in...
  11. F

    Update label each time a new record is displayed

    What event would you use to update a label caption relative to a number field in the same form, so that each time a new record is displayed, it goes through my complicated "if" bva code. I want the letter "th", "st", "rd" to display beside a text box relative to the value displayed. I suppose I...
  12. F

    text vs. memo field

    example of text field I collect quotes and teachings. Many times the info is greater than 255 characters. I have a VBA program that I copy clipboard info and seaparate the first 255 character or less, always ending in a ".", ",", "!", etc. and copying the remaining data automatically to a memo...
  13. F

    RTF text field

    Does MS Access support RTF in text fields? How do I add a RTF type field?
  14. F

    text vs. memo field

    Are there any other advantages in using a text field verses a memo field other than memory allocation? Memory allocation seems like such a small issue these days.
Back
Top Bottom