Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ACFeddes

    VBA retrieve URL from Windows Clipboard

    When you paste text In OneNote from either the Web or a file on the computer, it pastes at the bottom the URL to the source. Clipboard managers like Clipmagic shows the data copied to the Windows clipboard with the relevant URL (indicating that the data should be available on the clipboard)...
  2. ACFeddes

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

    Wow, that works great too. Thank you very much. I'll play around with the registry some other time - already tried a bit, but to no avail. Another question, seeing we've already come this far, related to my other post - http://www.tek-tips.com/viewthread.cfm?qid=1379432 - when I select the...
  3. ACFeddes

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

    Hello MajP, thank you for the good advice - that works great, although it reduces the font size to default. I'm starting to use Access 2007, where I have RTF applied to my memo fields. If I then use a MS Forms 2.X Text box, it will show all the HTML characters. I'm therefore much interested in...
  4. ACFeddes

    VBA code to copy selected text in Memo field to windows clipboard

    Hello Remou, that was a great help - thank you very much - so simple really. I now use it with the module Clipboard_SetData: Private Sub Memo_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single) 'If MsgBox("Copy?", vbYesNo) = vbYes Then Call...
  5. ACFeddes

    VBA code to copy selected text in Memo field to windows clipboard

    Hello AceMan, sounds great - switching to Rich Text, two Rich Text ActiveX Controls will fill the bill nicely - you just have to bind the controls to your fields. Nothing else need be done. How do I do that? Are they available in Access? I've tried to add Extra controls like: Microsoft Rich...
  6. ACFeddes

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

    Hello Mr. AceMan, Actually I'll do both - either write in Memo1 or scroll it down. I'd like the screen to 'freeze' when I shift focus to Memo2. Can you help? Greetings, ACF
  7. ACFeddes

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

    Hello MajP, that does work to some extend. When I'm switching field, it still moves back to the top. When I go back (GetFocus) on Field 1, it will actually go back to where the cursur was - so that works fine. But for translating, I'd like the cursor and the place in the text to remain static...
  8. ACFeddes

    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. Is there anyway to retain (hold on) to the...
  9. ACFeddes

    VBA code to copy selected text in Memo field to windows clipboard

    Thanks for the info, I had already found that and put to use. But I come as far as having to use [Ctrl C] to copy selected text to the clipboard and then use a command button to paste that text somewhere else and assign a category to it. What I want is to make these 2 steps just 1. So in...
  10. ACFeddes

    VBA code to copy selected text in Memo field to windows clipboard

    Thanks for the reply, but still don't know where to go from here. Are you able to give me some VBA? I tried something like below, but don't know how to pick up selected (higtlighted) text in a Memo field: Dim strText As String strText = MyString RunCommand acCmdCopy or...
  11. ACFeddes

    VBA code to copy selected text in Memo field to windows clipboard

    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_SetData(Memo)" but this copies the whole 'memo' field. I want to highlight text in the...

Part and Inventory Search

Back
Top