The try catch, try catch finally commands don't work. If I highlight some code and click F C or T it overwrights my selection instead of imbeding it in the try catch. I've checked in the embed menu and F,C & T commands are enabled.
I've written a simple test windows form application to play with CodeRuse. It simply has a text box and a button on the form.
The code I'm highlighting is,
~int a = Convert.ToInt16(textBox1.Text);if (a == 4)
{
textBox1.Text = "That was 4";
}
else
{
textBox1.Text = "Not 4";
}~
The top ~ denotes where I first click with the mouse and the last ~ is where I release after a click and drag. When I type a c it simply replaces the highlighted code with a c. When I right click on the code there is no "Embed" menu. This is in Visual Studio 2005.
Thanks for the help.