-1
I am new to programming and I was able to make this code with help, only there is an error. follow picture.
public sealed partial class MainPage : Page
{
private MySqlConnection _connection;
DispatcherTimer mytimer = new DispatcherTimer();
int currentcout = 0;
public MainPage()
{
this.InitializeComponent();
mytimer.Interval = new TimeSpan(0, 0, 0, 1, 0);
mytimer.Tick += new EventHandler(mytimer_Tick);
}
private void mytimer_Tick(object sender, EventArgs e)
{
}
}
Still error, even with the amendments passed by the previous colleague.
Behold: How NOT to Ask Questions Manual - Post Code as Image
– user28595
In place of pictures post the class code, then you inform what error is happening.
– Vinicius Fernandes
I entered the code, as reported.
– Jon