Click here to Skip to main content
15,896,154 members
Home / Discussions / C#
   

C#

 
GeneralRe: text resize in my web page Pin
EliottA9-Jan-09 6:08
EliottA9-Jan-09 6:08 
QuestionRe: text resize in my web page Pin
Eddy Vluggen9-Jan-09 8:45
professionalEddy Vluggen9-Jan-09 8:45 
QuestionLocalization and Combo Boxes Pin
belzer9-Jan-09 4:42
belzer9-Jan-09 4:42 
AnswerRe: Localization and Combo Boxes Pin
Colin Angus Mackay9-Jan-09 7:49
Colin Angus Mackay9-Jan-09 7:49 
Questiontoolbox of buttons Pin
abu rakan9-Jan-09 3:58
abu rakan9-Jan-09 3:58 
AnswerRe: toolbox of buttons Pin
User 66589-Jan-09 4:42
User 66589-Jan-09 4:42 
QuestionCrystal reports, Dynamic parameter values not showing up , Static works fine Pin
c0ax_lx9-Jan-09 3:37
c0ax_lx9-Jan-09 3:37 
QuestionHelp Required in Schedular Class Design Pin
Aman Bhullar9-Jan-09 2:11
Aman Bhullar9-Jan-09 2:11 
I am designing a scheduler, for one module i need a little assistance

My class is as


public class CHandset
    {
        public int HandsetId
        {
            get
            {
                throw new System.NotImplementedException();
            }
            set
            {
            }
        }

        public int LocationId
        {
            get
            {
                throw new System.NotImplementedException();
            }
            set
            {
            }
        }

        public Queue<t> Queue
        {
            get
            {
                throw new System.NotImplementedException();
            }
            set
            {
            }
        }

        public int ObjState
        {
            get
            {
                throw new System.NotImplementedException();
            }
            set
            {
            }
        }

        public int ObjDBLogging
        {
            get
            {
                throw new System.NotImplementedException();
            }
            set
            {
            }
        }

        public int RequeueTime
        {
            get
            {
                throw new System.NotImplementedException();
            }
            set
            {
            }
        }

        public void Execute()
        {
            throw new System.NotImplementedException();
        }
    }
</t>


The above is a class for a handset.
There may be 20 handsets over the entire network. Every handset object will have its queue.
1. Objects of this class will be made on fly
2. Queue will contain the jobs that the handset needs to fire.
3. Every instance of the handset object will fire itself in thread.

I want to know that how can i write a code that can access the Queue of object.

I have thought in mind that if i use MSMQ, will it solve my problem.
AnswerRe: Help Required in Schedular Class Design Pin
J4amieC9-Jan-09 2:57
J4amieC9-Jan-09 2:57 
GeneralRe: Help Required in Schedular Class Design Pin
Luc Pattyn9-Jan-09 3:31
sitebuilderLuc Pattyn9-Jan-09 3:31 
AnswerRe: Help Required in Schedular Class Design Pin
Eddy Vluggen9-Jan-09 8:49
professionalEddy Vluggen9-Jan-09 8:49 
QuestionGetting the GMT time Pin
tauras819-Jan-09 2:08
tauras819-Jan-09 2:08 
AnswerRe: Getting the GMT time Pin
User 66589-Jan-09 2:15
User 66589-Jan-09 2:15 
GeneralRe: Getting the GMT time Pin
tauras819-Jan-09 2:18
tauras819-Jan-09 2:18 
GeneralRe: Getting the GMT time Pin
Luc Pattyn9-Jan-09 2:19
sitebuilderLuc Pattyn9-Jan-09 2:19 
GeneralRe: Getting the GMT time Pin
tauras819-Jan-09 2:28
tauras819-Jan-09 2:28 
GeneralRe: Getting the GMT time Pin
Luc Pattyn9-Jan-09 2:35
sitebuilderLuc Pattyn9-Jan-09 2:35 
GeneralRe: Getting the GMT time Pin
User 66589-Jan-09 2:37
User 66589-Jan-09 2:37 
GeneralRe: Getting the GMT time Pin
Eddy Vluggen9-Jan-09 8:51
professionalEddy Vluggen9-Jan-09 8:51 
Question"Windows has triggered a breakpoint" error. Pin
Benny_Lava9-Jan-09 1:29
Benny_Lava9-Jan-09 1:29 
AnswerRe: "Windows has triggered a breakpoint" error. Pin
c0ax_lx9-Jan-09 3:55
c0ax_lx9-Jan-09 3:55 
QuestionReading Large Files Pin
MumbleB9-Jan-09 1:19
MumbleB9-Jan-09 1:19 
GeneralRe: Reading Large Files Pin
Luc Pattyn9-Jan-09 2:27
sitebuilderLuc Pattyn9-Jan-09 2:27 
GeneralRe: Reading Large Files Pin
MumbleB9-Jan-09 2:40
MumbleB9-Jan-09 2:40 
GeneralRe: Reading Large Files Pin
Luc Pattyn9-Jan-09 3:09
sitebuilderLuc Pattyn9-Jan-09 3:09 

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.