Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #27.9K
~11.4K People Reached
Favorite Forums
Favorite Tags
c# x 2

6 Posted Topics

Member Avatar for Ghost

rOckbaer, Semantically, you are incorrect, even though in most cases that would work. What you stated will exit the Application Loop that that Application represents. For multiple Application Loops, the must all be terminated.

Member Avatar for vasanthmc2
1
10K
Member Avatar for cumadhu

Late, I know, but -- Kate is correct. In the case that you want to return two variables of different types, you can simply return an array of object, or a Class created to contain those different types. Lets look at a couple of different ways to accomplish this: [CODE] …

Member Avatar for Michael27
0
549
Member Avatar for crypter

A good place to start since it seems you aren't running you encryption routine on a separate thread, would be to add: [code] Application.DoEvents(); [/code] You would add that into your encryption loop. That will cause windows to process any messages waiting in the message queue. You are using enough …

Member Avatar for Samus
0
164
Member Avatar for gicio

SPYRO is right. Any time that you are processing in a loop to build a string, or as some of you have stated, manipulating a large string, StringBuilder is the way. The overhead of StringBuilder is nothing when compared to the overhead created by a loop that run through 1000 …

Member Avatar for jujubee
0
397
Member Avatar for Toulinwoek

VS.NET IDE is very intuitive. There are some glitches but with as robust as it is, MS would have been hard pressed not to screw up somewhere. There is no IDE as comprehensive. You COULD use #develop for learning purposes, but as stated above, not for anything on a schedule. …

Member Avatar for Toulinwoek
0
245
Member Avatar for radioman28

.NET has a nice set of File/Directory manipulation classes built right in. Check out the System.IO namespace. Seth Webster

Member Avatar for SethWebster
0
161

The End.