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

.NET (Core and Framework)

 
AnswerRe: installation problem Pin
KreativeKai16-Feb-06 4:28
professionalKreativeKai16-Feb-06 4:28 
QuestionRun atlas under 1.1 .net framework Pin
RUDOLFYAN13-Feb-06 18:43
RUDOLFYAN13-Feb-06 18:43 
AnswerRe: Run atlas under 1.1 .net framework Pin
Kevin McFarlane14-Feb-06 10:19
Kevin McFarlane14-Feb-06 10:19 
QuestionCompact Framework toolbar Pin
Federico Milano13-Feb-06 9:27
Federico Milano13-Feb-06 9:27 
Question"Automation Server can't create object" Pin
Jader8913-Feb-06 6:28
Jader8913-Feb-06 6:28 
QuestionICustomFormatter and IFormattable Pin
Jason McBurney13-Feb-06 5:33
Jason McBurney13-Feb-06 5:33 
QuestionHandling Events inside a "while" clause Pin
ninodago13-Feb-06 5:05
ninodago13-Feb-06 5:05 
AnswerRe: Handling Events inside a "while" clause Pin
HumanOsc13-Feb-06 5:49
HumanOsc13-Feb-06 5:49 
1.) You can use the SelectedIndex Property to check if an item is selected...

<br />
if(listView.SelectedIndex == -1)<br />
  return;<br />


2.) It's recommend to disabling the updateing mechanism when you are adding items...

<br />
// disable updating mechanism<br />
listView.BeginUpdate();<br />
<br />
while(...)<br />
{<br />
// adding items here<br />
}<br />
<br />
// enable updating mechanism<br />
listView.EndUpdate();<br />
<br />


By the way you should named you variables more significant...
Wink | ;)
GeneralRe: Handling Events inside a "while" clause Pin
ninodago14-Feb-06 1:00
ninodago14-Feb-06 1:00 
GeneralRe: Handling Events inside a "while" clause Pin
Guffa13-Feb-06 6:03
Guffa13-Feb-06 6:03 
GeneralRe: Handling Events inside a "while" clause Pin
ninodago13-Feb-06 22:55
ninodago13-Feb-06 22:55 
GeneralRe: Handling Events inside a &quot;while&quot; clause Pin
HumanOsc14-Feb-06 1:27
HumanOsc14-Feb-06 1:27 
GeneralRe: Handling Events inside a &quot;while&quot; clause Pin
ninodago14-Feb-06 6:02
ninodago14-Feb-06 6:02 
Questionreading third party Snap-in information in MMC programatically Pin
krompo13-Feb-06 4:36
krompo13-Feb-06 4:36 
QuestionSocket Exception Delay?? Pin
ckaneAV10-Feb-06 9:04
ckaneAV10-Feb-06 9:04 
Questionactivex .ocx with c# and visual studio .net Pin
kopi_b10-Feb-06 3:14
kopi_b10-Feb-06 3:14 
AnswerRe: activex .ocx with c# and visual studio .net Pin
Dave Kreskowiak10-Feb-06 5:56
mveDave Kreskowiak10-Feb-06 5:56 
Question.Net Framework Security Pin
Indu Mahadevan9-Feb-06 19:03
Indu Mahadevan9-Feb-06 19:03 
QuestionFramework version issue Pin
Lisana9-Feb-06 11:01
Lisana9-Feb-06 11:01 
AnswerRe: Framework version issue Pin
Dave Kreskowiak10-Feb-06 6:06
mveDave Kreskowiak10-Feb-06 6:06 
GeneralRe: Framework version issue Pin
Lisana10-Feb-06 6:16
Lisana10-Feb-06 6:16 
GeneralRe: Framework version issue Pin
Dave Kreskowiak10-Feb-06 9:19
mveDave Kreskowiak10-Feb-06 9:19 
GeneralRe: Framework version issue Pin
Lisana10-Feb-06 10:14
Lisana10-Feb-06 10:14 
GeneralRe: Framework version issue Pin
Dave Kreskowiak10-Feb-06 14:07
mveDave Kreskowiak10-Feb-06 14:07 
QuestionRecomend me a profiler for 2.0 Pin
ika29-Feb-06 8:27
ika29-Feb-06 8:27 

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.