I am using vb6.
I want to solve one problem to define clearly i will use a simple example.
Take a form and put a combobox in it
and on change event
Now select differenct name like banana and orange with mouse or arrow keys but you will not get any message,why change event is not accuring when we change name and on what event we will get message as we select different name.
i want that when i change the name it will prompt/message me the selected name.
I want to solve one problem to define clearly i will use a simple example.
Take a form and put a combobox in it
Code:
Private Sub Form_Load() Combo1.AddItem "Apple" Combo1.AddItem "Banana" Combo1.AddItem "orange" Combo1.AddItem "Lemon" End Sub
Code:
Private Sub Combo1_Change() MsgBox Combo1.Text End Sub
i want that when i change the name it will prompt/message me the selected name.
Comment