Normalde Visual Basic'te kodlar:
Public Class Form1
Private Sub timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles timer1.Tick

gibi şeyler olması gerekirken bende:
public partial class Form1 : Form
private void Form1_Load(object sender, EventArgs e)
private void timer1_Tick(object sender, EventArgs e)

gibi kodlar var. VB'de normal zamandaki kodları nasıl kullanabilirim? Doğrusu bu yeni olandan bir şey anlamıyorum.
__________________