Click here to Skip to main content
15,891,903 members
Home / Discussions / C#
   

C#

 
QuestionRetrieving DateTaken for Image Pin
Dino2Dino22-Oct-07 7:47
Dino2Dino22-Oct-07 7:47 
AnswerRe: Retrieving DateTaken for Image Pin
Luc Pattyn22-Oct-07 8:44
sitebuilderLuc Pattyn22-Oct-07 8:44 
GeneralRe: Retrieving DateTaken for Image [modified] Pin
Dino2Dino22-Oct-07 8:55
Dino2Dino22-Oct-07 8:55 
GeneralRe: Retrieving DateTaken for Image Pin
Luc Pattyn22-Oct-07 10:28
sitebuilderLuc Pattyn22-Oct-07 10:28 
GeneralRe: Retrieving DateTaken for Image Pin
Dino2Dino22-Oct-07 12:20
Dino2Dino22-Oct-07 12:20 
GeneralRe: Retrieving DateTaken for Image Pin
Luc Pattyn22-Oct-07 12:53
sitebuilderLuc Pattyn22-Oct-07 12:53 
GeneralRe: Retrieving DateTaken for Image Pin
Dino2Dino22-Oct-07 13:17
Dino2Dino22-Oct-07 13:17 
QuestionEnqueue Dequeue Urgent Pin
s3rro22-Oct-07 7:37
s3rro22-Oct-07 7:37 
Hi,
I am having some problems to use enqueue/dequeue classes.
private void btnSend_Click(object sender, System.EventArgs e)
{
for (int i = 0; i < chckListBox.Items.Count; i++)
{
if (chckListBox.CheckedIndices.Contains(i))
{
string tmpItem = chckListBox.Items[i].ToString();

//parse the string Names and Phone Numbers
string[] info = tmpItem.Split (',');

myQueue.Enqueue(info[0]);

while (myQueue.Count != 0)
{
myQueue.Dequeue();
}
}
}
}

I want to make use the values in dequeue in another mehtod, i want to send the each value of the queueue to a method, or want to sign it smthn else How can I do that?
AnswerRe: Enqueue Dequeue Pin
Guffa22-Oct-07 11:09
Guffa22-Oct-07 11:09 
GeneralRe: Enqueue Dequeue Pin
lmoelleb22-Oct-07 21:25
lmoelleb22-Oct-07 21:25 
JokeRe: Enqueue Dequeue Pin
Guffa23-Oct-07 4:09
Guffa23-Oct-07 4:09 
Questionlist of websites is open now Pin
microgroup22-Oct-07 7:34
microgroup22-Oct-07 7:34 
QuestionUse String as Object Pin
linda.scholtz22-Oct-07 7:01
linda.scholtz22-Oct-07 7:01 
AnswerRe: Use String as Object Pin
Ennis Ray Lynch, Jr.22-Oct-07 7:25
Ennis Ray Lynch, Jr.22-Oct-07 7:25 
QuestionI only see "Content Files" not the "Primary files" in the Add Project Output Group dialog box Pin
ONeil Tomlinson22-Oct-07 5:45
ONeil Tomlinson22-Oct-07 5:45 
QuestionSerial Number Validation Pin
JoZ CaVaLLo22-Oct-07 4:46
JoZ CaVaLLo22-Oct-07 4:46 
AnswerRe: Serial Number Validation Pin
Abhijit Jana22-Oct-07 5:07
professionalAbhijit Jana22-Oct-07 5:07 
Questionextended textbox with button Pin
tabstop22-Oct-07 2:35
tabstop22-Oct-07 2:35 
AnswerRe: extended textbox with button Pin
J4amieC22-Oct-07 2:59
J4amieC22-Oct-07 2:59 
GeneralRe: extended textbox with button Pin
led mike22-Oct-07 5:28
led mike22-Oct-07 5:28 
GeneralRe: extended textbox with button Pin
tabstop22-Oct-07 22:09
tabstop22-Oct-07 22:09 
GeneralRe: extended textbox with button Pin
tabstop22-Oct-07 22:11
tabstop22-Oct-07 22:11 
QuestionDisplay SQL query results in Windows Form Pin
hobbsieoz22-Oct-07 2:35
hobbsieoz22-Oct-07 2:35 
AnswerRe: Display SQL query results in Windows Form Pin
Vasudevan Deepak Kumar22-Oct-07 2:38
Vasudevan Deepak Kumar22-Oct-07 2:38 
GeneralRe: Display SQL query results in Windows Form Pin
hobbsieoz22-Oct-07 2:43
hobbsieoz22-Oct-07 2:43 

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.