Forum: C# Jan 21st, 2008 |
| Replies: 2 Views: 54,064 You might want to also add
Console.WriteLine(objMO["Caption"].ToString());
to your test before the mac address so that you know which devices you are looking at.
Also, don't forget to use... |
Forum: C# Sep 20th, 2007 |
| Replies: 1 Views: 3,078 Use a stored procedure. Then you can execute the jobs just like you would run any stored procedure. |
Forum: C# Sep 20th, 2007 |
| Replies: 3 Views: 2,947 Haven't tried it, but you should be able to connect to the MySQL database via the System.Data.Odbc namespace. It will allow you to connect to any ODBC compliant DSN. |
Forum: C# Sep 20th, 2007 |
| Replies: 12 Views: 8,717 When it comes to getting the job done, whichever you are more familiar with. If I'm paying someone by the hour, I'd be hard pressed to tell them which .NET language to use if they're already... |
Forum: C# Apr 27th, 2005 |
| Replies: 2 Views: 54,064 Use the Management Class object in .NET.
ManagementClass oMClass = new ManagementClass ("Win32_NetworkAdapterConfiguration");
ManagementObjectCollection colMObj = oMCLass.GetInstances();
... |
Forum: C# Apr 7th, 2005 |
| Replies: 12 Views: 8,717 For Windows forms and Office integration, C# is a lot easier to develop in.
But of course, that's just my opinion.
Andy |
Forum: C# Apr 7th, 2005 |
| Replies: 20 Views: 30,138 If you're already an experienced programmer, the online books are really quite good for VS.NET |
Forum: C# Apr 6th, 2005 |
| Replies: 1 Views: 2,066 Although I'm certain there are a LOT more changes than listed here, it's a good place to start.
http://msdn.microsoft.com/vstudio/productinfo/faq/default.aspx
Andy |