Ciao a tutti e complimenti per il forum.
Sto scrivendo una piccola app per windows usando visualstudio.
Praticamente avrà 4 tasti (ognuno di essi invia una richiesta ad un file php per eseguire una determinata operazione... e questo funziona).
Mi sono arenato su un'altra cosa:
dovrei fare una richiesta ad una pagina php ogni 2 secondi e visualizzare i risultati in due display sull'app. ma sto impazzendo da 2 gg e non so come fare.
GRAZIE!!!
Vi posto il codice scritto finora:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace ContatorePlus2._0
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
System.Net.WebClient webClient = new System.Net.WebClient();
string result = webClient.DownloadString("http://192.168.0.10/esegui_postazione.php?azione=aumenta_paz");
}
private void button2_Click(object sender, EventArgs e)
{
System.Net.WebClient webClient = new System.Net.WebClient();
string result = webClient.DownloadString("http://192.168.0.10/esegui_postazione.php?azione=diminuisci_paz");
}
private void button3_Click(object sender, EventArgs e)
{
System.Net.WebClient webClient = new System.Net.WebClient();
string result = webClient.DownloadString("http://192.168.0.10/esegui_postazione.php?azione=aumenta_contatore2");
}
private void button4_Click(object sender, EventArgs e)
{
System.Net.WebClient webClient = new System.Net.WebClient();
string result = webClient.DownloadString("http://192.168.0.10/esegui_postazione.php?azione=diminuisci_contatore1");
}
private void button5_Click(object sender, EventArgs e)
{
System.Net.WebClient webClient = new System.Net.WebClient();
string result = webClient.DownloadString("http://192.168.0.10/esegui_postazione.php?azione=aumenta_contatore2");
}
private void button6_Click(object sender, EventArgs e)
{
System.Net.WebClient webClient = new System.Net.WebClient();
string result = webClient.DownloadString("http://192.168.0.10/esegui_postazione.php?azione=diminuisci_contatore2");
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
}
}
}