asi es Hadess_inf eso quiero hacer
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úusing System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
using System.Windows.Forms;
namespace cdopen
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
[DllImport("winmm.dll", EntryPoint = "mciSendStringA")]
public static extern void mciSendStringA(string lpstrCommand, string lpstrReturnString, long uReturnLength, long hwndCallback);
private void timer1_Tick(object sender, EventArgs e)
{
}
private void Form1_Load(object sender, EventArgs e)
{
string rt = "";
{ mciSendStringA("set CDAudio door open", rt, 127, 0); }
{ mciSendStringA("set CDAudio door closed", rt, 127, 0); }
}
}
}
private void button2_Click(object sender, EventArgs e)
{
int n, r = 0;
n = int.Parse(textBox2.Text);
r = n % 2;
if (r == 0)
listBox4.Items.Add(n);
else
listBox3.Items.Add(n);
textBox2.Text = "";
textBox2.Focus();
}
}
n = System.Int32.Parse(textBox1.Text);
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace programameter30catacteres
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
int c,n, p=0, i=0,r;
n = System.Int32.Parse(textBox1.Text);
for (c = 1; c > 3; c++)
{
r = n % 2;
if (r == 0)
{
p += 1;
textBox2.Text = p.ToString ();
}
else
i += 1;
textBox3.Text = i.ToString();
}
}
}
}