Click here to Skip to main content
15,891,672 members
Home / Discussions / C#
   

C#

 
GeneralRe: PDF Library Pin
Paul Conrad4-Aug-08 10:49
professionalPaul Conrad4-Aug-08 10:49 
GeneralRe: PDF Library Pin
CodingYoshi4-Aug-08 12:30
CodingYoshi4-Aug-08 12:30 
GeneralRe: PDF Library Pin
ramyanaidu4-Aug-08 17:56
ramyanaidu4-Aug-08 17:56 
QuestionImage Path From Image List Pin
vayanan4-Aug-08 8:08
vayanan4-Aug-08 8:08 
AnswerRe: Image Path From Image List Pin
C1AllenS4-Aug-08 8:52
C1AllenS4-Aug-08 8:52 
GeneralRe: Image Path From Image List Pin
User 66584-Aug-08 9:19
User 66584-Aug-08 9:19 
GeneralRe: Image Path From Image List Pin
vayanan4-Aug-08 11:18
vayanan4-Aug-08 11:18 
AnswerRe: Image Path From Image List Pin
nelsonpaixao5-Aug-08 13:35
nelsonpaixao5-Aug-08 13:35 
Questionwindows service on event rise Pin
balu123454-Aug-08 7:13
balu123454-Aug-08 7:13 
AnswerRe: windows service on event rise Pin
vikas amin4-Aug-08 7:20
vikas amin4-Aug-08 7:20 
GeneralRe: windows service on event rise Pin
balu123454-Aug-08 8:09
balu123454-Aug-08 8:09 
Questionpanels Pin
benjamin yap4-Aug-08 6:38
benjamin yap4-Aug-08 6:38 
AnswerRe: panels Pin
C1AllenS4-Aug-08 9:08
C1AllenS4-Aug-08 9:08 
GeneralRe: panels Pin
benjamin yap4-Aug-08 16:14
benjamin yap4-Aug-08 16:14 
QuestionTo find if an excel file has got VBA code in it irrespective of the version of excel(it can be any version of excel) Pin
Suj_784-Aug-08 5:55
Suj_784-Aug-08 5:55 
AnswerRe: To find if an excel file has got VBA code in it irrespective of the version of excel(it can be any version of excel) Pin
Alaric_4-Aug-08 8:53
professionalAlaric_4-Aug-08 8:53 
Questionchange datagridview column name Pin
benjamin yap4-Aug-08 5:50
benjamin yap4-Aug-08 5:50 
AnswerRe: change datagridview column name Pin
Gulfraz Khan4-Aug-08 6:06
Gulfraz Khan4-Aug-08 6:06 
GeneralRe: change datagridview column name Pin
nelsonpaixao4-Aug-08 12:53
nelsonpaixao4-Aug-08 12:53 
GeneralRe: change datagridview column name Pin
benjamin yap4-Aug-08 16:37
benjamin yap4-Aug-08 16:37 
QuestionFancy search function Pin
Dewald4-Aug-08 5:01
Dewald4-Aug-08 5:01 
I'm hoping someone can nudge my thoughts in the right direction here. I'm trying to implement a semi-advanced search function.

Basically, what I have is, a DataGridView and a TextBox. The
DataGridView<code> was populated manualy (ie. not databinded to a DB or something) and has two columns, one for Scientific Name and one for Common Name (I'm listing species of birds or fish or whatever in the grid).<br />
<br />
I would now like to have the user type any part of a name into the <code>TextBox
and after every keypress the first row in the DataGridView that matches the text gets highlighted.

One (not so elegant) way of doing this would be to override the TextChanged event of the TextBox and do a foreach on all the rows in the DataGridView, looking for the entered text in each row and then highlighting it if a matchis found. The problem is that the grid can have several thousand entries and a foreach search might take much too long.

Any ideas will be appreciated.
AnswerRe: Fancy search function Pin
Gulfraz Khan4-Aug-08 5:13
Gulfraz Khan4-Aug-08 5:13 
AnswerRe: Fancy search function Pin
Guffa4-Aug-08 7:05
Guffa4-Aug-08 7:05 
AnswerRe: Fancy search function Pin
Guffa4-Aug-08 10:21
Guffa4-Aug-08 10:21 
GeneralRe: Fancy search function Pin
DaveyM694-Aug-08 10:34
professionalDaveyM694-Aug-08 10:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.