Forum: VB.NET Jan 31st, 2006 |
| Replies: 6 Views: 44,012 OK, I figured it out!! Yay me!!
'To get MAC Address
Dim mc As System.Management.ManagementClass
Dim mo As ManagementObject
mc = New ManagementClass("Win32_NetworkAdapterConfiguration")
Dim moc... |
Forum: VB.NET Jan 23rd, 2006 |
| Replies: 6 Views: 44,012 Well crud!!
I tested the app on another machine that has a 1394 adapter as the first network adapter, and the app pulled THAT MAC. How do I make it pull the active MAC that the IP address is... |
Forum: VB.NET Jan 22nd, 2006 |
| Replies: 6 Views: 44,012 WORKS GREAT!!! Thanks a million. I need to get some error checking in there now. If the computer is not hooked up or if the LAN port is dead, I need to know it doesn't have a connection. How can I... |
Forum: VB.NET Jan 21st, 2006 |
| Replies: 6 Views: 44,012 OK, I have everything working except that I need to split the IP address into its 4 octets and have each octet populate the 4 textboxes. Here is my code for it so far. I have the whole IP in the... |
Forum: VB.NET Jan 19th, 2006 |
| Replies: 6 Views: 44,012 I am trying to make an application for deploying to all our workstations at work. I am using VB.NET to create a Windows application. What I need to have done is for the app to open up and display the... |
Forum: VB.NET Jan 5th, 2006 |
| Replies: 1 Views: 1,476 OK, I am very, VERY new to VB.NET :o
I am trying to develop a Windows application that is hopefully pretty straight forward. I'll try to explain best I can.
I have 4 text boxes (Phones,... |