Search results for query: *

  1. V

    runtime binding

    thanks for the reply. it should be decided at runtime , which form's procedure should be called. http://www.tek-tips.com/viewthread.cfm?qid=1314946
  2. 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...
  3. V

    listbox additem

    hello Darwin, Thanks. it worked
  4. 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