Search results for query: *

  1. V

    runtime binding

    i have a form ( form2) , which can be called by any other form. all other forms have a sub test. depending on which form has called form2 , sub test is executed ( the procedure of the calling form ). the code below works fine in vb6 , but equivalent vb.net code got problems. ============== Vb...
  2. V

    listbox additem

    i want to add items in a listbox along with its corresponding id.my code :Private Sub Form1_Load(ByVal sender As System.Object, _ ByVal e As System.EventArgs) Handles MyBase.Load Dim obj As class1obj = New class1 obj.name = "xyz" obj.id = 1 ListBox1.Items.Add(obj) obj = New...
Back
Top