Hi
TextBox t = new TextBox();
t.Text = "Hello";
Graphics g = t.CreateGraphics();
Ok this gets the graphics object of a textbox. What I would like to do is create an image object from that textbox am I on the right track using a Graphics object or is there some other way. Any help would be appricated.
Thanks
John
TextBox t = new TextBox();
t.Text = "Hello";
Graphics g = t.CreateGraphics();
Ok this gets the graphics object of a textbox. What I would like to do is create an image object from that textbox am I on the right track using a Graphics object or is there some other way. Any help would be appricated.
Thanks
John