Click here to Skip to main content
15,914,795 members
Home / Discussions / C#
   

C#

 
AnswerMessage Removed Pin
10-Feb-10 22:19
sunil gurjar10-Feb-10 22:19 
GeneralRe: how to upload image on ftp server in c# Pin
OriginalGriff10-Feb-10 22:23
mveOriginalGriff10-Feb-10 22:23 
QuestionHow to Read "Enter" Key Press Value Pin
sjs4u10-Feb-10 20:04
sjs4u10-Feb-10 20:04 
AnswerRe: How to Read "Enter" Key Press Value Pin
OriginalGriff10-Feb-10 21:49
mveOriginalGriff10-Feb-10 21:49 
GeneralRe: How to Read "Enter" Key Press Value Pin
rakeshs3121-Mar-10 20:35
rakeshs3121-Mar-10 20:35 
GeneralRe: How to Read "Enter" Key Press Value Pin
OriginalGriff1-Mar-10 21:23
mveOriginalGriff1-Mar-10 21:23 
Questionremote desktop Pin
v_neil8710-Feb-10 19:35
v_neil8710-Feb-10 19:35 
QuestionC# Button Click for UART Pin
John-EE10-Feb-10 18:50
John-EE10-Feb-10 18:50 
Ok I have setup a simple gui for uart. I am trying to light up 4 LEDS thru a MC. LED0 will be 0x01, LED 1, 2, 3 will be 2, 4, 8. Will this send out the appropriate command I am looking for. I have no way to test it until tomorrow because I do not have the hardware with me but was wondering if this would suffice. I do not get any errors or warnings so I am thinking it should. Thanks


private void buttonLED0_Click_1(object sender, EventArgs e)
     {
         Data = Data ^= 0x01;
         int BytesToWrite = Data;
         int bytes = serialPort1.BytesToWrite;
         //UInt32 numBytesWritten = 1;
         buttonLED0.Enabled = !buttonLED0.Enabled;

         if (buttonLED0.Enabled)
         {
             pictureBoxLED0.BackgroundImage = imageList1.Images[(int)LEDColor.GreenOn];
         }

         if (!buttonLED0.Enabled)
         {

             pictureBoxLED0.BackgroundImage = imageList1.Images[(int)LEDColor.RedOn];
         }
     }

AnswerRe: C# Button Click for UART Pin
John-EE10-Feb-10 18:52
John-EE10-Feb-10 18:52 
AnswerRe: C# Button Click for UART Pin
Bekjong10-Feb-10 19:14
Bekjong10-Feb-10 19:14 
AnswerRe: C# Button Click for UART Pin
harold aptroot10-Feb-10 20:24
harold aptroot10-Feb-10 20:24 
GeneralRe: C# Button Click for UART Pin
OriginalGriff10-Feb-10 21:54
mveOriginalGriff10-Feb-10 21:54 
QuestionFun With User Controls Pin
Roger Wright10-Feb-10 18:36
professionalRoger Wright10-Feb-10 18:36 
AnswerRe: Fun With User Controls Pin
AspDotNetDev10-Feb-10 19:27
protectorAspDotNetDev10-Feb-10 19:27 
GeneralRe: Fun With User Controls Pin
Roger Wright11-Feb-10 2:08
professionalRoger Wright11-Feb-10 2:08 
Questioncalling web service Pin
Ramkithepower10-Feb-10 16:46
Ramkithepower10-Feb-10 16:46 
AnswerRe: calling web service Pin
Pranay Rana10-Feb-10 18:05
professionalPranay Rana10-Feb-10 18:05 
Questionhow would you change your bindingsource for a textbox programmably Pin
tonyonlinux10-Feb-10 14:37
tonyonlinux10-Feb-10 14:37 
AnswerRe: how would you change your bindingsource for a textbox programmably Pin
Gaurav Dudeja India10-Feb-10 17:22
Gaurav Dudeja India10-Feb-10 17:22 
GeneralRe: how would you change your bindingsource for a textbox programmably Pin
tonyonlinux10-Feb-10 17:32
tonyonlinux10-Feb-10 17:32 
GeneralRe: how would you change your bindingsource for a textbox programmably Pin
tonyonlinux10-Feb-10 18:13
tonyonlinux10-Feb-10 18:13 
QuestionMoving a file from a CD to a Folder somewhere on hardrive Pin
shadowthief_0310-Feb-10 9:12
shadowthief_0310-Feb-10 9:12 
AnswerRe: Moving a file from a CD to a Folder somewhere on hardrive Pin
Keith Barrow10-Feb-10 9:15
professionalKeith Barrow10-Feb-10 9:15 
GeneralRe: Moving a file from a CD to a Folder somewhere on hardrive Pin
shadowthief_0310-Feb-10 9:53
shadowthief_0310-Feb-10 9:53 
GeneralRe: Moving a file from a CD to a Folder somewhere on hardrive Pin
Keith Barrow10-Feb-10 10:08
professionalKeith Barrow10-Feb-10 10:08 

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.