Click here to Skip to main content
15,885,660 members
Home / Discussions / C#
   

C#

 
AnswerRe: C# use connection string in app.config Pin
Clifford Nelson14-Nov-12 5:08
Clifford Nelson14-Nov-12 5:08 
AnswerRe: C# use connection string in app.config Pin
n.podbielski13-Nov-12 20:24
n.podbielski13-Nov-12 20:24 
QuestionC# GoF Design pattern usage Pin
David Combrinck13-Nov-12 8:15
professionalDavid Combrinck13-Nov-12 8:15 
AnswerCross posted from the lounge and Q and A. Pin
Pete O'Hanlon13-Nov-12 9:13
mvePete O'Hanlon13-Nov-12 9:13 
AnswerRe: C# GoF Design pattern usage Pin
Eddy Vluggen13-Nov-12 11:32
professionalEddy Vluggen13-Nov-12 11:32 
AnswerRe: C# GoF Design pattern usage Pin
Abhinav S13-Nov-12 21:15
Abhinav S13-Nov-12 21:15 
AnswerRe: C# GoF Design pattern usage Pin
Pete O'Hanlon13-Nov-12 22:28
mvePete O'Hanlon13-Nov-12 22:28 
QuestionMethod, Class, Object Reference Pin
C-P-User-312-Nov-12 10:31
C-P-User-312-Nov-12 10:31 
Why does my attempt to use a method called "Start_Data_Command_04" in this file produce the stated error ? (I'll list the error immediately after the code)

File Name: Form1.cs
C#
namespace George_Washington
{
    public partial class Form1 : Form
    {
    ///Lots of other stuff
    ///
     ///


        /* *************************************************************************** *
         *  This button Will Start The Data Flood                                      *
         * *************************************************************************** */

        void Button4_Start_Data_Click(object sender, EventArgs e)
        {
            The_User_Clicked_A_Button_Called.Start_Data_Command_04(); ////Error Is here

        }
    }
}

Quote:
Error 2 An object reference is required for the non-static field, method, or property 'SerialPortPractice_03.The_User_Clicked_A_Button_Called.Start_Data_Command_04()'

The method named "Start_Data_Command_04" is located in this file, and produces an error (no clue if they are related) of its own...

File name: The_User_Clicked_A_Button_Called.cs
C#
namespace George_Washington
{
    public class The_User_Clicked_A_Button_Called
    {
        internal void Start_Data_Command_04()
        {
            UART.send_command 
                (////The Error Is Flagged right here
                Protocol_Packets_01.BARN_Command_04_Start_Data_Flood,
                0,
                Protocol_Packets_01.BARN_Command_04_Start_Data_Flood.Length
                )
                ;
        }
    }
}


Quote:
Error 1 An object reference is required for the non-static field, method, or property 'SerialPortPractice_03.UART.send_command(byte[], int, int)'


No matter what word I put in front of the method; e.g., internal, private, public, static, whatever; I still get an error.


The actual method in question is here
File Name: UART.cs
C#
namespace George_Washington
{
    class UART
    {
    
        public void send_command(byte[] The_Byte_Array, int Starting_Place, int Length)
        {
            The_Serial_Port_We_Are_Testing.Write(
                                                 The_Byte_Array, 
                                                 Starting_Place, 
                                                 Length
                                                 )
                                                 ;
        }

    
    }

}

AnswerRe: Method, Class, Object Reference Pin
Pete O'Hanlon12-Nov-12 10:49
mvePete O'Hanlon12-Nov-12 10:49 
GeneralRe: Method, Class, Object Reference Pin
C-P-User-312-Nov-12 13:19
C-P-User-312-Nov-12 13:19 
GeneralRe: Method, Class, Object Reference Pin
Pete O'Hanlon12-Nov-12 20:15
mvePete O'Hanlon12-Nov-12 20:15 
GeneralRe: Method, Class, Object Reference Pin
J4amieC12-Nov-12 21:36
J4amieC12-Nov-12 21:36 
GeneralRe: Method, Class, Object Reference Pin
Pete O'Hanlon12-Nov-12 22:11
mvePete O'Hanlon12-Nov-12 22:11 
GeneralRe: Method, Class, Object Reference Pin
Simon_Whale12-Nov-12 22:06
Simon_Whale12-Nov-12 22:06 
GeneralRe: Method, Class, Object Reference Pin
fjdiewornncalwe13-Nov-12 3:49
professionalfjdiewornncalwe13-Nov-12 3:49 
GeneralRe: Method, Class, Object Reference Pin
C-P-User-313-Nov-12 8:06
C-P-User-313-Nov-12 8:06 
QuestionAdd a Menu Item to the operating system contextmenu Pin
benzarabel12-Nov-12 9:48
benzarabel12-Nov-12 9:48 
AnswerRe: Add a Menu Item to the operating system contextmenu Pin
Eddy Vluggen12-Nov-12 10:44
professionalEddy Vluggen12-Nov-12 10:44 
GeneralRe: Add a Menu Item to the operating system contextmenu Pin
benzarabel12-Nov-12 10:51
benzarabel12-Nov-12 10:51 
GeneralRe: Add a Menu Item to the operating system contextmenu Pin
Eddy Vluggen12-Nov-12 11:18
professionalEddy Vluggen12-Nov-12 11:18 
QuestionTips for a new C# designer... Pin
Maurice Lantier12-Nov-12 9:28
Maurice Lantier12-Nov-12 9:28 
AnswerRe: Tips for a new C# designer... Pin
Eddy Vluggen12-Nov-12 10:40
professionalEddy Vluggen12-Nov-12 10:40 
GeneralRe: Tips for a new C# designer... Pin
Maurice Lantier12-Nov-12 10:54
Maurice Lantier12-Nov-12 10:54 
GeneralRe: Tips for a new C# designer... Pin
Eddy Vluggen12-Nov-12 11:18
professionalEddy Vluggen12-Nov-12 11:18 
AnswerRe: Tips for a new C# designer... Pin
BobJanova12-Nov-12 22:23
BobJanova12-Nov-12 22:23 

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.