Click here to Skip to main content
16,012,611 members
Home / Discussions / C#
   

C#

 
GeneralRe: Bitmap.Save("bmpname",ImageFormat.Gif)'s problem Pin
fu021-May-04 16:43
fu021-May-04 16:43 
GeneralRe: Bitmap.Save("bmpname",ImageFormat.Gif)'s problem Pin
Dave Kreskowiak21-May-04 17:12
mveDave Kreskowiak21-May-04 17:12 
GeneralWeb service Exception Pin
Cutespn20-May-04 22:56
Cutespn20-May-04 22:56 
GeneralRe: Web service Exception Pin
Dave Kreskowiak21-May-04 2:44
mveDave Kreskowiak21-May-04 2:44 
GeneralRe: Web service Exception Pin
Heath Stewart21-May-04 4:12
protectorHeath Stewart21-May-04 4:12 
GeneralCreating a textbox dynamically!!! Pin
mmxguy20-May-04 22:29
mmxguy20-May-04 22:29 
GeneralRe: Creating a textbox dynamically!!! Pin
Aryadip21-May-04 0:16
Aryadip21-May-04 0:16 
GeneralRe: Creating a textbox dynamically!!! Pin
sreejith ss nair21-May-04 1:34
sreejith ss nair21-May-04 1:34 
If you want to see all textbox which added to the form.then you can use the below mentioned code block

private void button1_Click(object sender, System.EventArgs e)
{
Txtbox= new TextBox();
this.Txtbox.Location = new System.Drawing.Point(locx, locy);
Txtbox.Width = 100;
this.Controls.Add(Txtbox);
locx=Txtbox.Location.X;
locy=Txtbox.Location.Y+30;
}


//here i have only one button on my form. On button click i am dynamically creating
//textbox control and adding to the control collection of form.

//before getting into code you have to declare one private datamember of the type textbox and two integer variables that will help you to keep the location unique.
so you can avoid overlapping.

private System.Windows.Forms.TextBox Txtbox;
private int locx=20,locy=30;


hope this will avoid from overlappingBlush | :O



Sreejith S S Nair
QuestionHow to add new cursor image to default list Pin
sachinkalse20-May-04 22:01
sachinkalse20-May-04 22:01 
AnswerRe: How to add new cursor image to default list Pin
Syed Abdul Khader21-May-04 1:00
Syed Abdul Khader21-May-04 1:00 
GeneralRe: How to add new cursor image to default list Pin
sreejith ss nair21-May-04 1:48
sreejith ss nair21-May-04 1:48 
GeneralRelative Paths Pin
myNameIsRon20-May-04 21:50
myNameIsRon20-May-04 21:50 
GeneralRe: Relative Paths Pin
Dave Kreskowiak21-May-04 2:25
mveDave Kreskowiak21-May-04 2:25 
GeneralRe: Relative Paths Pin
myNameIsRon21-May-04 6:12
myNameIsRon21-May-04 6:12 
GeneralRe: Relative Paths Pin
Dave Kreskowiak21-May-04 9:00
mveDave Kreskowiak21-May-04 9:00 
GeneralRe: Relative Paths Pin
myNameIsRon21-May-04 12:06
myNameIsRon21-May-04 12:06 
GeneralRe: Relative Paths Pin
Dave Kreskowiak21-May-04 12:22
mveDave Kreskowiak21-May-04 12:22 
GeneralRe: Relative Paths Pin
myNameIsRon22-May-04 6:16
myNameIsRon22-May-04 6:16 
GeneralRe: Relative Paths Pin
Dave Kreskowiak22-May-04 15:34
mveDave Kreskowiak22-May-04 15:34 
Generalmultiple PrintPreviewControl problems :confused: Pin
sachinkalse20-May-04 21:39
sachinkalse20-May-04 21:39 
GeneralRe: multiple PrintPreviewControl problems :confused: Pin
Dave Kreskowiak21-May-04 0:37
mveDave Kreskowiak21-May-04 0:37 
GeneralRe: multiple PrintPreviewControl problems :confused: Pin
sachinkalse23-May-04 15:35
sachinkalse23-May-04 15:35 
GeneralRe: multiple PrintPreviewControl problems :confused: Pin
Dave Kreskowiak23-May-04 16:12
mveDave Kreskowiak23-May-04 16:12 
GeneralRe: multiple PrintPreviewControl problems :confused: Pin
sachinkalse24-May-04 22:19
sachinkalse24-May-04 22:19 
GeneralRe: multiple PrintPreviewControl problems :confused: Pin
Dave Kreskowiak25-May-04 2:42
mveDave Kreskowiak25-May-04 2:42 

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.