LocationMy.Computer.Registry.PerformanceData Syntax
Dim result As Microsoft.Win32.RegistryKey = _
My.Computer.Registry.PerformanceData
DescriptionThe PerformanceData property returns a Microsoft.Win32.RegistryKey object that refers to the HKEY_PERFORMANCE_DATA location in the Windows registry. This key refers to information that is not actually stored in the registry, but the registry is the access point for this dynamically generated data. The data includes performance counts and statistics, many of which are displayed through the Performance control panel applet. Usage at a Glance
Related Framework Entries
See AlsoClassesRoot Property, CurrentConfig Property, CurrentUser Property, DynData Property, GetValue Method, LocalMachine Property, Registry Object, SetValue Method, Users Property |
LocationMy.Computer.Network.Ping SyntaxDim result As Boolean = My.Computer.Network.Ping( host [, timeout ]) or: Dim result As Boolean = My.Computer.Network.Ping( uri [, timeout ])
DescriptionThe Ping method can be used to test for the presence of another system by making an ICMP protocol echo request over an IP network. This method returns TRue if the destination system was successfully Ping'd or False on a lack of success. Usage at a GlanceEven if the Ping method returns False , the destination system may still be running and on the network. Causes for failure include the ping protocol being turned off on the target system, the ping request being blocked by a firewall, or a failure of the packet to reach the target system due to other network issues. Related Framework Entries
See AlsoNetwork Object |
LocationMy.Computer.Audio.Play SyntaxMy.Computer.Audio.Play( location [, playMode ]) or: My.Computer.Audio.Play( data , playMode ) or: My.Computer.Audio.Play( stream , playMode )
Description
The
Play
method plays a sound (WAV) through the system
Usage at a Glance
ExampleThe following example plays a disk-based WAV file and waits for it to complete.
My.Computer.Audio.Play("C:\YouWin.wav", _
AudioPlayMode.WaitToComplete)
Related Framework Entries
See AlsoAudio Object, PlaySystemSound Method, Stop Method |