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

C#

 
QuestionRe: Is is possible to change the setting of the ContextMenu? [modified] Pin
Khoramdin15-Apr-07 6:05
Khoramdin15-Apr-07 6:05 
Questionshow array elements Pin
ahmad al-omar14-Apr-07 6:21
ahmad al-omar14-Apr-07 6:21 
AnswerRe: show array elements Pin
Thomas Stockwell14-Apr-07 6:37
professionalThomas Stockwell14-Apr-07 6:37 
GeneralRe: show array elements Pin
Colin Angus Mackay14-Apr-07 6:55
Colin Angus Mackay14-Apr-07 6:55 
GeneralRe: show array elements Pin
Thomas Stockwell14-Apr-07 8:16
professionalThomas Stockwell14-Apr-07 8:16 
AnswerRe: show array elements Pin
George L. Jackson14-Apr-07 8:33
George L. Jackson14-Apr-07 8:33 
GeneralRe: show array elements Pin
ahmad al-omar14-Apr-07 9:13
ahmad al-omar14-Apr-07 9:13 
GeneralRe: show array elements Pin
Colin Angus Mackay14-Apr-07 10:33
Colin Angus Mackay14-Apr-07 10:33 
Try this instead:

StringBuilder sb = new StringBuilder();
for(int i=0;i<mouseArray.Length;i++)
{
    sb.Append(mouseArray[i].ToString());
    sb.Append(Environment.NewLine);
}
this.textBox1.Text=sb.ToString();



Upcoming events:
* Glasgow: Introduction to AJAX (2nd May), SQL Server 2005 - XML and XML Query Plans, Mock Objects, SQL Server Reporting Services...

Never write for other people. Write for yourself, because you have a passion for it. -- Marc Clifton


My website

AnswerRe: show array elements Pin
ahmad al-omar14-Apr-07 9:11
ahmad al-omar14-Apr-07 9:11 
AnswerRe: show array elements Pin
Luc Pattyn14-Apr-07 12:53
sitebuilderLuc Pattyn14-Apr-07 12:53 
AnswerRe: show array elements Pin
Jaiprakash M Bankolli14-Apr-07 20:01
Jaiprakash M Bankolli14-Apr-07 20:01 
QuestionRegex problem Pin
hamidkhan14-Apr-07 6:13
hamidkhan14-Apr-07 6:13 
AnswerRe: Regex problem Pin
Guffa14-Apr-07 6:46
Guffa14-Apr-07 6:46 
QuestionRe: Regex problem Pin
hamidkhan14-Apr-07 7:39
hamidkhan14-Apr-07 7:39 
AnswerRe: Regex problem Pin
Guffa14-Apr-07 11:40
Guffa14-Apr-07 11:40 
GeneralRe: Regex problem Pin
hamidkhan15-Apr-07 2:50
hamidkhan15-Apr-07 2:50 
AnswerRe: Regex problem Pin
Guffa15-Apr-07 3:06
Guffa15-Apr-07 3:06 
QuestionRe: Regex problem [modified] Pin
hamidkhan15-Apr-07 3:49
hamidkhan15-Apr-07 3:49 
QuestionSetting default icons on explorer panel? Pin
cyberf14-Apr-07 5:04
cyberf14-Apr-07 5:04 
AnswerRe: Setting default icons on explorer panel? Pin
Judah Gabriel Himango17-Apr-07 3:43
sponsorJudah Gabriel Himango17-Apr-07 3:43 
QuestionThe same words in dictionary + Serilization Pin
Saikek14-Apr-07 4:24
Saikek14-Apr-07 4:24 
AnswerRe: The same words in dictionary + Serilization Pin
George L. Jackson14-Apr-07 8:49
George L. Jackson14-Apr-07 8:49 
GeneralRe: The same words in dictionary + Serilization Pin
Saikek15-Apr-07 4:08
Saikek15-Apr-07 4:08 
QuestionPrinting - Changing a font within a line. Pin
MarkSchultz14-Apr-07 3:36
MarkSchultz14-Apr-07 3:36 
AnswerRe: Printing - Changing a font within a line. Pin
Dave Kreskowiak14-Apr-07 6:36
mveDave Kreskowiak14-Apr-07 6:36 

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.