User Profile

Collapse

Profile Sidebar

Collapse
ACF
ACF
Last Activity: Jun 28 '07, 07:59 AM
Joined: Jun 19 '07
Location: Netherlands
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Is there a way to let an OLE Picture field show a link to for example P:\Pictures\Tes

    In my table I have Picture (OLE) and Link_String (Text)

    On my Form I have the OLE field and the text field.



    In the text field I would like to put in a reference to a file on my computer (example: P:\Pictures\Tes t.jpg) and the picture OLE field should then show the linked to picture.



    Is there a way to code this?



    Greetings,

    ...
    See more | Go to post

  • Format selected text in RTF Memo field in MS Access 2007

    Hello,

    I’m trying to format only selected text in an RTF Memo field in Access 2007



    I’m able to copy selected text in a Memo field to the Windows clipboard with following code:

    Private Sub Memo_MouseUp(Bu tton As Integer, Shift As Integer, X As Single, Y As Single)



    DoCmd.RunComman d acCmdCopy



    End Sub

    ...
    See more | Go to post

  • Thanks for your feedback, although code is for VB (will that work for VBA)?

    But this will copy still the whole field


    [CODE=vb]
    Me![LastName].SetFocus
    Me![LastName].SelStart = 0
    Me![LastName].SelLength = Len(Me![LastName])
    SendKeys "^c"
    [/CODE]

    I want the SelStart at the start of the text I've highlighted and SelLenght the number of characters I've highlighted...
    See more | Go to post

    Leave a comment:


  • ACF
    started a topic Copy ONLY selected text to the windows clipboard

    Copy ONLY selected text to the windows clipboard

    Hello,
    I'm programming an application in MS Access 2003 / 2007 and would like to know how I can copy highlighted text to the windows clipboard?

    I am now using a statement in combination with module "Call ClipBoard_SetDa ta(Memo)" but this copies the whole 'memo' field.
    I want to highlight text in the memo field and copy only that text to the clipboard.

    What I really want is the VBA code for window's...
    See more | Go to post

  • Retain cursor position in Memo field, when changing to another field

    Hello,

    I'm having two memo fields beside each other for translating purposes. When I scroll down the text in Memo 1 to see what I want to translate, then move to Memo 2 to actually translate the text, Memo 1 field 'jumps' back to the top of the text. I'd like the screen to 'freeze' when I shift focus to Memo2.



    Is there anyway to retain (hold on) to the previous [color=windowtex t]windows[/color] position...
    See more | Go to post
No activity results to display
Show More
Working...