I am creating a button for the toolbar with some special functionality and I wanted to find out if i can run the image editor myself dynamically in the code
I wass thinking something like this
CuteEditor.ImageEditor.ImageEditor myie = new CuteEditor.ImageEditor.ImageEditor();
myie.ImageUrl = "~/uploads/logo.gif";
this.Controls.Add(myie);
David