Click here to Skip to main content
15,923,120 members
Home / Discussions / C#
   

C#

 
GeneralWhich kind of connects can be captured by Win32_ServerConnection!! [modified] Pin
Member 46594858-May-11 17:39
Member 46594858-May-11 17:39 
AnswerRe: Unable to get connected users by Win32_ServerConnection!! Pin
OriginalGriff8-May-11 20:31
mveOriginalGriff8-May-11 20:31 
GeneralRe: Unable to get connected users by Win32_ServerConnection!! Pin
Member 46594858-May-11 21:08
Member 46594858-May-11 21:08 
AnswerRe: Unable to get connected users by Win32_ServerConnection!! Pin
OriginalGriff8-May-11 21:18
mveOriginalGriff8-May-11 21:18 
GeneralRe: Unable to get connected users by Win32_ServerConnection!! Pin
Member 46594858-May-11 21:22
Member 46594858-May-11 21:22 
AnswerRe: Unable to get connected users by Win32_ServerConnection!! Pin
OriginalGriff8-May-11 21:29
mveOriginalGriff8-May-11 21:29 
GeneralRe: Unable to get connected users by Win32_ServerConnection!! Pin
OriginalGriff8-May-11 21:20
mveOriginalGriff8-May-11 21:20 
GeneralRe: Unable to get connected users by Win32_ServerConnection!! Pin
Member 46594858-May-11 21:25
Member 46594858-May-11 21:25 
QuestionGeneric linked list Pin
frofrofrofro7-May-11 5:56
frofrofrofro7-May-11 5:56 
AnswerRe: Generic linked list Pin
Luc Pattyn7-May-11 7:00
sitebuilderLuc Pattyn7-May-11 7:00 
AnswerRe: Generic linked list Pin
PIEBALDconsult7-May-11 14:06
mvePIEBALDconsult7-May-11 14:06 
JokeRe: Generic linked list Pin
Peter_in_27807-May-11 19:48
professionalPeter_in_27807-May-11 19:48 
GeneralRe: Generic linked list Pin
Luc Pattyn8-May-11 23:51
sitebuilderLuc Pattyn8-May-11 23:51 
GeneralRe: Generic linked list Pin
Niklas L9-May-11 5:07
Niklas L9-May-11 5:07 
AnswerRe: Generic linked list Pin
AspDotNetDev7-May-11 19:53
protectorAspDotNetDev7-May-11 19:53 
Questionlicense for the installation Pin
fazadef6-May-11 22:14
fazadef6-May-11 22:14 
AnswerRe: license for the installation Pin
ambarishtv7-May-11 2:51
ambarishtv7-May-11 2:51 
GeneralRe: license for the installation Pin
Pravin Patil, Mumbai8-May-11 21:59
Pravin Patil, Mumbai8-May-11 21:59 
GeneralRe: license for the installation Pin
ambarishtv8-May-11 22:47
ambarishtv8-May-11 22:47 
AnswerRe: license for the installation Pin
Pravin Patil, Mumbai8-May-11 21:59
Pravin Patil, Mumbai8-May-11 21:59 
GeneralRe: license for the installation Pin
ambarishtv8-May-11 22:35
ambarishtv8-May-11 22:35 
Questioncontrolling the AND gate with c# Pin
aeman6-May-11 22:11
aeman6-May-11 22:11 
AnswerRe: controlling the AND gate with c# Pin
Luc Pattyn7-May-11 2:18
sitebuilderLuc Pattyn7-May-11 2:18 
AnswerRe: controlling the AND gate with c# Pin
PIEBALDconsult7-May-11 3:31
mvePIEBALDconsult7-May-11 3:31 
GeneralRe: controlling the AND gate with c# Pin
aeman7-May-11 4:15
aeman7-May-11 4:15 
hmm i have seen this article but it seemed to b very difficultFrown | :( m beginner... but from this code i have selected some piece of code to light the LED. but not sure if it is ok or not.
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Threading;
using System.Timers;

namespace LED
{
    public partial class Form1 : Form
    {
        public int i = 0, j = 0, adress = 888;

        public Form1()
        {
            InitializeComponent();
            Reset_LEDs(); 
        }
        private void Reset_LEDs() // Makes all the data pins low so the LED's turned off
        {
            PortAccess.Output(adress, 0);
        }

        private void Form1_Load(object sender, EventArgs e)
        {

        }

        private void button1_Click(object sender, EventArgs e)
        {
            int value = 0;
            value += (int)Math.Pow(2, 0);
            LoadNewPict_D0();
            PortAccess.Output(adress, value);
        }
    }
}

what is LoadNewPict_D0(); function doing? will this piece of code ON the LED?
thanks 4 help

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.