Click here to Skip to main content
15,902,198 members
Home / Discussions / C#
   

C#

 
QuestionRe: Communicate with a C++ server. Pin
CodingLover10-Sep-08 23:40
CodingLover10-Sep-08 23:40 
AnswerRe: Communicate with a C++ server. Pin
leppie10-Sep-08 23:43
leppie10-Sep-08 23:43 
GeneralRe: Communicate with a C++ server. Pin
CodingLover11-Sep-08 17:44
CodingLover11-Sep-08 17:44 
AnswerRe: Communicate with a C++ server. Pin
Harvey Saayman10-Sep-08 23:40
Harvey Saayman10-Sep-08 23:40 
QuestionReading Magnetic Card using C# Pin
gafooronline10-Sep-08 22:59
gafooronline10-Sep-08 22:59 
AnswerRe: Reading Magnetic Card using C# Pin
stancrm11-Sep-08 0:35
stancrm11-Sep-08 0:35 
AnswerRe: Reading Magnetic Card using C# Pin
Harvey Saayman11-Sep-08 1:41
Harvey Saayman11-Sep-08 1:41 
QuestionWhat is the C# equivalent of this code? Pin
Angelinna10-Sep-08 22:22
Angelinna10-Sep-08 22:22 
string lookFor; // used to store the restaurant name we are looking for
BOOL bFound;
//Take the 1st element in the linked list
while ( ! ListEmpty(l) )
{

lookFor = l->elem->restaurant; // Storing r. name for the current list element...

bFound = FALSE;
tmp = q->front; // Get the first element in the queue
while( ( ! QueueEmpty(q) ) && ( ! bFound ) )
{
cout << tmp->item << tmp->cuisine << tmp->mode << endl;
if ( ! strcmp(tmp->restaurant, lookFor) )
{
bFound = TRUE; // found what we were looking for!
}
else
tmp = tmp->next; // still not found, search further in the queue
}
if ( bFound ) // It was found
{
//Do what you please with the info in *tmp*
//it is the coresponding to the current list item
}
AnswerRe: What is the C# equivalent of this code? Pin
c242310-Sep-08 22:47
c242310-Sep-08 22:47 
QuestionAjax popup on Windows Form Pin
Jassim Rahma10-Sep-08 22:20
Jassim Rahma10-Sep-08 22:20 
AnswerRe: Ajax popup on Windows Form Pin
#realJSOP10-Sep-08 23:18
professional#realJSOP10-Sep-08 23:18 
GeneralRe: Ajax popup on Windows Form Pin
Jassim Rahma11-Sep-08 3:24
Jassim Rahma11-Sep-08 3:24 
GeneralRe: Ajax popup on Windows Form Pin
#realJSOP11-Sep-08 4:03
professional#realJSOP11-Sep-08 4:03 
QuestionDll initalization problem Pin
Ami10-Sep-08 22:04
Ami10-Sep-08 22:04 
AnswerRe: Dll initalization problem Pin
Ami10-Sep-08 22:07
Ami10-Sep-08 22:07 
AnswerRe: Dll initalization problem Pin
#realJSOP10-Sep-08 23:21
professional#realJSOP10-Sep-08 23:21 
AnswerRe: Dll initalization problem Pin
Ami11-Sep-08 0:47
Ami11-Sep-08 0:47 
GeneralRe: Dll initalization problem Pin
#realJSOP11-Sep-08 1:01
professional#realJSOP11-Sep-08 1:01 
Questionprnadmin.dll Pin
arkiboys10-Sep-08 22:04
arkiboys10-Sep-08 22:04 
AnswerRe: prnadmin.dll Pin
leppie10-Sep-08 23:39
leppie10-Sep-08 23:39 
GeneralRe: prnadmin.dll Pin
arkiboys11-Sep-08 0:27
arkiboys11-Sep-08 0:27 
GeneralRe: prnadmin.dll Pin
leppie11-Sep-08 1:18
leppie11-Sep-08 1:18 
QuestionHandaling Tabcontrol Pin
Haim Nachum10-Sep-08 21:52
Haim Nachum10-Sep-08 21:52 
QuestionKeep a Connection Open Pin
omlac10-Sep-08 21:42
omlac10-Sep-08 21:42 
AnswerRe: Keep a Connection Open Pin
Guffa10-Sep-08 21:51
Guffa10-Sep-08 21:51 

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.