Hi,
actually my problem is with combobox event handling=2E when i click=
on some pictureBox control i want to call ComboBox click event=
directly,now upto some extent it's fine =2E i mean when i click on=
picturebox it is calling the code that is written in=
ComboBox_click() event but that is not enough i want to have=
same response as when u click on a combobox(ie=2E clicking=
combobox displays dropdown list)=2E so even i want to do same=
when user clicks on picturebox not only it shld call=
ComboBox_click() event but it should display that dragdrop list=
also same way as it is calling the ComboBox_click() event=2E
It would be really helping if you can provide any suggestions=2E

--------------------------------


From: s Domadia

-----------------------
Posted by a user from =2ENET 247 (http://www=2Edotnet247=2Ecom/)

<Id>wkOTOM6jGU24kKYKuHSPkg=3D=3D</Id>

Re: problem with direcly calling combobox event by Tim

Tim
Sat May 15 01:22:47 CDT 2004

You can programmatically display the ComboBox's list by setting its
DroppedDown property to True.

[C#]
this.comboBox1.DroppedDown = true;

[VB.Net]
Me.ComboBox1.DroppedDown = True

--
Tim Wilson
.Net Compact Framework MVP
{cf147fdf-893d-4a88-b258-22f68a3dbc6a}
"s Domadia via .NET 247" <anonymous@dotnet247.com> wrote in message
news:O9OAnLkOEHA.2780@TK2MSFTNGP09.phx.gbl...
Hi,
actually my problem is with combobox event handling. when i click on some
pictureBox control i want to call ComboBox click event directly,now upto
some extent it's fine . i mean when i click on picturebox it is calling the
code that is written in ComboBox_click() event but that is not enough i want
to have same response as when u click on a combobox(ie. clicking combobox
displays dropdown list). so even i want to do same when user clicks on
picturebox not only it shld call ComboBox_click() event but it should
display that dragdrop list also same way as it is calling the
ComboBox_click() event.
It would be really helping if you can provide any suggestions.

--------------------------------


From: s Domadia

-----------------------
Posted by a user from .NET 247 (http://www.dotnet247.com/)

<Id>wkOTOM6jGU24kKYKuHSPkg==</Id>