Ver Mensaje Individual
  #1 (permalink)  
Antiguo 04/12/2007, 08:07
universitario22
 
Fecha de Ingreso: diciembre-2007
Mensajes: 3
Antigüedad: 17 años, 4 meses
Puntos: 0
Mensaje Problemas con matriz en csharp

hola buenas; tengo un problema con una matriz de datos que al quererla pintar mediante un drawstring en un panel no me acaba de funcionar correctamente. os copio parte del codigo para ver si veis el error. Gracias por vuestra atención.




int x;
int y;
int p=0;
int s=0;
String drawString = tablero[p, s];
Font drawFont = new Font("Arial", 16);
SolidBrush drawBrush = new SolidBrush(Color.Black);


for (x = -33; x < 259; x++)
{
x = x + 33;
for (y = -33; y < 259; y++)
{
y = y + 33;
drawString = tablero[p, s];
G.DrawString(drawString, drawFont, drawBrush, x, y);


} p++;
s++;


}

Última edición por universitario22; 04/12/2007 a las 08:15 Razón: i