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

C#

 
AnswerRe: how to send same request to different terminals at the same time and wait for the response... Pin
mav.northwind29-Jan-05 11:19
mav.northwind29-Jan-05 11:19 
GeneralC# windows Timer question... Pin
new_phoenix29-Jan-05 6:13
new_phoenix29-Jan-05 6:13 
GeneralRe: C# windows Timer question... Pin
eggie529-Jan-05 11:28
eggie529-Jan-05 11:28 
GeneralRe: C# windows Timer question... Pin
new_phoenix29-Jan-05 11:59
new_phoenix29-Jan-05 11:59 
GeneralRe: C# windows Timer question... Pin
eggie529-Jan-05 13:04
eggie529-Jan-05 13:04 
GeneralRe: C# windows Timer question... Pin
Robert Rohde29-Jan-05 21:24
Robert Rohde29-Jan-05 21:24 
GeneralRe: C# windows Timer question... Pin
new_phoenix1-Feb-05 5:34
new_phoenix1-Feb-05 5:34 
GeneralClass problem Pin
thepersonof29-Jan-05 5:44
thepersonof29-Jan-05 5:44 
Hi,
I'm fairly new to c# and I can't seem to access another object from another class when it is public, how can I do this? This is a much simplified version of the code:
public class Entry<br />
    {<br />
        public M2 ds1 = new M2();<br />
        [STAThread]<br />
        static void Main()<br />
        {<br />
            M1 test = new M1("hi");<br />
            //stuff here<br />
        }<br />
    }<br />
    public class M1<br />
    {<br />
        public M1(string data)<br />
        {<br />
            // stuff here    <br />
            ds1.Add(data); // This doesn't work and generates an error<br />
        }<br />
    }<br />
    public class M2<br />
    {<br />
        ArrayList data1 = new ArrayList();<br />
        public M2()<br />
        {<br />
        }<br />
        public void AddData(string data)<br />
        {<br />
            data1.Add(data);<br />
        }<br />
    }

GeneralRe: Class problem Pin
Robert Rohde29-Jan-05 7:13
Robert Rohde29-Jan-05 7:13 
GeneralI need to control device volum Pin
FedorMatv29-Jan-05 3:02
FedorMatv29-Jan-05 3:02 
GeneralRemoting Configuration Files and the new Operator Pin
STW28-Jan-05 21:31
STW28-Jan-05 21:31 
GeneralIs it possible to create a treeview control that have owner draw scrollbar Pin
god4k28-Jan-05 20:55
god4k28-Jan-05 20:55 
GeneralLINK ERROR 1181: beginner quest. Pin
...---...28-Jan-05 16:09
...---...28-Jan-05 16:09 
GeneralHashTable access question Pin
pkellner28-Jan-05 14:00
pkellner28-Jan-05 14:00 
GeneralRe: HashTable access question Pin
Robert Rohde28-Jan-05 19:28
Robert Rohde28-Jan-05 19:28 
GeneralRe: HashTable access question Pin
pkellner29-Jan-05 2:57
pkellner29-Jan-05 2:57 
GeneralRe: HashTable access question Pin
Robert Rohde29-Jan-05 6:44
Robert Rohde29-Jan-05 6:44 
Generalproblems with sockets programming over the internet Pin
Member 132576628-Jan-05 12:59
Member 132576628-Jan-05 12:59 
GeneralRe: problems with sockets programming over the internet Pin
pkellner28-Jan-05 14:14
pkellner28-Jan-05 14:14 
GeneralRe: problems with sockets programming over the internet Pin
Member 132576628-Jan-05 14:33
Member 132576628-Jan-05 14:33 
GeneralRe: problems with sockets programming over the internet Pin
pkellner28-Jan-05 14:36
pkellner28-Jan-05 14:36 
GeneralRe: problems with sockets programming over the internet Pin
Member 132576628-Jan-05 14:38
Member 132576628-Jan-05 14:38 
GeneralRe: problems with sockets programming over the internet Pin
pkellner28-Jan-05 14:47
pkellner28-Jan-05 14:47 
Generalhelp with autocompletion in textbox!!! Pin
tom_dx28-Jan-05 12:49
tom_dx28-Jan-05 12:49 
Questionhow often should lock(List.SyncRoot) be used in a collection? Pin
FocusedWolf28-Jan-05 11:45
FocusedWolf28-Jan-05 11:45 

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.