1
Answer

Strange Compile error , my Project Assemby cannot be found Pin

Hosein

Hosein

15y
2.3k
1
 Error 2 Assembly 'lab1' was not found. Verify that you are not missing an assembly reference. Also, verify that your project and all referenced assemblies have been built. D:\wpf\lab1\lab1\Window1.xaml 4 18 lab1



I am using the following code in order to use my user control in my project but the error mentioned before occurs :
 xmlns:local= "clr-namespace:lab1"


PS: my Project and also Solution Name is lab1 so i am referencing to my project


please tell me what should I do, thank you
Answers (1)
0
lszk

lszk

NA 5 0 16y
 I found somewhere that I have to save it in rtf file. In source code to this library I found a RtfWriter class. Like a paramether method to generate rtf needs TextArea object. But I have my TextEditorControl only. How to convert it?
0
lszk

lszk

NA 5 0 16y
There is a TextEditorControlBase.Text and with it I can copy the text to Word but without colors.
http://img155.imageshack.us/my.php?image=beztytuuccxke0.png

This is the reason why I posted this topic.
0
Scott Lysle

Scott Lysle

NA 28.5k 14.4m 16y

I am not familiar with that text editor control but with other controls such as a rich text box control, there are methods used to select all of the text, if select all of the text and copy it to the clipboard, you should be able to paste the contents with the formatting.  For a rich text box control, the code would look like this:

private void copyToolStripMenuItem_Click(object sender, EventArgs e)

{

rtbDoc.SelectAll();

Clipboard.SetText(rtbDoc.SelectedRtf, TextDataFormat.Rtf);

}