Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
~812 People Reached
Favorite Forums
Favorite Tags
Member Avatar for nkarvi

Hi everyone! I have a c# app, in which I get a FormatException. The problem is that whatever I do to trace it doesn't succeed. I have tried using breakpoints, try-catch blocks in various parts of the code that I would expect it to occur, putting Application.SetUnhandledExceptionMode(UnhandledExceptionMode.ThrowException); in the Main() …

Member Avatar for sknake
0
114
Member Avatar for nkarvi

Hi everyone! Is there a way to find where an exception was caught in a c# app? I've been trying putting breakpoints, but I cannot find where the exception was caught. Is there any other way? Thanks very much

0
98
Member Avatar for nkarvi

Hi everybody In an application I have, I had to start a word app. Because it took ages to load, I put it in the class constructor, but on exiting the app is not killed. I am trying to kill it by creating a destructor [code=csharp] ~MyClass(){ appWord.Quit(); } [/code] …

Member Avatar for sknake
0
104
Member Avatar for nkarvi

Hi everyone! I have an application, where a user inputs some text in a RichTextBox. I want to add a spell check, so first I have to store the words from the rtb. How to do it? Thanks

Member Avatar for nkarvi
0
126
Member Avatar for nkarvi

Hi everyone! I have an application in C#, that at some point calls a [code=c#] Microsoft.Office.Interop.Word._Application [/code] Problem is that when that point is reached, it takes ages to load the word app. I thought of creating a thread at the beginning of the program, so that the word app …

Member Avatar for kha0s
0
98
Member Avatar for nkarvi

Hi everyone! I have a program in C#, which doesn't resize and adjust the contents of the app-window when I maximize it. I know that in Java, one can use JFrame and this problem is eliminated. Is there an equivalent in C#?

Member Avatar for sknake
0
76
Member Avatar for nkarvi

Hi everyone! I have the following problem I am trying to solve: I have one table with data and need to access the same column twice, everyone with different criteria and then output the results on one table. I tried [code=sql]SELECT e.user, SUM(e.column), SUM(f.column) FROM table AS e INNER JOIN …

Member Avatar for nkarvi
0
112
Member Avatar for nkarvi

Hi everyone, I am new to c# and have come across to this: dataGridView[int a, int b].Value.ToString(); I understand that it takes the values of rows and turns them to string, but I cannot figure out the two integers. Are they the first and last rows respectively? What am I …

Member Avatar for nkarvi
0
84