Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menúint max = int.Parse(mision.SelectedValue);
Cita de: seba123neo en 31 Mayo 2012, 21:14 PM
si tendrias una base de datos queda mas elegante que poner los items fijos en el codigo.
aunque tambien esta la solucion de crear una clase con el ID y nombre, y luego usar la propiedad .DataSource del combo para hacer un "SELECT" (como si fuera una base de datos, pero sobre una coleccion de clases, asi te trae todos los que coinciden con el ID seleccionado, es re facil.
How can one ComboBox's items be determined by another?
_with2.DataSource = CountryList.Where(f => f.ContinentID = mision.SelectedValue).ToList;
private void mision_SelectedIndexChanged(object sender, EventArgs e)
{
if (mision.SelectedIndex == 0)
{
nmision.Items.Add("1"); // AGREGAR AL SEGUNDO COMBOBOX
}
}
if (mision.SelectedIndex == 0)
{
if (nmision.SelectedIndex == 15)
{
// HACER ALGO
}
}
private void button1_Click(object sender, EventArgs e)
{
for(int z = 0; z < (aquí quiero insertar el valor del textbox que sera un numero); z++)
{
if (comboBox1.SelectedIndex == 1)
{
MessageBox.Show("Se ha elegido el 2");
}
if (comboBox1.SelectedIndex == 2)
{
MessageBox.Show("Se ha elegido el 3");
}
if (comboBox1.SelectedIndex == -1)
{
MessageBox.Show("Elige un numero de flotas");
}
}
}
private static Bitmap GetWindowImage(IntPtr hWnd, Size size) // CODIGO PARA TOMAR SCREENSHOT (LO ENCONTRE POR INTERNET)
{
try
{
if (size.IsEmpty || size.Height < 0 || size.Width < 0) return null;
Bitmap bmp = new Bitmap(size.Width, size.Height, System.Drawing.Imaging.PixelFormat.Format24bppRgb);
Graphics g = Graphics.FromImage(bmp);
IntPtr dc = g.GetHdc();
if (PrintWindow(hWnd, dc, 0) == 0)
{
MessageBox.Show("Fallo");
}
g.ReleaseHdc();
g.Dispose();
CloseHandle(dc);
return bmp;
}
catch { return null; }
}
private Bitmap getBrowserSS() // TOMO UN SCREENSHOT DEL WEBBROWSER
{
return GetWindowImage(webBrowser1.Handle, webBrowser1.Size);
}
private void button1_Click_1(object sender, EventArgs e)
{
Bitmap recursos = new Bitmap(@"D:\GO\cuadro.bmp");
int X, Y;
for (X = 0; X < getBrowserSS().Width; X++)
{
for (Y = 0; Y < getBrowserSS().Height; Y++)
{
if (getBrowserSS().GetPixel(X, Y) == recursos.GetPixel(X, Y))
{
// ME GUSTARIA QUE ME DEVUELVA DONDE SE ENCUENTRA MI IMAGEN CUADRO.PNG
}
else
{
MessageBox.Show("Algo esta mal");
}
}
}
}