Click here to Skip to main content
15,900,258 members
Home / Discussions / C#
   

C#

 
GeneralRe: i want to have form authentication Pin
Dave Kreskowiak22-Jun-05 7:17
mveDave Kreskowiak22-Jun-05 7:17 
GeneralRe: i want to have form authentication Pin
fayaz ahamed22-Jun-05 17:16
fayaz ahamed22-Jun-05 17:16 
GeneralRe: i want to have form authentication Pin
Dave Kreskowiak22-Jun-05 17:47
mveDave Kreskowiak22-Jun-05 17:47 
GeneralRefresh forms Pin
webhay22-Jun-05 6:19
webhay22-Jun-05 6:19 
GeneralRe: Refresh forms Pin
david cohoon22-Jun-05 6:54
david cohoon22-Jun-05 6:54 
Generalping in c# Pin
amarsumanth22-Jun-05 4:46
amarsumanth22-Jun-05 4:46 
GeneralRe: ping in c# Pin
Paul Brower22-Jun-05 5:35
Paul Brower22-Jun-05 5:35 
GeneralRe: ping in c# Pin
Jeff Martin22-Jun-05 10:56
Jeff Martin22-Jun-05 10:56 
Or if you are lazy and have .Net 2.0, just use the Ping class.

Ping ping = new Ping();
byte[] buf = new byte[32];
for (int b = 0; b < buf.Length; b++)
{
    buf[b] = (byte)(b + 65);
}

for (int i = 0; i < count; i++)
{
    PingReply reply = ping.Send(ipAddress, buf, 2000);
    if (reply.Status == IPStatus.TimedOut)
    {
        Console.Out.WriteLine("Request Timed Out");        
    }
    else
    {
        Console.Out.WriteLine(reply.Status.ToString());
    }
}

GeneralRe: ping in c# Pin
amarsumanth24-Jun-05 5:08
amarsumanth24-Jun-05 5:08 
QuestionUpdating layout of dialog with Splitter? Pin
roel_22-Jun-05 3:20
roel_22-Jun-05 3:20 
AnswerRe: Updating layout of dialog with Splitter? Pin
Paul Brower22-Jun-05 5:34
Paul Brower22-Jun-05 5:34 
GeneralSearch finite state machine designer for VS.NET Pin
koch.david22-Jun-05 2:38
koch.david22-Jun-05 2:38 
GeneralRe: Search finite state machine designer for VS.NET Pin
RNEELY22-Jun-05 4:46
RNEELY22-Jun-05 4:46 
GeneralRe: Search finite state machine designer for VS.NET Pin
koch.david24-Jun-05 2:20
koch.david24-Jun-05 2:20 
GeneralRe: Search finite state machine designer for VS.NET Pin
RNEELY24-Jun-05 3:28
RNEELY24-Jun-05 3:28 
GeneralRe: Search finite state machine designer for VS.NET Pin
koch.david26-Jun-05 22:52
koch.david26-Jun-05 22:52 
Generalmap from virtual path to physical one Pin
repekcan22-Jun-05 2:29
repekcan22-Jun-05 2:29 
Generalquery dataset Pin
xrado22-Jun-05 1:38
xrado22-Jun-05 1:38 
GeneralRe: query dataset Pin
Marc Clifton22-Jun-05 1:50
mvaMarc Clifton22-Jun-05 1:50 
GeneralRe: query dataset Pin
Paul Brower22-Jun-05 3:02
Paul Brower22-Jun-05 3:02 
GeneralRe: query dataset Pin
xrado22-Jun-05 3:17
xrado22-Jun-05 3:17 
GeneralRe: query dataset Pin
Paul Brower22-Jun-05 3:46
Paul Brower22-Jun-05 3:46 
GeneralRe: query dataset Pin
david cohoon22-Jun-05 7:55
david cohoon22-Jun-05 7:55 
GeneralRe: query dataset Pin
Anonymous22-Jun-05 8:08
Anonymous22-Jun-05 8:08 
GeneralC# MDI parent form &amp; mdi form childs questions...urgent help please! Pin
GianlucaSeno22-Jun-05 0:49
GianlucaSeno22-Jun-05 0:49 

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.