Click here to Skip to main content
15,925,782 members
Home / Discussions / C#
   

C#

 
QuestionNullReferenceException in WaitForWaitHandle Pin
jayart25-Apr-07 6:21
jayart25-Apr-07 6:21 
QuestionReverse Find Pin
LCI25-Apr-07 5:13
LCI25-Apr-07 5:13 
AnswerRe: Reverse Find Pin
led mike25-Apr-07 5:39
led mike25-Apr-07 5:39 
AnswerRe: Reverse Find Pin
Guffa25-Apr-07 5:39
Guffa25-Apr-07 5:39 
AnswerRe: Reverse Find Pin
kubben25-Apr-07 9:04
kubben25-Apr-07 9:04 
GeneralNew Error: A namespace does not directly contain members such as fields or methods Pin
cole2325-Apr-07 5:03
cole2325-Apr-07 5:03 
GeneralRe: Error2: Identifier expected Pin
CPallini25-Apr-07 6:09
mveCPallini25-Apr-07 6:09 
GeneralRe: Error2: Identifier expected Pin
Jimmanuel25-Apr-07 8:07
Jimmanuel25-Apr-07 8:07 
Error1 is telling you that something is declared where it's not allowed to be. The first variables in your code
private string[] tx_data = new string[14];
private string[] rx_data = new string[10];
public int i;

need to be moved so that they're declared inside of your class Form1. This also generates Error2 and Error3, so fix the first one and you fix them all.

On an unrelated note, the arrays tx_data and rx_data are being indexed using parentheses - tx_data(0) = "R" - which is incorrect. They need to be indexed with brackets instead: tx_data[0] = "R"
Questionget xml data Pin
arkiboys25-Apr-07 4:59
arkiboys25-Apr-07 4:59 
AnswerRe: get xml data Pin
kubben25-Apr-07 5:35
kubben25-Apr-07 5:35 
GeneralRe: get xml data Pin
arkiboys25-Apr-07 5:37
arkiboys25-Apr-07 5:37 
GeneralRe: get xml data Pin
kubben25-Apr-07 5:48
kubben25-Apr-07 5:48 
QuestionBlocking Multiple Application accessing the same file Pin
girijaa25-Apr-07 4:33
professionalgirijaa25-Apr-07 4:33 
AnswerRe: Blocking Multiple Application accessing the same file Pin
Colin Angus Mackay25-Apr-07 4:47
Colin Angus Mackay25-Apr-07 4:47 
AnswerRe: Blocking Multiple Application accessing the same file Pin
Tim Paaschen25-Apr-07 19:50
Tim Paaschen25-Apr-07 19:50 
QuestionContextMenu and ListView problem? Pin
Khoramdin25-Apr-07 4:25
Khoramdin25-Apr-07 4:25 
AnswerRe: ContextMenu and ListView problem? Pin
led mike25-Apr-07 4:33
led mike25-Apr-07 4:33 
QuestionSorting DataGrid when datasource is a DataSet Pin
Chris_Green25-Apr-07 3:35
Chris_Green25-Apr-07 3:35 
AnswerRe: Sorting DataGrid when datasource is a DataSet Pin
kubben25-Apr-07 5:38
kubben25-Apr-07 5:38 
GeneralRe: Sorting DataGrid when datasource is a DataSet Pin
Chris_Green25-Apr-07 5:42
Chris_Green25-Apr-07 5:42 
QuestionCreate a Better looking panel? Pin
Carlos Adriano Portes25-Apr-07 3:16
professionalCarlos Adriano Portes25-Apr-07 3:16 
AnswerRe: Create a Better looking panel? Pin
Patrick Etc.25-Apr-07 4:16
Patrick Etc.25-Apr-07 4:16 
QuestionApplication error question Pin
LCI25-Apr-07 2:53
LCI25-Apr-07 2:53 
AnswerRe: Application error question Pin
Tarakeshwar Reddy25-Apr-07 4:37
professionalTarakeshwar Reddy25-Apr-07 4:37 
QuestionProperties not displayed in Visual Studio Editor Pin
SakthiSurya25-Apr-07 1:56
SakthiSurya25-Apr-07 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.