Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~6K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.

7 Posted Topics

Member Avatar for toraj58

Computer programs are complex enough beasts when they are just doing one thing at a time When you start to explore the world of threads, you end up with programs that do more than one thing at once, and life can get very complicated. There are two specific conditions that …

Member Avatar for Christopher_22
0
5K
Member Avatar for toraj58

[I]The FileSystemWatcher class is phenomenally powerful—and staggeringly simple.[/I] Start up a new Windows Forms application. Then drop FolderBrowserDialog, FileSystemWatcher, label, listbox, and button controls onto the form. [B]Setting up Properties:[/B] Set up the name properties of the controls; the button is called chooseButton, the label is folderLabel, the list box …

Member Avatar for nenadnikolic
1
398
Member Avatar for toraj58

[B]Sometimes it is good to sit back and reflect on life[/B]. More specifically, you can sit back and reflect on yourself. Often you will discover information that you didn’t realize about yourself. [B]it is possible to have a C# program reflect upon itself.[/B] You can use such reflection to learn …

0
152
Member Avatar for toraj58

Although most people speak of HTML code, the fact is that if you write good HTML code, you’re actually writing XHTML. XHTML is a set of rules that, if you follow them when you write HTML code, result in code that is more standards-compliant, and hence more likely to render …

Member Avatar for sagorcse
0
188
Member Avatar for panpanf

regarding to Reflections please check the snippet i have posted here: [url]http://www.daniweb.com/code/snippet955.html[/url] and i think that Wrox books are very useful to answer your main qusetions and after finding answer to your main questions you can browse the internet for articles also you can post your advanced question in forums …

Member Avatar for LizR
0
133
Member Avatar for Member #261668

here i have written some code for you using GDI that can give you the clue for your problem: [code=csharp] using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace GDI1 { public partial class Form1 : Form { Pen BluePen = new Pen(Color.Blue, 1); …

Member Avatar for toraj58
0
465
Member Avatar for mrjoli021

I wrote this code for you and it works base on the text file(test.txt) i tested with this content: [B]row1col1 row1col2 row1col3 row2col1 row2col2 row2col3 row3col1 row3col2 row3col3[/B] note: as you mentioned i seperated columns with TAB [code=csharp] using System; using System.Collections.Generic; using System.Text; using System.IO; using System.Collections; namespace textfromfiletoarraylist …

Member Avatar for jireh
0
109

The End.