Click here to Skip to main content
15,886,835 members

Comments by Michael J. Eber (Top 7 by date)

Michael J. Eber 1-Jul-13 15:18pm View    
This is VB.Net so why are you posting in C# forum?
Michael J. Eber 1-Jul-13 14:38pm View    
Agree with Sergey: if you don't know where to start then you are not ready to write code. You should first google for a book on writing console programs and specify the SPECIFIC console you are aiming for. Then read it.
Michael J. Eber 1-Jul-13 14:34pm View    
your first problem is the improper use of string.Format. It's method signature is string.Format(string, param object[]). You do not have the tokens in your string for formatting and you did not supply the parameters to feed to format. Typical string format: ("Some string gets stuff {0}", "inserted here") The {0} is the replaceable token with 0 being the index into the parameter array.
Michael J. Eber 14-May-13 11:01am View    
Is there any kind of question in this? Do you think we will do your homework for you?
Michael J. Eber 11-Feb-13 14:57pm View    
Try to step through your code and follow the process. Frequently when I get an out of memory exception it is because I've inadvertantly triggered an event that loops back into my original code. As a result I have a sequence of <event> <load up="" stuff=""> <event is="" raised="" because="" i="" loaded="" stuff=""> <event> <load up="" stuff=""> ....