Click here to Skip to main content
15,887,596 members
Home / Discussions / C#
   

C#

 
QuestionPicture Box created by code not showing up Pin
Jordanwb10-Sep-07 9:09
Jordanwb10-Sep-07 9:09 
AnswerRe: Picture Box created by code not showing up Pin
Ermak8610-Sep-07 9:38
Ermak8610-Sep-07 9:38 
GeneralRe: Picture Box created by code not showing up Pin
Jordanwb10-Sep-07 9:53
Jordanwb10-Sep-07 9:53 
GeneralRe: Picture Box created by code not showing up Pin
Christian Graus10-Sep-07 9:55
protectorChristian Graus10-Sep-07 9:55 
GeneralRe: Picture Box created by code not showing up Pin
Jordanwb10-Sep-07 9:58
Jordanwb10-Sep-07 9:58 
GeneralRe: Picture Box created by code not showing up Pin
Ermak8610-Sep-07 10:02
Ermak8610-Sep-07 10:02 
GeneralRe: Picture Box created by code not showing up Pin
Jordanwb10-Sep-07 10:04
Jordanwb10-Sep-07 10:04 
GeneralRe: Picture Box created by code not showing up Pin
Ermak8610-Sep-07 10:13
Ermak8610-Sep-07 10:13 
your function should looks like this:

private void draw_image(Byte type, int row, int col)
{
PicBoxes[row, col] = new PictureBox();
PicBoxes[row, col].Name = "pictureBox1";
PicBoxes[row, col].Size = new System.Drawing.Size(IMAGE_WIDTH, IMAGE_HEIGHT);
PicBoxes[row, col].Image = image_arr[type];
PicBoxes[row, col].Location = new System.Drawing.Point(col * IMAGE_WIDTH, row * IMAGE_HEIGHT);
this.Controls.Add( PicBoxes[ row, col ] );
}

the bold line is missing in your code.
GeneralRe: Picture Box created by code not showing up Pin
Jordanwb10-Sep-07 10:18
Jordanwb10-Sep-07 10:18 
GeneralRe: Picture Box created by code not showing up Pin
Skippums10-Sep-07 10:34
Skippums10-Sep-07 10:34 
GeneralRe: Picture Box created by code not showing up Pin
Jordanwb10-Sep-07 10:42
Jordanwb10-Sep-07 10:42 
GeneralRe: Picture Box created by code not showing up Pin
Skippums10-Sep-07 10:48
Skippums10-Sep-07 10:48 
GeneralRe: Picture Box created by code not showing up Pin
Ermak8610-Sep-07 10:47
Ermak8610-Sep-07 10:47 
GeneralRe: Picture Box created by code not showing up Pin
Jordanwb10-Sep-07 10:48
Jordanwb10-Sep-07 10:48 
GeneralRe: Picture Box created by code not showing up Pin
Christian Graus10-Sep-07 10:25
protectorChristian Graus10-Sep-07 10:25 
Questionhosting a java applet Pin
zildjohn0110-Sep-07 8:52
zildjohn0110-Sep-07 8:52 
AnswerRe: hosting a java applet Pin
led mike10-Sep-07 9:28
led mike10-Sep-07 9:28 
GeneralRe: hosting a java applet Pin
zildjohn0110-Sep-07 13:07
zildjohn0110-Sep-07 13:07 
GeneralRe: hosting a java applet Pin
led mike11-Sep-07 4:41
led mike11-Sep-07 4:41 
GeneralRe: hosting a java applet Pin
zildjohn0111-Sep-07 10:59
zildjohn0111-Sep-07 10:59 
GeneralRe: hosting a java applet Pin
led mike11-Sep-07 11:43
led mike11-Sep-07 11:43 
QuestionUsing MCISendString for games Pin
pokabot10-Sep-07 8:51
pokabot10-Sep-07 8:51 
QuestionDragDrop problem Pin
Skippums10-Sep-07 8:48
Skippums10-Sep-07 8:48 
AnswerRe: DragDrop problem Pin
Skippums11-Sep-07 4:37
Skippums11-Sep-07 4:37 
QuestionWord docs Pin
jblouir10-Sep-07 8:11
jblouir10-Sep-07 8:11 

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.