Click here to Skip to main content
15,889,096 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to reference .net DLL present in other folder Pin
KASR126-Dec-12 16:25
KASR126-Dec-12 16:25 
QuestionUsage of Google API in windows application Pin
ukraju24-Dec-12 1:05
ukraju24-Dec-12 1:05 
AnswerRe: Usage of Google API in windows application Pin
David C# Hobbyist.24-Dec-12 2:25
professionalDavid C# Hobbyist.24-Dec-12 2:25 
AnswerRe: Usage of Google API in windows application Pin
Sajeesh Payolam24-Dec-12 20:28
Sajeesh Payolam24-Dec-12 20:28 
QuestionDetecting a 3G connection in Windows 7 and 8 in a desktop application Pin
REDSERPENT724-Dec-12 1:04
REDSERPENT724-Dec-12 1:04 
AnswerRe: Detecting a 3G connection in Windows 7 and 8 in a desktop application Pin
MaulikDusara24-Dec-12 20:44
MaulikDusara24-Dec-12 20:44 
GeneralRe: Detecting a 3G connection in Windows 7 and 8 in a desktop application Pin
REDSERPENT729-Dec-12 21:33
REDSERPENT729-Dec-12 21:33 
QuestionIpstatus.Success answer twice !! Pin
Alex1971_rm24-Dec-12 0:15
Alex1971_rm24-Dec-12 0:15 
Good morning,
I have a problem with the code below....when I receive answer from my clients, if they are connected, ping class answer twice. The problem is that I have to put the answers in a richtextbox I would avoid to see some double entry !

Thanks in advance !!

C#
foreach (string PC in primaColonnaPc)
               
            {
                
                try
                {
                    Ping x = new Ping();

                    PingReply reply = x.Send(PC);
                    if (reply.Status == IPStatus.Success)
                    {

                         valore = PC + " OK\r";
                          
                          f2.riceviDati = valore; 
                         
                        
                    }
                    else
                     valore =("ATTENZIONE: " + PC + "ERROR\r");
                         f2.riceviDati = valore; 
                }
                catch (Exception)
                {
              valore =("ATTENZIONE:" + PC + ": WS not found\r");
                    f2.riceviDati = valore; 
                }

QuestionHow do i create an object of partial class in user control Pin
swapnil709022-Dec-12 20:27
swapnil709022-Dec-12 20:27 
AnswerRe: How do i create an object of partial class in user control Pin
nainakarri22-Dec-12 22:03
nainakarri22-Dec-12 22:03 
Questionerror i declaring null arrays Pin
tashee22-Dec-12 5:22
tashee22-Dec-12 5:22 
AnswerRe: error i declaring null arrays Pin
Richard MacCutchan22-Dec-12 6:40
mveRichard MacCutchan22-Dec-12 6:40 
GeneralRe: error i declaring null arrays Pin
tashee22-Dec-12 7:39
tashee22-Dec-12 7:39 
GeneralRe: error i declaring null arrays Pin
PIEBALDconsult22-Dec-12 8:11
mvePIEBALDconsult22-Dec-12 8:11 
GeneralRe: error i declaring null arrays Pin
harold aptroot24-Dec-12 0:52
harold aptroot24-Dec-12 0:52 
QuestionWorking with data base Pin
columbos1492722-Dec-12 4:26
columbos1492722-Dec-12 4:26 
AnswerRe: Working with data base Pin
PIEBALDconsult22-Dec-12 5:07
mvePIEBALDconsult22-Dec-12 5:07 
GeneralRe: Working with data base Pin
SledgeHammer0122-Dec-12 9:38
SledgeHammer0122-Dec-12 9:38 
GeneralRe: Working with data base Pin
PIEBALDconsult22-Dec-12 12:58
mvePIEBALDconsult22-Dec-12 12:58 
GeneralRe: Working with data base Pin
jschell22-Dec-12 14:05
jschell22-Dec-12 14:05 
GeneralRe: Working with data base Pin
Simon_Whale23-Dec-12 0:05
Simon_Whale23-Dec-12 0:05 
AnswerRe: Working with data base Pin
Abhinav S25-Dec-12 4:49
Abhinav S25-Dec-12 4:49 
Questionhow to mark my location and my neighbor location in sample map(not google map) ? Pin
Deenuji22-Dec-12 2:15
Deenuji22-Dec-12 2:15 
AnswerRe: how to mark my location and my neighbor location in sample map(not google map) ? Pin
Simon_Whale22-Dec-12 4:15
Simon_Whale22-Dec-12 4:15 
GeneralRe: how to mark my location and my neighbor location in sample map(not google map) ? Pin
Deenuji23-Dec-12 19:02
Deenuji23-Dec-12 19:02 

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.