Question : How to get Unicode characters from clipboard on VB6

Dear Expert:

I have some characters on the clipboard which are not in the Latin-1 alphabet (i.e. its Unicode value is >255).

I have a form with a TextBox and a RichTextBox, and also a button with this code:

   RichTextBox1.TextRTF = clipboard.GetText(vbCFRTF)
   Text1.Text = RichTextBox1.Text

I tryied this:
The text appears well on RichTextBox1, but not on Text1 control. How can I want to get the Unicode characters without any formatting. Is this possible using Visual Basic 6 ?

Thank you.

Answer : How to get Unicode characters from clipboard on VB6

WPF uses .net framework while silverlight app uses silverlight pulgin framework.

XML namespace is alias for assembly, so in case of WPF that namespace refers to different assembly than those of silverlight assembly.

To know more about what this namespace means
http://msdn.microsoft.com/en-us/library/cc189061(VS.95).aspx (Silverlight)
http://msdn.microsoft.com/en-us/library/ms747086.aspx (WPF)

So logically tough we use same namespace in both there is slight difference.
Random Solutions  
 
programming4us programming4us