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

C#

 
QuestionOpening program file Pin
pevnak11-Nov-07 15:16
pevnak11-Nov-07 15:16 
AnswerRe: Opening program file Pin
Luc Pattyn11-Nov-07 15:27
sitebuilderLuc Pattyn11-Nov-07 15:27 
GeneralRe: Opening program file Pin
pevnak11-Nov-07 15:44
pevnak11-Nov-07 15:44 
GeneralRe: Opening program file Pin
Luc Pattyn11-Nov-07 15:49
sitebuilderLuc Pattyn11-Nov-07 15:49 
GeneralRe: Opening program file Pin
pevnak12-Nov-07 15:20
pevnak12-Nov-07 15:20 
QuestionHashTable Problem Pin
ytubis11-Nov-07 12:24
ytubis11-Nov-07 12:24 
AnswerRe: HashTable Problem Pin
Christian Graus11-Nov-07 12:29
protectorChristian Graus11-Nov-07 12:29 
GeneralRe: HashTable Problem Pin
ytubis11-Nov-07 12:49
ytubis11-Nov-07 12:49 
Yes I did!
it show that it is not null and that the count is 0;

This is the code:

if (m_eventhashtable.ContainsKey(taskarray[counter].SchedularAction))
{
if (CheckIfTaskMultiTime(taskarray[counter].SchedularAction))
{
//If i contain this Task but it is multiple, then add it to the list of event with number to process.
m_eventhashtable.Add(taskarray[counter].SchedularAction + duptaskcounter.ToString(), taskarray[counter]);
}
else
{
//if i contain this Task but it is not multiple, then change replace this one for the old one.
m_eventhashtable.Remove(taskarray[counter].SchedularAction);
m_eventhashtable.Add(taskarray[counter].SchedularAction, taskarray[counter]);
}
}
else
{
//If i do not contain this Task yet add it to the list of event to process.
m_eventhashtable.Add(taskarray[counter].SchedularAction , taskarray[counter]);
}
GeneralRe: HashTable Problem Pin
Christian Graus11-Nov-07 12:52
protectorChristian Graus11-Nov-07 12:52 
QuestionEvent Synchronization Pin
xbiplav11-Nov-07 10:09
xbiplav11-Nov-07 10:09 
AnswerRe: Event Synchronization Pin
Pete O'Hanlon11-Nov-07 10:15
mvePete O'Hanlon11-Nov-07 10:15 
GeneralRe: Event Synchronization Pin
xbiplav11-Nov-07 10:20
xbiplav11-Nov-07 10:20 
QuestionXInput [modified] Pin
MasterSharp11-Nov-07 9:44
MasterSharp11-Nov-07 9:44 
AnswerRe: XInput Pin
Pete O'Hanlon11-Nov-07 10:07
mvePete O'Hanlon11-Nov-07 10:07 
GeneralRe: XInput Pin
MasterSharp11-Nov-07 10:32
MasterSharp11-Nov-07 10:32 
GeneralRe: XInput Pin
Luc Pattyn11-Nov-07 10:36
sitebuilderLuc Pattyn11-Nov-07 10:36 
GeneralRe: XInput Pin
MasterSharp11-Nov-07 10:40
MasterSharp11-Nov-07 10:40 
GeneralRe: XInput Pin
Pete O'Hanlon11-Nov-07 22:29
mvePete O'Hanlon11-Nov-07 22:29 
GeneralRe: XInput Pin
Pete O'Hanlon11-Nov-07 22:20
mvePete O'Hanlon11-Nov-07 22:20 
Question2 Keys Pin
MasterSharp11-Nov-07 8:07
MasterSharp11-Nov-07 8:07 
AnswerRe: 2 Keys Pin
Luc Pattyn11-Nov-07 9:34
sitebuilderLuc Pattyn11-Nov-07 9:34 
GeneralRe: 2 Keys Pin
MasterSharp11-Nov-07 9:49
MasterSharp11-Nov-07 9:49 
GeneralRe: 2 Keys Pin
MasterSharp11-Nov-07 9:51
MasterSharp11-Nov-07 9:51 
GeneralRe: 2 Keys Pin
Luc Pattyn11-Nov-07 9:56
sitebuilderLuc Pattyn11-Nov-07 9:56 
GeneralRe: 2 Keys Pin
MasterSharp11-Nov-07 9:59
MasterSharp11-Nov-07 9:59 

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.