Click here to Skip to main content
15,901,205 members
Home / Discussions / C#
   

C#

 
QuestionMULTI PROCESS Pin
KALAMN1-May-09 2:06
KALAMN1-May-09 2:06 
AnswerRe: MULTI PROCESS Pin
Genius.Boy1-May-09 2:08
Genius.Boy1-May-09 2:08 
AnswerRe: MULTI PROCESS Pin
Eddy Vluggen1-May-09 2:44
professionalEddy Vluggen1-May-09 2:44 
QuestionSocket comunication problem Pin
rareseu1-May-09 0:29
rareseu1-May-09 0:29 
AnswerRe: Socket comunication problem Pin
Henry Minute1-May-09 0:55
Henry Minute1-May-09 0:55 
GeneralRe: Socket comunication problem Pin
rareseu1-May-09 1:26
rareseu1-May-09 1:26 
QuestionHow to add one button onto a winForm with code in the design environment Pin
mctramp1681-May-09 0:16
mctramp1681-May-09 0:16 
AnswerRe: How to add one button onto a winForm with code in the design environment Pin
DaveyM691-May-09 0:28
professionalDaveyM691-May-09 0:28 
Have a look in your form's designer.cs file and see how the IDE does it and replicate that in your code.
Something like:
// create a Button instance
Button button = new Button();
// set required properties
button.Text = "&New Button";
button.Location = new Point(12, 12);
// add to form's controls (this)
this.Controls.Add(button);


Dave
BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)
Visual Basic is not used by normal people so we're not covering it here. (Uncyclopedia)
Why are you using VB6? Do you hate yourself? (Christian Graus)

GeneralRe: How to add one button onto a winForm with code in the design environment Pin
mctramp1681-May-09 1:13
mctramp1681-May-09 1:13 
GeneralRe: How to add one button onto a winForm with code in the design environment Pin
Henry Minute1-May-09 1:21
Henry Minute1-May-09 1:21 
GeneralRe: How to add one button onto a winForm with code in the design environment Pin
mctramp1681-May-09 2:46
mctramp1681-May-09 2:46 
GeneralRe: How to add one button onto a winForm with code in the design environment Pin
mmgbmm1-May-09 4:32
mmgbmm1-May-09 4:32 
Question[Message Deleted] Pin
saoda1-May-09 0:03
saoda1-May-09 0:03 
AnswerAnswer! Pin
Nagy Vilmos1-May-09 0:11
professionalNagy Vilmos1-May-09 0:11 
AnswerAnswer Pin
dan!sh 1-May-09 0:12
professional dan!sh 1-May-09 0:12 
AnswerRe: Question! Pin
SimpleData1-May-09 0:19
SimpleData1-May-09 0:19 
QuestionProblem with events code and thread (long post) Pin
Otex30-Apr-09 23:02
Otex30-Apr-09 23:02 
AnswerRe: Problem with events code and thread (long post) Pin
Nicholas Butler1-May-09 0:35
sitebuilderNicholas Butler1-May-09 0:35 
GeneralRe: Problem with events code and thread (long post) Pin
Otex1-May-09 0:48
Otex1-May-09 0:48 
AnswerRe: Problem with events code and thread (long post) Pin
Nicholas Butler1-May-09 5:22
sitebuilderNicholas Butler1-May-09 5:22 
QuestionRe: Problem with events code and thread (long post) Pin
Otex3-May-09 5:43
Otex3-May-09 5:43 
AnswerRe: Problem with events code and thread (long post) Pin
Nicholas Butler3-May-09 7:43
sitebuilderNicholas Butler3-May-09 7:43 
QuestionHow to Pass TableAdapter data to another form's datagrid for modification then return the data to the original TableAdapter Pin
MarkB12330-Apr-09 22:59
MarkB12330-Apr-09 22:59 
AnswerRe: How to Pass TableAdapter data to another form's datagrid for modification then return the data to the original TableAdapter Pin
Christian Graus30-Apr-09 23:49
protectorChristian Graus30-Apr-09 23:49 
Questionload settings.settings in an array and datagrid Pin
Otex30-Apr-09 22:52
Otex30-Apr-09 22:52 

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.