Click here to Skip to main content
15,887,596 members
Home / Discussions / C#
   

C#

 
GeneralRe: bubble and quick method Pin
CPallini25-Nov-06 10:41
mveCPallini25-Nov-06 10:41 
QuestionPoint Of Sale Project Pin
Waskira25-Nov-06 7:06
Waskira25-Nov-06 7:06 
QuestionOut-of-memory Exception Pin
yonidebest25-Nov-06 5:57
yonidebest25-Nov-06 5:57 
AnswerRe: Out-of-memory Exception Pin
S. Senthil Kumar25-Nov-06 6:32
S. Senthil Kumar25-Nov-06 6:32 
QuestionRe: Out-of-memory Exception Pin
yonidebest25-Nov-06 9:07
yonidebest25-Nov-06 9:07 
AnswerRe: Out-of-memory Exception Pin
Argus225-Nov-06 12:52
Argus225-Nov-06 12:52 
GeneralRe: Out-of-memory Exception Pin
yonidebest26-Nov-06 10:43
yonidebest26-Nov-06 10:43 
AnswerRe: Out-of-memory Exception Pin
S. Senthil Kumar25-Nov-06 18:10
S. Senthil Kumar25-Nov-06 18:10 
Is your application a console app or a windows app? If it's a console app, after the OutOfMemoryException occurs, you should be able to see the stack trace on the console window. The stack trace simply lists the sequence of function calls that triggered the exception. Even otherwise, you can wrap the code that you think is causing this exception with a try catch block like this
try
{
   // Exception causing code
}
catch(Exception e)
{
   Console.WriteLine(e); // Or if it's a Windows app, use MessageBox.Show(e.ToString());
}

VC# Express is a pretty good IDE, you must learn how to use it. You get a very good debugger, at the very least.

Regards
Senthil [MVP - Visual C#]
_____________________________
My Blog | My Articles | My Flickr | WinMacro

GeneralRe: Out-of-memory Exception Pin
yonidebest26-Nov-06 10:43
yonidebest26-Nov-06 10:43 
QuestionRe: Out-of-memory Exception Pin
CPallini25-Nov-06 8:37
mveCPallini25-Nov-06 8:37 
AnswerRe: Out-of-memory Exception Pin
yonidebest25-Nov-06 9:11
yonidebest25-Nov-06 9:11 
AnswerRe: Out-of-memory Exception Pin
Luc Pattyn25-Nov-06 10:08
sitebuilderLuc Pattyn25-Nov-06 10:08 
QuestionRe: Out-of-memory Exception Pin
yonidebest25-Nov-06 12:47
yonidebest25-Nov-06 12:47 
AnswerRe: Out-of-memory Exception Pin
Luc Pattyn25-Nov-06 15:09
sitebuilderLuc Pattyn25-Nov-06 15:09 
GeneralRe: Out-of-memory Exception Pin
yonidebest26-Nov-06 10:39
yonidebest26-Nov-06 10:39 
QuestionProtecting "A Assembly"? Pin
Ariston Darmayuda25-Nov-06 5:19
Ariston Darmayuda25-Nov-06 5:19 
AnswerRe: Protecting "A Assembly"? Pin
Paul Conrad25-Nov-06 6:20
professionalPaul Conrad25-Nov-06 6:20 
GeneralRe: Protecting "A Assembly"? Pin
Ariston Darmayuda26-Nov-06 3:01
Ariston Darmayuda26-Nov-06 3:01 
GeneralRe: Protecting "A Assembly"? Pin
Amar Chaudhary26-Nov-06 14:07
Amar Chaudhary26-Nov-06 14:07 
AnswerRe: Protecting "A Assembly"? Pin
Scott Dorman27-Nov-06 4:58
professionalScott Dorman27-Nov-06 4:58 
QuestionSingleton interfaces, is that possible? Pin
User 665825-Nov-06 4:52
User 665825-Nov-06 4:52 
AnswerRe: Singleton interfaces, is that possible? Pin
S. Senthil Kumar25-Nov-06 6:29
S. Senthil Kumar25-Nov-06 6:29 
GeneralRe: Singleton interfaces, is that possible? Pin
User 665825-Nov-06 6:57
User 665825-Nov-06 6:57 
GeneralRe: Singleton interfaces, is that possible? [modified] Pin
S. Senthil Kumar25-Nov-06 7:23
S. Senthil Kumar25-Nov-06 7:23 
GeneralRe: Singleton interfaces, is that possible? Pin
User 665826-Nov-06 1:56
User 665826-Nov-06 1:56 

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.