Muchas gracias y tranquilo no quiero tor para nada ilegal.
Solo me apetecía probarlo.
Solo me apetecía probarlo.
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úCitarno tengo antivirus instalado en mi laptop
mouse_event(MOUSEEVENTF_ABSOLUTE | MOUSEEVENTF_MOVE | MOUSEEVENTF_LEFTDOWN | MOUSEEVENTF_LEFTUP, x, y, 0, 0);
mouse_event( MOUSEEVENTF_LEFTUP, x, y, 0, 0)
mouse_event (MOUSEEVENTF_DOWN,x,y,0,0
mouse_event(MOUSEEVENTF_ABSOLUTE | MOUSEEVENTF_MOVE | MOUSEEVENTF_LEFTDOWN | MOUSEEVENTF_LEFTUP, x,y,0,0);
mouse_event(MOUSEEVENTF_LEFTUP | MOUSEEVENTF_MOVE | MOUSEEVENTF_ABSOLUTE, x, y, 0, 0);
mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0,0 ,0);
mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, 0);
mouse_event(MOUSEEVENTF_LEFTUP,x, y, 0, 0);
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}
private void Form2_Load(object sender, EventArgs e)
{
bool Conection = NetworkInterface.GetIsNetworkAvailable();
if (Conection == true)
{
label1.Text = "Conexión realizada con éxito";
button1.Visible = true;
}
else
{
label1.Text = " Conexión fallida";
}
}
public partial class Form2 : Form
{
[DllImport("wininet.dll")]
private extern static bool InternetGetConnectedState(out int Description, int ReservedValue);
public Form2()
{
InitializeComponent();
}
private void Form2_Load(object sender, EventArgs e)
{
int Desc;
MessageBox.Show(InternetGetConnectedState(out Desc, 0).ToString());
}