S
SF
Hi,
I have just converted my DB to Access 2007. I have a control that uses
Lebans RTF2, now I want to convert the content in RTF2 to another RTF field
using Access 2007. I cannot find any converter so I decide to write code to
do what I normally do manually.
The manual step that I have done is
Go to the RTF2 control (Desck)
Block the text
Copy it (Ctrl + C)
Move to RTF control (text40)
Paste It (Ctrl + V)
Now I want to capture these steps and code it on a button, but I stuck with
the following code:
Me.Ms_Desc_k.SetFocus
SendKeys "^C" '', True
Me.Text42.SetFocus
SendKeys "^V" '', True
SF
I have just converted my DB to Access 2007. I have a control that uses
Lebans RTF2, now I want to convert the content in RTF2 to another RTF field
using Access 2007. I cannot find any converter so I decide to write code to
do what I normally do manually.
The manual step that I have done is
Go to the RTF2 control (Desck)
Block the text
Copy it (Ctrl + C)
Move to RTF control (text40)
Paste It (Ctrl + V)
Now I want to capture these steps and code it on a button, but I stuck with
the following code:
Me.Ms_Desc_k.SetFocus
SendKeys "^C" '', True
Me.Text42.SetFocus
SendKeys "^V" '', True
SF