Click here to Skip to main content
15,911,789 members
Home / Discussions / C#
   

C#

 
QuestionHow to access Remote Desktop in C# Pin
Rajesh_K_Sharma25-Oct-07 16:20
Rajesh_K_Sharma25-Oct-07 16:20 
AnswerRe: How to access Remote Desktop in C# Pin
Abhijit Jana25-Oct-07 18:34
professionalAbhijit Jana25-Oct-07 18:34 
AnswerRe: How to access Remote Desktop in C# Pin
Spunky Coder25-Oct-07 19:59
Spunky Coder25-Oct-07 19:59 
GeneralRe: How to access Remote Desktop in C# Pin
Abhijit Jana25-Oct-07 20:22
professionalAbhijit Jana25-Oct-07 20:22 
QuestionRe: How to access Remote Desktop in C# Pin
spiritboy25-Dec-08 2:22
spiritboy25-Dec-08 2:22 
AnswerRe: How to access Remote Desktop in C# Pin
majongan22-Oct-09 22:56
majongan22-Oct-09 22:56 
AnswerRe: How to access Remote Desktop in C# Pin
majongan22-Oct-09 22:58
majongan22-Oct-09 22:58 
QuestionAlternative to listbox/listview Pin
QzRz25-Oct-07 15:09
QzRz25-Oct-07 15:09 
Hello

I got a list of words I need to show the user of my application.
The list is around 1000 words.

I have tried to fill the words in both a listbox and a listview(with view set to detail and 1 columns)

I have a button which refres the data in the list, simply by removing them all and then re-fill them, if the list isnt too long it doesnt bother the user, but if the list is 1000 lines (as in my situation) it takes too long time to enter all the data again.

I thought there might be some alternative to listbox/listview which is made to handle alot of lines?

Otherwise it is probably my code which is wrong, however i'm still in the beginnign phase Smile | :)

To make an easy test I use this funktion (same for-loop to add data to the listview)
private void Test() 
{
   this.listBox1.Items.Clear();
   for (int i = 0; i < 1000; i++)
       this.listBox1.Items.Add(i);
}


if anyone got something else I can look up in a book or on the internet to find another way to handle this I would be really happy.
AnswerRe: Alternative to listbox/listview Pin
Luc Pattyn25-Oct-07 16:13
sitebuilderLuc Pattyn25-Oct-07 16:13 
GeneralRe: Alternative to listbox/listview Pin
QzRz26-Oct-07 2:14
QzRz26-Oct-07 2:14 
QuestionObject Reference Required (CS0120) Form Access Pin
codemunkeh25-Oct-07 12:35
codemunkeh25-Oct-07 12:35 
AnswerRe: Object Reference Required (CS0120) Form Access Pin
Anthony Mushrow25-Oct-07 13:04
professionalAnthony Mushrow25-Oct-07 13:04 
GeneralRe: Object Reference Required (CS0120) Form Access Pin
codemunkeh25-Oct-07 13:07
codemunkeh25-Oct-07 13:07 
GeneralRe: Object Reference Required (CS0120) Form Access Pin
codemunkeh25-Oct-07 13:13
codemunkeh25-Oct-07 13:13 
GeneralRe: Object Reference Required (CS0120) Form Access Pin
Anthony Mushrow25-Oct-07 13:43
professionalAnthony Mushrow25-Oct-07 13:43 
QuestionBluetooth code sample C# or java Pin
Yustme25-Oct-07 12:29
Yustme25-Oct-07 12:29 
AnswerRe: Bluetooth code sample C# or java Pin
ekynox26-Oct-07 12:56
ekynox26-Oct-07 12:56 
QuestionHow can I make an equal between a String and a Table atribute? Pin
khalidelmeknesi25-Oct-07 10:46
khalidelmeknesi25-Oct-07 10:46 
AnswerRe: How can I make an equal between a String and a Table atribute? Pin
Christian Graus25-Oct-07 11:17
protectorChristian Graus25-Oct-07 11:17 
QuestionLog off windows screen Pin
clint198225-Oct-07 10:12
clint198225-Oct-07 10:12 
Questionassign number to variable name Pin
conemajstor25-Oct-07 9:26
conemajstor25-Oct-07 9:26 
AnswerRe: assign number to variable name Pin
pmarfleet25-Oct-07 9:34
pmarfleet25-Oct-07 9:34 
GeneralRe: assign number to variable name Pin
conemajstor25-Oct-07 9:57
conemajstor25-Oct-07 9:57 
GeneralRe: assign number to variable name Pin
pmarfleet25-Oct-07 10:01
pmarfleet25-Oct-07 10:01 
GeneralRe: assign number to variable name Pin
conemajstor25-Oct-07 10:09
conemajstor25-Oct-07 10:09 

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.