Click here to Skip to main content
15,907,149 members
Home / Discussions / C#
   

C#

 
AnswerRe: Replace numbers after the . with other numbers Pin
0x3c06-Jul-09 20:59
0x3c06-Jul-09 20:59 
GeneralRe: Replace numbers after the . with other numbers Pin
ksaw1236-Jul-09 22:24
ksaw1236-Jul-09 22:24 
AnswerRe: Replace numbers after the . with other numbers Pin
dan!sh 6-Jul-09 22:31
professional dan!sh 6-Jul-09 22:31 
GeneralRe: Replace numbers after the . with other numbers Pin
ksaw1236-Jul-09 23:27
ksaw1236-Jul-09 23:27 
GeneralRe: Replace numbers after the . with other numbers Pin
dan!sh 6-Jul-09 23:50
professional dan!sh 6-Jul-09 23:50 
GeneralRe: Replace numbers after the . with other numbers Pin
himanshu25617-Jul-09 0:15
himanshu25617-Jul-09 0:15 
GeneralRe: Replace numbers after the . with other numbers Pin
OriginalGriff7-Jul-09 0:20
mveOriginalGriff7-Jul-09 0:20 
GeneralRe: Replace numbers after the . with other numbers Pin
Alan N7-Jul-09 0:01
Alan N7-Jul-09 0:01 
GeneralRe: Replace numbers after the . with other numbers [modified] Pin
Pete O'Hanlon7-Jul-09 0:19
mvePete O'Hanlon7-Jul-09 0:19 
GeneralRe: Replace numbers after the . with other numbers Pin
dan!sh 7-Jul-09 0:32
professional dan!sh 7-Jul-09 0:32 
GeneralRe: Replace numbers after the . with other numbers Pin
Pete O'Hanlon7-Jul-09 0:46
mvePete O'Hanlon7-Jul-09 0:46 
GeneralRe: Replace numbers after the . with other numbers Pin
OriginalGriff7-Jul-09 1:40
mveOriginalGriff7-Jul-09 1:40 
GeneralRe: Replace numbers after the . with other numbers Pin
Pete O'Hanlon7-Jul-09 1:53
mvePete O'Hanlon7-Jul-09 1:53 
Questionhow to create controls @ run time? Pin
CoderForEver6-Jul-09 20:21
CoderForEver6-Jul-09 20:21 
AnswerRe: how to create controls @ run time? Pin
DaveyM696-Jul-09 22:22
professionalDaveyM696-Jul-09 22:22 
Obviously English isn't your first language, so just a few points to help you improve and to increase your chances of being understood.
waz = was
zat = that
u = you
ur = your (sometimes you're - short for 'you are')
z = the
@ = at
hw = how

Creating the button isn't enough. You need to add it to the form's Controls property.
Button button = new Button();
button.Text = "&Created in Code";
button.Size = new Size(100, 23);
button.Location = new Point(12, 12);
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)

JokeRe: how to create controls @ run time? Pin
Rajesh R Subramanian7-Jul-09 0:01
professionalRajesh R Subramanian7-Jul-09 0:01 
GeneralRe: how to create controls @ run time? Pin
PandemoniumPasha7-Jul-09 0:38
PandemoniumPasha7-Jul-09 0:38 
GeneralRe: how to create controls @ run time? Pin
Pete O'Hanlon7-Jul-09 0:58
mvePete O'Hanlon7-Jul-09 0:58 
GeneralRe: how to create controls @ run time? Pin
CoderForEver7-Jul-09 1:48
CoderForEver7-Jul-09 1:48 
GeneralRe: how to create controls @ run time? Pin
DaveyM697-Jul-09 2:04
professionalDaveyM697-Jul-09 2:04 
Questiondetect bluetooth device Pin
nithydurai6-Jul-09 19:56
nithydurai6-Jul-09 19:56 
AnswerRe: detect bluetooth device Pin
Henry Minute6-Jul-09 23:07
Henry Minute6-Jul-09 23:07 
QuestionClient And Server Chat Pin
tamir9016-Jul-09 19:50
tamir9016-Jul-09 19:50 
AnswerRe: Client And Server Chat Pin
PandemoniumPasha6-Jul-09 20:01
PandemoniumPasha6-Jul-09 20:01 
GeneralRe: Client And Server Chat Pin
tamir9016-Jul-09 20:09
tamir9016-Jul-09 20:09 

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.