Click here to Skip to main content
15,890,946 members
Home / Discussions / C#
   

C#

 
GeneralRe: Quickly need a listing of classes/methods/signatures - how? Pin
sherifffruitfly27-Mar-07 6:53
sherifffruitfly27-Mar-07 6:53 
QuestionCan you compile in C# i.e. cntrl F7 Pin
LCI27-Mar-07 6:03
LCI27-Mar-07 6:03 
AnswerRe: Can you compile in C# i.e. cntrl F7 Pin
Not Active27-Mar-07 6:12
mentorNot Active27-Mar-07 6:12 
AnswerRe: Can you compile in C# i.e. cntrl F7 Pin
Christian Graus27-Mar-07 6:12
protectorChristian Graus27-Mar-07 6:12 
QuestionHow to get the data in the ListView? Pin
Khoramdin27-Mar-07 5:25
Khoramdin27-Mar-07 5:25 
AnswerRe: How to get the data in the ListView? Pin
Saikek27-Mar-07 7:01
Saikek27-Mar-07 7:01 
QuestionRe: How to get the data in the ListView? Pin
Khoramdin27-Mar-07 7:07
Khoramdin27-Mar-07 7:07 
AnswerRe: How to get the data in the ListView? Pin
Saikek27-Mar-07 8:41
Saikek27-Mar-07 8:41 
You can try the option ListView.FindItemWithText - that finds item with text, or more interestin (like lingvo style) create textbox, listbox and make event on textbox text changing:

private void searchBox_TextChanged(object sender, EventArgs e)
{
ListViewItem foundItem =
textListView.FindItemWithText(searchBox.Text, false, 0, true);
if (foundItem != null)
{
textListView.TopItem = foundItem;

}
}

One nation - underground

QuestionC# member vars Pin
LCI27-Mar-07 5:18
LCI27-Mar-07 5:18 
AnswerRe: C# member vars Pin
Not Active27-Mar-07 5:26
mentorNot Active27-Mar-07 5:26 
GeneralRe: C# member vars Pin
LCI27-Mar-07 5:32
LCI27-Mar-07 5:32 
AnswerRe: C# member vars Pin
Christian Graus27-Mar-07 5:30
protectorChristian Graus27-Mar-07 5:30 
GeneralRe: C# member vars Pin
LCI27-Mar-07 5:36
LCI27-Mar-07 5:36 
GeneralRe: C# member vars Pin
Christian Graus27-Mar-07 5:40
protectorChristian Graus27-Mar-07 5:40 
GeneralRe: C# member vars Pin
Not Active27-Mar-07 5:42
mentorNot Active27-Mar-07 5:42 
GeneralRe: C# member vars Pin
LCI27-Mar-07 6:05
LCI27-Mar-07 6:05 
QuestionAdd-in that's customize your Vistual Studio 2005 enviorment Pin
Saikek27-Mar-07 5:05
Saikek27-Mar-07 5:05 
AnswerRe: Add-in that's customize your Vistual Studio 2005 enviorment Pin
Not Active27-Mar-07 5:18
mentorNot Active27-Mar-07 5:18 
GeneralRe: Add-in that's customize your Vistual Studio 2005 enviorment Pin
Saikek27-Mar-07 7:03
Saikek27-Mar-07 7:03 
QuestionReading Binary files Pin
elwoofy27-Mar-07 5:03
elwoofy27-Mar-07 5:03 
AnswerBinary Data Pin
Ennis Ray Lynch, Jr.27-Mar-07 5:11
Ennis Ray Lynch, Jr.27-Mar-07 5:11 
Questionimage lists Pin
Member 379148327-Mar-07 4:52
Member 379148327-Mar-07 4:52 
AnswerRe: image lists Pin
Christian Graus27-Mar-07 6:31
protectorChristian Graus27-Mar-07 6:31 
AnswerRe: image lists Pin
BoneSoft27-Mar-07 6:34
BoneSoft27-Mar-07 6:34 
QuestionHow to compare password from notepad with in the textbox Pin
krajah1027-Mar-07 4:39
krajah1027-Mar-07 4:39 

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.