Click here to Skip to main content
15,888,968 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
QuestionDoc Conversion Pin
Fahima_Tahir13-Mar-07 10:02
Fahima_Tahir13-Mar-07 10:02 
AnswerRe: Doc Conversion Pin
Pete O'Hanlon14-Mar-07 0:13
mvePete O'Hanlon14-Mar-07 0:13 
QuestionOverrided install sub problem Pin
Memo Soso13-Mar-07 4:55
Memo Soso13-Mar-07 4:55 
QuestionHelp: how to have a binding to correctly update a form? Pin
Spulit13-Mar-07 2:56
Spulit13-Mar-07 2:56 
QuestionFTP upload Pin
jchigg200012-Mar-07 10:17
jchigg200012-Mar-07 10:17 
AnswerRe: FTP upload Pin
Dave Kreskowiak12-Mar-07 12:52
mveDave Kreskowiak12-Mar-07 12:52 
Questiondynamic pictureBox creation Pin
sarah_malik12-Mar-07 6:48
sarah_malik12-Mar-07 6:48 
AnswerRe: dynamic pictureBox creation Pin
Paul Selormey12-Mar-07 15:02
Paul Selormey12-Mar-07 15:02 
sarah_malik wrote:
Any ideas?

You have not really asked any question!

Creating Picture box is well documented in the MSDN
PictureBox picBox = new PictureBox();
picBox.Location = new Point(0, 0);
picBox.Size = new Size(10, 10);
picBox.TabStop = false;
picBox.SizeMode = PictureBoxSizeMode.StretchImage;
picBox.BorderStyle = BorderStyle.Fixed3D;
// Add the PictureBox to the form.
this.Controls.Add(picBox);

and you can loop to the number required and create any many as you wish.

If your question is on positioning of the picture boxes, then if you are using .NET 2 then consider using any of the Layout Panels objects like TableLayoutPanel.

Best regards,
Paul.


Jesus Christ is LOVE! Please tell somebody.

GeneralRe: dynamic pictureBox creation Pin
sarah_malik13-Mar-07 1:07
sarah_malik13-Mar-07 1:07 
Questionhelp me to make my program work faster Pin
thesad12-Mar-07 5:23
thesad12-Mar-07 5:23 
AnswerRe: help me to make my program work faster Pin
MikeMarq12-Mar-07 5:43
MikeMarq12-Mar-07 5:43 
GeneralRe: help me to make my program work faster Pin
thesad12-Mar-07 5:52
thesad12-Mar-07 5:52 
GeneralRe: help me to make my program work faster Pin
Pete O'Hanlon12-Mar-07 6:00
mvePete O'Hanlon12-Mar-07 6:00 
GeneralRe: help me to make my program work faster Pin
MikeMarq12-Mar-07 7:41
MikeMarq12-Mar-07 7:41 
GeneralRe: help me to make my program work faster Pin
thesad12-Mar-07 9:52
thesad12-Mar-07 9:52 
GeneralRe: help me to make my program work faster Pin
Luc Pattyn12-Mar-07 12:45
sitebuilderLuc Pattyn12-Mar-07 12:45 
GeneralRe: help me to make my program work faster [modified] Pin
thesad12-Mar-07 19:10
thesad12-Mar-07 19:10 
AnswerRe: how to overlap image Pin
Dave Kreskowiak12-Mar-07 4:55
mveDave Kreskowiak12-Mar-07 4:55 
Questionhow to start a windows application at windows start up in c# Pin
sainyam12-Mar-07 0:12
sainyam12-Mar-07 0:12 
AnswerRe: how to start a windows application at windows start up in c# Pin
Colin Angus Mackay12-Mar-07 0:28
Colin Angus Mackay12-Mar-07 0:28 
AnswerRe: how to start a windows application at windows start up in c# Pin
Dave Kreskowiak12-Mar-07 4:51
mveDave Kreskowiak12-Mar-07 4:51 
QuestionStringFormat.Alignment and StringFormat.LineAlignment Pin
Paul Selormey11-Mar-07 21:34
Paul Selormey11-Mar-07 21:34 
AnswerRe: StringFormat.Alignment and StringFormat.LineAlignment Pin
Thomas Stockwell22-Mar-07 8:13
professionalThomas Stockwell22-Mar-07 8:13 
QuestionAccessing files from a remote system or server Pin
vikram.vit10-Mar-07 0:46
vikram.vit10-Mar-07 0:46 
AnswerRe: Accessing files from a remote system or server Pin
Dave Kreskowiak10-Mar-07 4:03
mveDave Kreskowiak10-Mar-07 4:03 

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.