Click here to Skip to main content
15,881,204 members
Home / Discussions / C#
   

C#

 
QuestionSetting Desktop Wallpaper Pin
monrobot139-Oct-06 13:34
monrobot139-Oct-06 13:34 
AnswerRe: Setting Desktop Wallpaper Pin
Stefan Troschuetz9-Oct-06 21:51
Stefan Troschuetz9-Oct-06 21:51 
GeneralRe: Setting Desktop Wallpaper Pin
monrobot1310-Oct-06 16:07
monrobot1310-Oct-06 16:07 
QuestionInterface for equality(only) comparisons Pin
Dan Neely9-Oct-06 10:30
Dan Neely9-Oct-06 10:30 
AnswerRe: Interface for equality(only) comparisons Pin
Guffa9-Oct-06 10:41
Guffa9-Oct-06 10:41 
GeneralRe: Interface for equality(only) comparisons Pin
Dan Neely9-Oct-06 11:03
Dan Neely9-Oct-06 11:03 
Questionhow to protect application .... Pin
galigal159-Oct-06 10:06
galigal159-Oct-06 10:06 
AnswerRe: how to protect application .... Pin
Malcolm Smart9-Oct-06 10:16
Malcolm Smart9-Oct-06 10:16 
Use the network MAC address :-

ManagementClass oMClass = new ManagementClass("Win32_NetworkAdapterConfiguration");

ManagementObjectCollection colMObj = oMClass.GetInstances();

string macAddress = "";
foreach (ManagementObject objMO in colMObj)
{
   if (objMO["MacAddress"] != null)
      {
          macAddress = objMO["MacAddress"].ToString();
          break;
      }
}


Is there a better, quicker way to get this anybody?

Regards

Malc
*********************************************


GeneralRe: how to protect application .... Pin
Dan Neely9-Oct-06 10:55
Dan Neely9-Oct-06 10:55 
QuestionSerializing an interface? Pin
Marc Clifton9-Oct-06 8:28
mvaMarc Clifton9-Oct-06 8:28 
AnswerRe: Serializing an interface? Pin
led mike9-Oct-06 8:57
led mike9-Oct-06 8:57 
GeneralRe: Serializing an interface? Pin
Marc Clifton9-Oct-06 9:29
mvaMarc Clifton9-Oct-06 9:29 
GeneralRe: Serializing an interface? Pin
led mike9-Oct-06 10:31
led mike9-Oct-06 10:31 
AnswerRe: Serializing an interface? Pin
Robert Rohde9-Oct-06 22:13
Robert Rohde9-Oct-06 22:13 
QuestionEscape from image folder Pin
Parshant Verma9-Oct-06 7:39
Parshant Verma9-Oct-06 7:39 
AnswerRe: Escape from image folder Pin
Guffa9-Oct-06 9:41
Guffa9-Oct-06 9:41 
QuestionEmpty Crystal Report Pin
WillemM9-Oct-06 7:12
WillemM9-Oct-06 7:12 
AnswerRe: Empty Crystal Report Pin
WillemM9-Oct-06 21:05
WillemM9-Oct-06 21:05 
AnswerRe: Empty Crystal Report Pin
WillemM10-Oct-06 6:24
WillemM10-Oct-06 6:24 
QuestionHow could this not work? Pin
nicknotyet9-Oct-06 6:40
nicknotyet9-Oct-06 6:40 
AnswerRe: How could this not work? Pin
nicknotyet9-Oct-06 6:44
nicknotyet9-Oct-06 6:44 
GeneralRe: How could this not work? Pin
User 66589-Oct-06 7:12
User 66589-Oct-06 7:12 
JokeRe: How could this not work? Pin
Guffa9-Oct-06 7:48
Guffa9-Oct-06 7:48 
Questionkeyup/keypress event for forms Pin
jeweladdict9-Oct-06 6:38
jeweladdict9-Oct-06 6:38 
AnswerRe: keyup/keypress event for forms Pin
Stefan Troschuetz9-Oct-06 7:08
Stefan Troschuetz9-Oct-06 7:08 

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.