Click here to Skip to main content
15,889,595 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to send a message from a rich text box control to a form Pin
Leif Simon Goodwin14-Aug-15 3:27
Leif Simon Goodwin14-Aug-15 3:27 
GeneralRe: How to send a message from a rich text box control to a form Pin
Arthur V. Ratz14-Aug-15 3:36
professionalArthur V. Ratz14-Aug-15 3:36 
GeneralRe: How to send a message from a rich text box control to a form Pin
Arthur V. Ratz14-Aug-15 3:30
professionalArthur V. Ratz14-Aug-15 3:30 
GeneralRe: How to send a message from a rich text box control to a form Pin
Leif Simon Goodwin14-Aug-15 3:43
Leif Simon Goodwin14-Aug-15 3:43 
GeneralRe: How to send a message from a rich text box control to a form Pin
Arthur V. Ratz14-Aug-15 3:59
professionalArthur V. Ratz14-Aug-15 3:59 
GeneralRe: How to send a message from a rich text box control to a form Pin
Arthur V. Ratz14-Aug-15 6:30
professionalArthur V. Ratz14-Aug-15 6:30 
GeneralRe: How to send a message from a rich text box control to a form Pin
Member 1144608014-Aug-15 18:24
Member 1144608014-Aug-15 18:24 
QuestionRuntime Form Designer Pin
Member 1144608014-Aug-15 0:00
Member 1144608014-Aug-15 0:00 
I made a function of having a Form Designer software.
In this software, I use this namespace:System.Drawing.Design.
I use the following code in my program is designed .to Program run A pop-up It is designed to form.
Now I have a problem: How can The program Run time Right click It is designed to form A pop-up with a menu.
C#
DesignSurface surface = new DesignSurface();
surface.BeginLoad(typeof(Form));
Control view = (Control)surface.View;
view.Dock = DockStyle.Fill;
this.Controls.Add(view);
//------------------------------------------------------
toolBoxService = new DemoToolboxService();

toolBoxService.ToolBox = new ListBox();

toolBoxService.ToolBox.Items.Add(new ToolboxItem(typeof(Button)));
toolBoxService.ToolBox.Items.Add(new ToolboxItem(typeof(TextBox)));
toolBoxService.ToolBox.Items.Add(new ToolboxItem(typeof(Label)));
toolBoxService.ToolBox.Items.Add(new ToolboxItem(typeof(TabControl)));
toolBoxService.ToolBox.Items.Add(new ToolboxItem(typeof(StatusBar)));

toolBoxService.ToolBox.Dock = DockStyle.Fill;
this.panel1.Controls.Add(toolBoxService.ToolBox);

IServiceContainer container = surface.GetService(typeof(IServiceContainer)) as IServiceContainer;

 if (container != null)
{
container.AddService(typeof(IToolboxService), toolBoxService);
}

QuestionGo to Next Items of List box using timer in C# Pin
Member 1190306213-Aug-15 20:55
Member 1190306213-Aug-15 20:55 
AnswerRe: Go to Next Items of List box using timer in C# Pin
Wendelius13-Aug-15 21:01
mentorWendelius13-Aug-15 21:01 
AnswerRe: Go to Next Items of List box using timer in C# Pin
OriginalGriff13-Aug-15 22:04
mveOriginalGriff13-Aug-15 22:04 
GeneralRe: Go to Next Items of List box using timer in C# Pin
Member 1190306214-Aug-15 0:04
Member 1190306214-Aug-15 0:04 
GeneralRe: Go to Next Items of List box using timer in C# Pin
OriginalGriff14-Aug-15 0:28
mveOriginalGriff14-Aug-15 0:28 
GeneralRe: Go to Next Items of List box using timer in C# Pin
Member 1190306214-Aug-15 2:06
Member 1190306214-Aug-15 2:06 
GeneralRe: Go to Next Items of List box using timer in C# Pin
OriginalGriff14-Aug-15 2:27
mveOriginalGriff14-Aug-15 2:27 
GeneralRe: Go to Next Items of List box using timer in C# Pin
Member 1144608014-Aug-15 18:28
Member 1144608014-Aug-15 18:28 
AnswerRe: Go to Next Items of List box using timer in C# Pin
kbrandwijk15-Aug-15 15:09
professionalkbrandwijk15-Aug-15 15:09 
GeneralMessage Closed Pin
13-Aug-15 2:58
Member 1144608013-Aug-15 2:58 
GeneralRe: Personals Pin
Manfred Rudolf Bihy13-Aug-15 3:37
professionalManfred Rudolf Bihy13-Aug-15 3:37 
GeneralRe: Personals Pin
Dave Kreskowiak13-Aug-15 3:42
mveDave Kreskowiak13-Aug-15 3:42 
QuestionHow to pass the image form1 to form2 ? Pin
Member 1190306213-Aug-15 2:36
Member 1190306213-Aug-15 2:36 
AnswerRe: How to pass the image form1 to form2 ? Pin
Dave Kreskowiak13-Aug-15 3:38
mveDave Kreskowiak13-Aug-15 3:38 
QuestionAbout runtime Designer Pin
Member 1144608013-Aug-15 0:22
Member 1144608013-Aug-15 0:22 
AnswerRe: About runtime Designer Pin
OriginalGriff13-Aug-15 1:28
mveOriginalGriff13-Aug-15 1:28 
GeneralRe: About runtime Designer Pin
Member 1144608013-Aug-15 1:36
Member 1144608013-Aug-15 1:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.