Click here to Skip to main content
15,901,284 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
AnswerRe: File Error Pin
Dave Kreskowiak20-Sep-05 8:44
mveDave Kreskowiak20-Sep-05 8:44 
QuestionTreeview deselecting nodes? Pin
PhrankBooth20-Sep-05 4:16
PhrankBooth20-Sep-05 4:16 
AnswerRe: Treeview deselecting nodes? Pin
Paul Voicu20-Sep-05 5:30
Paul Voicu20-Sep-05 5:30 
AnswerRe: Treeview deselecting nodes? Pin
sreejith ss nair21-Sep-05 22:10
sreejith ss nair21-Sep-05 22:10 
Question"typeloadexception" What is this? How i solve it? Pin
Campaniço20-Sep-05 0:14
Campaniço20-Sep-05 0:14 
Questionhow to take input through telephone Pin
Member 142463519-Sep-05 21:00
Member 142463519-Sep-05 21:00 
AnswerRe: how to take input through telephone Pin
enjoycrack20-Sep-05 17:30
enjoycrack20-Sep-05 17:30 
QuestionProblems with Sockets Pin
Glenn Inman19-Sep-05 5:22
Glenn Inman19-Sep-05 5:22 
I am working with Sockets – I find this interesting, and I would call it a bug. It seems odd that the bytes that comes from GetAddressBytes is not valid for creating a new address given the prototype for it is the same. (A System.ArgumentException is thrown) let me know if you find this odd, a bug or if I am just not understanding how to use this interface correctly.




using System;
using System.Net;
using System.Net.Sockets;
using System.Windows.Forms;
using ThreadingEx;

namespace foo
{

[STAThread]
static void Main(string[] args)
{
IPHostEntry Host;
IPAddress Address;
IPAddress Address2;


Host = Dns.Resolve(“AnyAddressThatResolves.com”);
Address = Host.AddressList[0];

/*
** This will cause an error, the prototype is
** public IPAddress(byte[] address);
** and the GetAddressBytes is
** public byte[] GetAddressBytes();
*/
Address2 = new IPAddress(Address.GetAddressBytes());

}



}


Confused | :confused:

QuestionMigratting from Windows CE English version OS to German Pin
Sevu19-Sep-05 1:50
Sevu19-Sep-05 1:50 
QuestionCOM is not working in Windows98se Pin
Nilesh Gambhava17-Sep-05 23:36
Nilesh Gambhava17-Sep-05 23:36 
AnswerRe: COM is not working in Windows98se Pin
Dave Kreskowiak18-Sep-05 1:38
mveDave Kreskowiak18-Sep-05 1:38 
QuestionMinimum security level to... Pin
Ray Cassick17-Sep-05 14:28
Ray Cassick17-Sep-05 14:28 
QuestionMSMQ Pin
chinnasrihari16-Sep-05 19:23
chinnasrihari16-Sep-05 19:23 
QuestionSubType = "Form" or "UserControl" --> SubType = "Code" Pin
Rafferty Uy15-Sep-05 22:25
Rafferty Uy15-Sep-05 22:25 
Questionauto detect new device in windows application Pin
SongDog15-Sep-05 7:28
SongDog15-Sep-05 7:28 
QuestionSystemMonitor ActiveX control and custom performance counters Pin
ivanrachev15-Sep-05 4:38
ivanrachev15-Sep-05 4:38 
QuestionActive document server in .NET Pin
Bruce Pataki15-Sep-05 3:15
Bruce Pataki15-Sep-05 3:15 
QuestionBug in framework? Pin
AlexR12315-Sep-05 2:16
AlexR12315-Sep-05 2:16 
QuestionRegarding the linking of a dll created in .NET Pin
MoQuisha14-Sep-05 20:20
MoQuisha14-Sep-05 20:20 
Questioncompact framework - registering events Pin
David Menéndez Cisterna14-Sep-05 8:48
David Menéndez Cisterna14-Sep-05 8:48 
QuestionNETCF Windows Forms Control in Pocket IE?? Pin
rainersimon14-Sep-05 5:41
rainersimon14-Sep-05 5:41 
Questiongprs classes Pin
_tasleem14-Sep-05 3:25
_tasleem14-Sep-05 3:25 
AnswerRe: gprs classes Pin
Dave Kreskowiak14-Sep-05 6:49
mveDave Kreskowiak14-Sep-05 6:49 
QuestionHow do set another folder than \bin for my assemblies when "Local Copy"... Pin
MaWeRic14-Sep-05 1:36
MaWeRic14-Sep-05 1:36 
GeneralRe: How do set another folder than \bin for my assemblies when "Local Copy"... Pin
seee sharp19-Sep-05 0:37
seee sharp19-Sep-05 0:37 

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.