Search results for query: *

  1. B

    Question Issues with populating a combobox with value and text

    Thanks a lot. Sorry i was doing everything wrong. I am a newbie in VB.NET but thanks for giving me the right direction. I am sure i can move ahead with the code now. Cheers.
  2. B

    Question Issues with populating a combobox with value and text

    Hi , I am trying to so something really simple but cant seem to get it right. Below is what i am trying to acheive 1) Loop through an object (not a datatable) and add items to a combobox. Do While Not pRow Is Nothing...
  3. B

    Question communication between a class and multiple forms

    Thanks Ian. This worked. I just had to declare form objects as shared readonly in the class and then access it from outside just like you mentioned. Awesome!!! Thanks a lot. Cheers
  4. B

    Question communication between a class and multiple forms

    Hi Ian, Thank i will try this and get back to you. Cheers
  5. B

    Question communication between a class and multiple forms

    Hi Ian, Thanks. I am creating a add-in tool, which on click executes MouseDown Event in a class file. In the mouse down event, based on certain conditions labels, comboboxes, text fields in form1, form 2 and form3 are assigned with values. From the same event Form1.show is executed. Till this...
  6. B

    Question communication between a class and multiple forms

    Hi, I have a VB code which i want to convert to VB.NET code. I am trying to understand how to do the below in VB.NET -create a class (abc.cs file) In the class itself if condition a = true then assign values to frm1, frm 2 and frm3. Now from this class i can call frm1. But once from 1 is...
Back
Top