Basic.OperatingSystemVendor$ (property)

Syntax Basic.OperatingSystemVendor$
Description Returns a String containing the version of the operating system under which BasicScript is running.
Comments For the Win32 platform, Basic.OperatingSystemVendor$ returns, Microsoft.
Example

                           '
                           'The following example prints the operating system vendor
                           '
                           Sub Main
                           MsgBox "The manufacturer of the operating system is: " & _
Basic.OperatingSystemVendor$
End Sub
                        
See Also Basic.OperatingSystem$ (property), Basic.OperatingSystemVersion$ (property), Basic.OS (property)