Click here to Skip to main content
15,888,802 members
Home / Discussions / C#
   

C#

 
GeneralRe: Is it possibe execute 1st-thread method in 2nd async thread? Pin
Monookiev8-Mar-15 10:26
Monookiev8-Mar-15 10:26 
QuestionWSDL without Header but requested Pin
Info service8-Mar-15 0:02
Info service8-Mar-15 0:02 
AnswerRe: WSDL without Header but requested Pin
Richard MacCutchan8-Mar-15 2:11
mveRichard MacCutchan8-Mar-15 2:11 
GeneralRe: WSDL without Header but requested Pin
Info service8-Mar-15 5:52
Info service8-Mar-15 5:52 
QuestionPlease help me, run-time design on buttons. Pin
Member 114460807-Mar-15 16:59
Member 114460807-Mar-15 16:59 
GeneralRe: Please help me, run-time design on buttons. Pin
Kornfeld Eliyahu Peter7-Mar-15 19:43
professionalKornfeld Eliyahu Peter7-Mar-15 19:43 
AnswerRe: Please help me, run-time design on buttons. Pin
Richard MacCutchan7-Mar-15 22:14
mveRichard MacCutchan7-Mar-15 22:14 
AnswerRe: Please help me, run-time design on buttons. Pin
BillWoodruff8-Mar-15 2:33
professionalBillWoodruff8-Mar-15 2:33 
Assuming you know that you can do everything you describe in VS 2013 at design-time, I assume your question is about trying to have a designer at run-time that gives you the same functionality you have at design-time.

The answer to ... what I assume is ... your concern is:

1. with a great deal of work, you can create a kind-of virtual designer that works at run-time; there's an article here that demonstrates that [^].

That is a major task, and, in my opinion, a not really valuable task to take on in terms of your learning C# for real-world use ... in the kinds of ways that gets you ... employed.

2. you can get kind of part-way there, for any .NET Control ... at run-time ... by creating an instance of the Control in code, adding it to your current Form, and then showing an instance of the PropertyGrid which has its 'SelectedObject Property set to the instance of your new Control.

Button newButton = new Button()

MyForm.Controls.Add(newButton);

propertyGrid1.Show();

propertyGrid1.SelectedObject = newButton;

// close the PropertyGrid when you're done ?
«To kill an error's as good a service, sometimes better than, establishing new truth or fact.» Charles Darwin in "Prospero's Precepts"

QuestionDeskBand alternatives C# Pin
Member 108502537-Mar-15 8:00
Member 108502537-Mar-15 8:00 
AnswerRe: DeskBand alternatives C# Pin
Ravi Bhavnani7-Mar-15 8:55
professionalRavi Bhavnani7-Mar-15 8:55 
GeneralRe: DeskBand alternatives C# Pin
Member 108502537-Mar-15 9:06
Member 108502537-Mar-15 9:06 
AnswerRe: DeskBand alternatives C# Pin
Brisingr Aerowing7-Mar-15 9:40
professionalBrisingr Aerowing7-Mar-15 9:40 
GeneralRe: DeskBand alternatives C# Pin
Member 108502537-Mar-15 10:18
Member 108502537-Mar-15 10:18 
GeneralRe: DeskBand alternatives C# Pin
manchanx7-Mar-15 10:26
professionalmanchanx7-Mar-15 10:26 
JokeRe: DeskBand alternatives C# Pin
Richard Andrew x647-Mar-15 10:36
professionalRichard Andrew x647-Mar-15 10:36 
GeneralRe: DeskBand alternatives C# Pin
manchanx7-Mar-15 10:48
professionalmanchanx7-Mar-15 10:48 
GeneralRe: DeskBand alternatives C# Pin
Member 108502537-Mar-15 11:25
Member 108502537-Mar-15 11:25 
GeneralRe: DeskBand alternatives C# Pin
manchanx7-Mar-15 12:21
professionalmanchanx7-Mar-15 12:21 
Questioni need help............ Pin
Member 115043336-Mar-15 22:52
Member 115043336-Mar-15 22:52 
GeneralRe: i need help............ Pin
Richard MacCutchan6-Mar-15 23:20
mveRichard MacCutchan6-Mar-15 23:20 
AnswerRe: i need help............ Pin
OriginalGriff6-Mar-15 23:57
mveOriginalGriff6-Mar-15 23:57 
GeneralRe: i need help............ Pin
Richard MacCutchan7-Mar-15 3:03
mveRichard MacCutchan7-Mar-15 3:03 
GeneralRe: i need help............ Pin
OriginalGriff7-Mar-15 3:56
mveOriginalGriff7-Mar-15 3:56 
GeneralRe: i need help............ Pin
Richard MacCutchan7-Mar-15 4:15
mveRichard MacCutchan7-Mar-15 4:15 
GeneralRe: i need help............ Pin
OriginalGriff7-Mar-15 4:33
mveOriginalGriff7-Mar-15 4:33 

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.