TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Alex Maul
NA
3
837
Iterate through RichTextBox in a static thread?
Aug 24 2015 1:45 PM
so as the title says.. i have a thread which has to be static
Thread runThread = new Thread(running);
static void running() // this has to be static else i get an error on "new Thread(running)"
{
//in here i want to iterate through each line in RichTextBox but i can't because RichTextBox isn't static...
}
btw im new to c# so dont blame me if i did a big mistake or something ... just want to know the problem and how i could do it even better so i can improve.
thanks for any help :)
Or maybe you know how to create a non static thread... idk really :/
Reply
Answers (
1
)
Reverse the odd words using c# [URGENT PLEASE]
How to reverse characters of words in a sentence??