Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
How to change display settings: screen resolution, screen refresh rate
Enumerating data formats currently available on the clipboard
Custom GDI+ class
Capturing keyboard activity of another application with the Raw Input API (VFP9)
Mapping and disconnecting network drives
Winsock: retrieving directory listing from an FTP server using passive data connection (FTP, port 21)
Winsock: sending email messages (SMTP, port 25)
How to display the Properties dialog box for a file (ShellExecuteEx)
Disk in drive A:
Enumerating raw input devices attached to the system (keyboard, mouse, human interface device)
How to download a file from the FTP server using FtpGetFile
Using Font and Text functions
Detecting changes in connections to removable drives (VFP9)
How to play AVI file on the _screen
Using Video Capture: displaying on FoxPro form frames and previewing video obtained from a digital camera
Using EnumPrinters function to enumerate locally installed printers
Splash Screen for the VFP application
Running MSDOS Shell as a child process with redirected input and output (smarter RUN command)
Converting Unicode data from the Clipboard to a character string using a given code page
Creating irregularly shaped FoxPro form using transparency color key
Subclassing CommandButton control to create BackColor property
Enumerating network resources
Vertical Label control
Creating a console window for Visual FoxPro application
Enumerating network interfaces on the local computer

User rating: 0/10 (0 votes)
Rate this code sample:
  • ~
More code examples    Listed functions    Add comment     W32 Constants      Translate this page Printer friendly version of this code sample
Versions:
click to open
Before you begin:

An output of C# version:


See also:
  • How to retrieve adapter information for the local computer
  • Retrieving the interface–to–IP address mapping table

  •  
    // Yuri Zarechny for News2News (c) 2007 
     
    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.Net.NetworkInformation;
     
    namespace netinfo
    {
            class Program
            {
                static void Main(string[] args)
                {
                    NetInterface();
     
                    Console.WriteLine("Press any key to exit.");
                    Console.ReadKey();
                }
     
                private static void NetInterface()
                {
                    NetworkInterface [] NetInfo = 
                        NetworkInterface.GetAllNetworkInterfaces();
     
                    foreach (NetworkInterface info in NetInfo) {
                        IPv4InterfaceStatistics stat = info.GetIPv4Statistics();
                        IPInterfaceProperties prop = info.GetIPProperties();
     
                        Console.WriteLine(info.Description);
     
                        Console.WriteLine("Internal name: {0}", info.Name);
     
                        Console.WriteLine("MAC address: {0}", 
                            info.GetPhysicalAddress());
     
                        Console.WriteLine("Id: {0}", info.Id);
     
                        Console.WriteLine("Type: {0}", info.NetworkInterfaceType);
     
                        Console.WriteLine("Speed (MBps): {0}", info.Speed/1000000);
     
                        Console.WriteLine("MBytes sent: {0}; MBytes received: {1}",
                                stat.BytesSent / 1048576, 
                                stat.BytesReceived / 1048576);
     
                        Console.WriteLine("Status: {0}\n", info.OperationalStatus);
                    }
                }
            }
        }
     
     
     

    User rating: 0/10 (0 votes)
    Rate this code sample:
    • ~
    1745 bytes  
    Created: 2002-01-13 10:11:52  
    Modified: 2010-05-19 22:06:13  
    Visits in 7 days: 90  
    Listed functions:
    Printer friendly API declarations
    My comment:
    The GetInterfaceInfo function retrieves network interface information in one call. Though this data does not include information about the loopback interface.
    Word Index links for this example:
    Translate this page:
      Spanish    Portuguese    German    French    Italian  
    FreeTranslation.com offers instant, free translations of text or web pages.
    User Contributed Notes:
    There are no notes on this subject.


    Copyright © 2001-2013 News2News, Inc. Before reproducing or distributing any data from this site please ask for an approval from its owner. Unless otherwise specified, this page is for your personal and non-commercial use. The information on this page is presented AS IS, meaning that you may use it at your own risk. Microsoft Visual FoxPro and Windows are trade marks of Microsoft Corp. All other trademarks are the property of their respective owners. 

    Privacy policy
    Credits: PHP (4.4.9), an HTML-embedded scripting language, MySQL (5.1.55-log), the Open Source standard SQL database, AceHTML Freeware Version 4, freeware HTML Editor of choice.   Hosted by Korax Online Inc.
    Last Topics Visited (184.72.184.104)
    4 sec.Function: 'GetDefaultPrinter'
    Function group: 'Printing and Print Spooler'
    1.04 hrs.Function: 'GetShellWindow'
    2.34 hrs.Example: 'Using InternetSetFilePointer when resuming interrupted download from the Internet'
     Example: 'A class that encrypts and decrypts files using Cryptography API Functions'
    5.84 hrs.Function: 'CeRegQueryValueEx'
     Example: 'Displaying bitmap using the AlphaBlend function'
     Example: 'How to assemble an array of strings and pass it to external function'
    18.05 hrs.Example: 'Retrieving information about the main VFP window'
    19.44 hrs.Function: 'RegCloseKey'
    Function group: 'Registry'
     
    Function group: 'Windows Sockets 2 (Winsock)'
    Google
    Advertise here!