473,394 Members | 1,800 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

Trigger an ImageClick from a selecteditemchanged changed

Hi guys

I have a search system with a textbox and an image button. You click the
image to perform the search. Works fine.

However, the matter is complicated by a drop down list, which gives you a
number of search options (search cotacts, search projects, etc).

Basically, I want to call the search function from the onchange event of the
drop down. I could write the search code into 2 functions, but I just
wondered if there was an easier way?

At the moment both function want different EventArgs
(System.Web.UI.ImageClickEventArgs and System.EventArgs).

Any ideas?

Cheers

Dan
Nov 19 '05 #1
1 1066
Make on general function that both events call

void OnImageClick(object sender, System.Web.UI.ImageClickEventArgs e)
{
PerformSearch(MyTextBox.Text);
}

void OnDropDownChanged(object sender, EventArgs e)
{
PerformSearch(MyTextBox.Text);
}

void PerformSearch(string str)
{
//Common code goes here
}
HTH

"dhnriverside" <da*@musoswire.com> wrote in message
news:11**********************************@microsof t.com...
Hi guys

I have a search system with a textbox and an image button. You click the
image to perform the search. Works fine.

However, the matter is complicated by a drop down list, which gives you a
number of search options (search cotacts, search projects, etc).

Basically, I want to call the search function from the onchange event of
the
drop down. I could write the search code into 2 functions, but I just
wondered if there was an easier way?

At the moment both function want different EventArgs
(System.Web.UI.ImageClickEventArgs and System.EventArgs).

Any ideas?

Cheers

Dan

Nov 19 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Ivan Rakyta | last post by:
Hi, does anyone experienced this behaviour? I have a ComboBox with databind. If I change some value in the datarow the ComboBox is bound to, it fires SelectedItemChanged event! The value I have...
1
by: Ziver MALHASOGLU | last post by:
Hello, i want to temporary disable the listBox object's selectedItemChanged event. how can i achieve this? Regards, Ziver
0
by: Ivan Rakyta | last post by:
Hi, does anyone experienced this behaviour? I have a ComboBox with databind. If I change some value in the datarow the ComboBox is bound to, it fires SelectedItemChanged event! The value I have...
0
by: Ivan Rakyta | last post by:
Hi, does anyone experienced this behaviour? I have a ComboBox with databind. If I change some value in the datarow the ComboBox is bound to, it fires SelectedItemChanged event! The value I have...
0
by: Jeffrey Walton | last post by:
Hi All, Sorry about this beginner question (I'm coming up from Visual C++ or Down from VB)... Also, pickings are slim for this topic on MSDN . does not really apply, but it was a keyword hit...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.