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

C#

 
GeneralMatch and Regular Expression Pin
mkomasi7-Oct-02 3:58
mkomasi7-Oct-02 3:58 
GeneralRe: Match and Regular Expression Pin
Paul Riley7-Oct-02 4:59
Paul Riley7-Oct-02 4:59 
GeneralRe: Match and Regular Expression Pin
Richard Deeming7-Oct-02 6:02
mveRichard Deeming7-Oct-02 6:02 
QuestionHow to convert byte[] to int[]? Pin
Konstantin Vasserman7-Oct-02 3:49
Konstantin Vasserman7-Oct-02 3:49 
AnswerRe: How to convert byte[] to int[]? Pin
Paul Riley7-Oct-02 5:17
Paul Riley7-Oct-02 5:17 
GeneralRe: How to convert byte[] to int[]? Pin
Konstantin Vasserman7-Oct-02 5:38
Konstantin Vasserman7-Oct-02 5:38 
GeneralRe: How to convert byte[] to int[]? Pin
Paul Riley7-Oct-02 5:55
Paul Riley7-Oct-02 5:55 
GeneralRe: How to convert byte[] to int[]? Pin
Konstantin Vasserman7-Oct-02 6:07
Konstantin Vasserman7-Oct-02 6:07 
GeneralRe: How to convert byte[] to int[]? Pin
leppie7-Oct-02 7:20
leppie7-Oct-02 7:20 
GeneralRe: How to convert byte[] to int[]? Pin
Konstantin Vasserman7-Oct-02 7:48
Konstantin Vasserman7-Oct-02 7:48 
GeneralRe: How to convert byte[] to int[]? Pin
Richard Deeming7-Oct-02 7:42
mveRichard Deeming7-Oct-02 7:42 
GeneralRe: How to convert byte[] to int[]? Pin
Konstantin Vasserman7-Oct-02 7:55
Konstantin Vasserman7-Oct-02 7:55 
GeneralDataGrid Updates Pin
Dave Moor7-Oct-02 1:25
Dave Moor7-Oct-02 1:25 
QuestionHow to use scripts in my applicaction?!? Pin
EdgarBM6-Oct-02 23:58
EdgarBM6-Oct-02 23:58 
GeneralAspose.Obfuscator 1.0 Released! Pin
Aspose Pty Ltd6-Oct-02 21:31
Aspose Pty Ltd6-Oct-02 21:31 
GeneralRe: Aspose.Obfuscator 1.0 Released! Pin
Stephane Rodriguez.6-Oct-02 22:19
Stephane Rodriguez.6-Oct-02 22:19 
GeneralRe: Aspose.Obfuscator 1.0 Released! Pin
leppie7-Oct-02 8:24
leppie7-Oct-02 8:24 
GeneralRe: Aspose.Obfuscator 1.0 Released! Pin
Patrick Lassalle14-Oct-02 12:01
Patrick Lassalle14-Oct-02 12:01 
Questionsetup wizered? Pin
imran_rafique6-Oct-02 17:45
imran_rafique6-Oct-02 17:45 
GeneralC# Debug problem in VS7 Pin
Elf6-Oct-02 16:45
Elf6-Oct-02 16:45 
I find some errors can not be caught in its original position if it is called in FORM_PAINT event.

a simple example, the hello function will raise a null pointer error.
In Paint, the debugger in VS will show highlight at Main, the root caller of whole application.
But in Click, the debugger will show the right error raising position in hello().
So what's on earth, the VS can't find the error source while it is called by Paint?
I recently turn all the Paint debug work to a click event.
But is there any setting to make Paint event accept the error?

void hello()
{
string s;
s = null;
s.IndexOf("hello");
}

private void Form1_Paint(object sender, System.Windows.Forms.PaintEventArgs e)
{
hello();
}

private void Form1_Click(object sender, System.EventArgs e)
{
hello();
}

GeneralRe: C# Debug problem in VS7 Pin
Russell Morris7-Oct-02 6:28
Russell Morris7-Oct-02 6:28 
GeneralVideo Streaming Pin
yccheok6-Oct-02 16:13
yccheok6-Oct-02 16:13 
GeneralRe: Video Streaming Pin
Daniel Strigl6-Oct-02 20:12
Daniel Strigl6-Oct-02 20:12 
GeneralRe: Video Streaming Pin
yccheok6-Oct-02 20:16
yccheok6-Oct-02 20:16 
GeneralRe: Video Streaming Pin
Philip Fitzsimons7-Oct-02 3:21
Philip Fitzsimons7-Oct-02 3:21 

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.