Click here to Skip to main content
15,897,273 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to draw the table? Pin
Guffa16-Sep-07 12:43
Guffa16-Sep-07 12:43 
GeneralRe: How to draw the table? Pin
Seryoga16-Sep-07 19:24
Seryoga16-Sep-07 19:24 
GeneralRe: How to draw the table? Pin
Christian Graus16-Sep-07 12:53
protectorChristian Graus16-Sep-07 12:53 
GeneralRe: How to draw the table? Pin
Paul Conrad16-Sep-07 13:10
professionalPaul Conrad16-Sep-07 13:10 
GeneralRe: How to draw the table? Pin
Christian Graus16-Sep-07 13:19
protectorChristian Graus16-Sep-07 13:19 
GeneralRe: How to draw the table? Pin
Paul Conrad16-Sep-07 13:26
professionalPaul Conrad16-Sep-07 13:26 
GeneralRe: How to draw the table? [modified] Pin
Seryoga16-Sep-07 19:37
Seryoga16-Sep-07 19:37 
GeneralRe: How to draw the table? Pin
Lutosław17-Sep-07 2:42
Lutosław17-Sep-07 2:42 
Specify what do you call a "table". A html table? A DataGrid? A two-dimensional array? Or approximately 704,000,000 more....

Or to be more concrete:
int[,] array = new int[3, 4];
Size size = Size;
Bitmap b = new Bitmap(size.Width, size.Height);
Graphics g = Graphics.FromImage(b);
int dataWidth = array.GetLength(0);
int dataHeight = array.GetLength(1);
for (int x = 0; x < dataWidth; x++) {
	for (int y = 0; y < dataHeight; y++) {
		g.DrawString(array[x, y].ToString(), Font, Brushes.Black,
			(float)size.Width * x / dataWidth, 
			(float)size.Height * y / dataHeight}
}
BackgroundImage = b;


Greetings - Gajatko

Portable.NET is part of DotGNU, a project to build a complete Free Software replacement for .NET - a system that truly belongs to the developers.

GeneralRe: How to draw the table? Pin
Seryoga17-Sep-07 4:17
Seryoga17-Sep-07 4:17 
GeneralRe: How to draw the table? Pin
Lutosław17-Sep-07 5:08
Lutosław17-Sep-07 5:08 
GeneralRe: How to draw the table? Pin
Seryoga17-Sep-07 7:07
Seryoga17-Sep-07 7:07 
GeneralRe: How to draw the table? Pin
Lutosław17-Sep-07 7:58
Lutosław17-Sep-07 7:58 
QuestionComboBox Pin
babbelfisken16-Sep-07 10:16
babbelfisken16-Sep-07 10:16 
AnswerRe: ComboBox Pin
Lutosław16-Sep-07 10:23
Lutosław16-Sep-07 10:23 
QuestionNEW - Birthday Reminders in Outook Pin
zevman16-Sep-07 10:05
zevman16-Sep-07 10:05 
AnswerRe: NEW - Birthday Reminders in Outook Pin
Christian Graus16-Sep-07 10:13
protectorChristian Graus16-Sep-07 10:13 
GeneralRe: NEW - Birthday Reminders in Outook Pin
zevman16-Sep-07 10:26
zevman16-Sep-07 10:26 
AnswerRe: NEW - Birthday Reminders in Outook Pin
Paul Conrad16-Sep-07 10:15
professionalPaul Conrad16-Sep-07 10:15 
QuestionOutlook Birthday Reminders Pin
zevman16-Sep-07 8:17
zevman16-Sep-07 8:17 
AnswerRe: Outlook Birthday Reminders Pin
Paul Conrad16-Sep-07 8:26
professionalPaul Conrad16-Sep-07 8:26 
GeneralRe: Outlook Birthday Reminders Pin
zevman16-Sep-07 9:06
zevman16-Sep-07 9:06 
GeneralRe: Outlook Birthday Reminders Pin
Lutosław16-Sep-07 9:48
Lutosław16-Sep-07 9:48 
GeneralRe: Outlook Birthday Reminders Pin
zevman16-Sep-07 10:08
zevman16-Sep-07 10:08 
GeneralRe: Outlook Birthday Reminders Pin
Paul Conrad16-Sep-07 10:10
professionalPaul Conrad16-Sep-07 10:10 
GeneralRe: Outlook Birthday Reminders Pin
zevman16-Sep-07 10:19
zevman16-Sep-07 10:19 

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.