Click here to Skip to main content
15,885,869 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralApplication Protection Pin
Member 132035214-Sep-04 22:18
Member 132035214-Sep-04 22:18 
GeneralActiveX problem Pin
archetype14-Sep-04 1:36
archetype14-Sep-04 1:36 
Generalcharts in visual c++ Pin
dana_krycek14-Sep-04 1:35
dana_krycek14-Sep-04 1:35 
GeneralRe: charts in visual c++ Pin
ursus zeta15-Sep-04 13:51
ursus zeta15-Sep-04 13:51 
GeneralRe: charts in visual c++ Pin
dana_krycek16-Sep-04 8:24
dana_krycek16-Sep-04 8:24 
GeneralSorry for not Replying Pin
ursus zeta22-Sep-04 11:51
ursus zeta22-Sep-04 11:51 
Generalhelp in list view control Pin
bora3ee13-Sep-04 9:51
bora3ee13-Sep-04 9:51 
GeneralRe: help in list view control Pin
Tomas Petricek15-Sep-04 14:29
Tomas Petricek15-Sep-04 14:29 
Hi, there isn't any simplier method, than store name of selected item in local variable, refresh listview and find item with same name as you have in local variable.

Something like this:

string name="";
if (view.SelectedItems.Length!=0)
  name=view.SelectedItems[0].Text;

// refresh listview

for(int i=0; i<view.Items.Length; i++)
{
  if (view.Items[i].Text==name) 
  { view.SelectedIndices[i]=true; break; }
}


Smile | :)

Tomáš Petříček (Microsoft C# MVP)
www.eeeksoft.net | Photos | Fractal Snow

Generalhelp in process class Pin
bora3ee13-Sep-04 9:49
bora3ee13-Sep-04 9:49 
QuestionIs there a way to use a DataTable in COM ? Pin
DavPen13-Sep-04 8:27
DavPen13-Sep-04 8:27 
GeneralImage filter for black and white images in GDI+ Pin
BLBANET13-Sep-04 4:07
BLBANET13-Sep-04 4:07 
GeneralRe: Image filter for black and white images in GDI+ Pin
Anonymous15-Sep-04 7:25
Anonymous15-Sep-04 7:25 
GeneralMultithreaded Design Question Pin
tulip1234512-Sep-04 0:01
tulip1234512-Sep-04 0:01 
QuestionHow to catch mouse click message? Pin
Volvere10-Sep-04 14:02
Volvere10-Sep-04 14:02 
AnswerRe: How to catch mouse click message? Pin
Tomas Petricek11-Sep-04 14:34
Tomas Petricek11-Sep-04 14:34 
GeneralCustomizing the .Net framework Launch Condition Message Pin
kornstyle10-Sep-04 6:20
kornstyle10-Sep-04 6:20 
GeneralRe: Customizing the .Net framework Launch Condition Message Pin
kornstyle15-Sep-04 3:45
kornstyle15-Sep-04 3:45 
QuestionCheck Process Running? Pin
tsunsau7179-Sep-04 23:01
tsunsau7179-Sep-04 23:01 
AnswerRe: Check Process Running? Pin
Baris Kurtlutepe11-Sep-04 8:42
Baris Kurtlutepe11-Sep-04 8:42 
QuestionHow to know I am on a frame(GroupBox) Pin
Sreepathi9-Sep-04 15:54
Sreepathi9-Sep-04 15:54 
AnswerRe: How to know I am on a frame(GroupBox) Pin
Anonymous12-Sep-04 12:02
Anonymous12-Sep-04 12:02 
GeneralRe: How to know I am on a frame(GroupBox) Pin
Anonymous27-Sep-04 10:49
Anonymous27-Sep-04 10:49 
GeneralReplication Pin
mathon9-Sep-04 4:15
mathon9-Sep-04 4:15 
GeneralMultiple References Pin
Ben Swann7-Sep-04 21:57
Ben Swann7-Sep-04 21:57 
General.NET Applications working on non .NET Platforms Pin
karanba7-Sep-04 21:43
karanba7-Sep-04 21:43 

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.