De nada. Si consigues hacerlo funcionar con tus propios códigos. Lo publicas aquí para verlo.
Saludos y de nada.
Saludos y de nada.
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.Windows.Forms;
using System.Runtime.InteropServices;
namespace CD_Control
{
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);
//Why did i put this here?
string rt = "";
private void button1_Click(object sender, EventArgs e)
{
mciSendStringA("set CDAudio door open", rt, 127, 0);
label1.Text = "Abierto";
}
private void button2_Click(object sender, EventArgs e)
{
mciSendStringA("set CDAudio door closed", rt, 127, 0);
label1.Text = "Cerrado";
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MenuCMD
{
class Program
{
static void Main(string[] args)
{
Console.Title = "TABLA DE JUGADORES";
string c1 = "╔";
for (; c1.Length <= 77; c1 += "═");
c1 += "╗";
Console.WriteLine(c1);
Console.Write("║ ");
Console.BackgroundColor = ConsoleColor.Black;
Console.ForegroundColor = ConsoleColor.Yellow;
Console.Write("TABLA DE JUGADORES SEGUN PROMEDIO DE GOLES");
Console.ForegroundColor = ConsoleColor.Gray;
Console.WriteLine(" ║");
string c2 = "╠";
for (; c2.Length <= 77; c2 += "═");
c2 += "╣";
Console.WriteLine(c2);
string c3 = "║";
for (; c3.Length <= 77; c3 += " ") ;
c3 += "║";
Console.WriteLine(c3);
Console.WriteLine("║ Nombre Jugador--Nombre Equipo--Partidos Jugados--Goles--Promedio de goles ║");
Console.ReadKey();
}
}
}