home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 4_2005-2006.ISO / data / Zips / XML_Parser19555112102005.psc / forms / frmAbout.frm next >
Text File  |  2005-12-02  |  10KB  |  236 lines

  1. VERSION 5.00
  2. Begin VB.Form frmAbout 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "About MyApp"
  5.    ClientHeight    =   3555
  6.    ClientLeft      =   2340
  7.    ClientTop       =   1935
  8.    ClientWidth     =   5730
  9.    ClipControls    =   0   'False
  10.    Icon            =   "frmAbout.frx":0000
  11.    LinkTopic       =   "Form2"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   2453.724
  15.    ScaleMode       =   0  'User
  16.    ScaleWidth      =   5380.766
  17.    ShowInTaskbar   =   0   'False
  18.    StartUpPosition =   1  'CenterOwner
  19.    Begin VB.PictureBox picIcon 
  20.       AutoSize        =   -1  'True
  21.       ClipControls    =   0   'False
  22.       Height          =   540
  23.       Left            =   240
  24.       Picture         =   "frmAbout.frx":06EA
  25.       ScaleHeight     =   337.12
  26.       ScaleMode       =   0  'User
  27.       ScaleWidth      =   337.12
  28.       TabIndex        =   1
  29.       Top             =   240
  30.       Width           =   540
  31.    End
  32.    Begin VB.CommandButton cmdOK 
  33.       Cancel          =   -1  'True
  34.       Caption         =   "OK"
  35.       Default         =   -1  'True
  36.       Height          =   345
  37.       Left            =   4245
  38.       TabIndex        =   0
  39.       Top             =   2625
  40.       Width           =   1260
  41.    End
  42.    Begin VB.CommandButton cmdSysInfo 
  43.       Caption         =   "&System Info..."
  44.       Height          =   345
  45.       Left            =   4260
  46.       TabIndex        =   2
  47.       Top             =   3075
  48.       Width           =   1245
  49.    End
  50.    Begin VB.Line Line1 
  51.       BorderColor     =   &H00808080&
  52.       BorderStyle     =   6  'Inside Solid
  53.       Index           =   1
  54.       X1              =   84.515
  55.       X2              =   5309.398
  56.       Y1              =   1687.583
  57.       Y2              =   1687.583
  58.    End
  59.    Begin VB.Label lblDescription 
  60.       Caption         =   "Author: Bhupendra  Aole"
  61.       ForeColor       =   &H00000000&
  62.       Height          =   1170
  63.       Left            =   1050
  64.       TabIndex        =   3
  65.       Top             =   1125
  66.       Width           =   3885
  67.    End
  68.    Begin VB.Label lblTitle 
  69.       Caption         =   "Application Title"
  70.       ForeColor       =   &H00000000&
  71.       Height          =   480
  72.       Left            =   1050
  73.       TabIndex        =   5
  74.       Top             =   240
  75.       Width           =   3885
  76.    End
  77.    Begin VB.Line Line1 
  78.       BorderColor     =   &H00FFFFFF&
  79.       BorderWidth     =   2
  80.       Index           =   0
  81.       X1              =   98.6
  82.       X2              =   5309.398
  83.       Y1              =   1697.936
  84.       Y2              =   1697.936
  85.    End
  86.    Begin VB.Label lblVersion 
  87.       Caption         =   "Version"
  88.       Height          =   225
  89.       Left            =   1050
  90.       TabIndex        =   6
  91.       Top             =   780
  92.       Width           =   3885
  93.    End
  94.    Begin VB.Label lblDisclaimer 
  95.       Caption         =   "How to Use: Open 'HowToUse.xml'"
  96.       ForeColor       =   &H00000000&
  97.       Height          =   825
  98.       Left            =   255
  99.       TabIndex        =   4
  100.       Top             =   2625
  101.       Width           =   3870
  102.    End
  103. End
  104. Attribute VB_Name = "frmAbout"
  105. Attribute VB_GlobalNameSpace = False
  106. Attribute VB_Creatable = False
  107. Attribute VB_PredeclaredId = True
  108. Attribute VB_Exposed = False
  109. Option Explicit
  110.  
  111. ' Reg Key Security Options...
  112. Const READ_CONTROL = &H20000
  113. Const KEY_QUERY_VALUE = &H1
  114. Const KEY_SET_VALUE = &H2
  115. Const KEY_CREATE_SUB_KEY = &H4
  116. Const KEY_ENUMERATE_SUB_KEYS = &H8
  117. Const KEY_NOTIFY = &H10
  118. Const KEY_CREATE_LINK = &H20
  119. Const KEY_ALL_ACCESS = KEY_QUERY_VALUE + KEY_SET_VALUE + _
  120.                        KEY_CREATE_SUB_KEY + KEY_ENUMERATE_SUB_KEYS + _
  121.                        KEY_NOTIFY + KEY_CREATE_LINK + READ_CONTROL
  122.                      
  123. ' Reg Key ROOT Types...
  124. Const HKEY_LOCAL_MACHINE = &H80000002
  125. Const ERROR_SUCCESS = 0
  126. Const REG_SZ = 1                         ' Unicode nul terminated string
  127. Const REG_DWORD = 4                      ' 32-bit number
  128.  
  129. Const gREGKEYSYSINFOLOC = "SOFTWARE\Microsoft\Shared Tools Location"
  130. Const gREGVALSYSINFOLOC = "MSINFO"
  131. Const gREGKEYSYSINFO = "SOFTWARE\Microsoft\Shared Tools\MSINFO"
  132. Const gREGVALSYSINFO = "PATH"
  133.  
  134. Private Declare Function RegOpenKeyEx Lib "advapi32" Alias "RegOpenKeyExA" (ByVal hKey As Long, ByVal lpSubKey As String, ByVal ulOptions As Long, ByVal samDesired As Long, ByRef phkResult As Long) As Long
  135. Private Declare Function RegQueryValueEx Lib "advapi32" Alias "RegQueryValueExA" (ByVal hKey As Long, ByVal lpValueName As String, ByVal lpReserved As Long, ByRef lpType As Long, ByVal lpData As String, ByRef lpcbData As Long) As Long
  136. Private Declare Function RegCloseKey Lib "advapi32" (ByVal hKey As Long) As Long
  137.  
  138.  
  139. Private Sub cmdSysInfo_Click()
  140.   Call StartSysInfo
  141. End Sub
  142.  
  143. Private Sub cmdOK_Click()
  144.   Unload Me
  145. End Sub
  146.  
  147. Private Sub Form_Load()
  148.     Me.Caption = "About " & App.Title
  149.     lblVersion.Caption = "Version " & App.Major & "." & App.Minor & "." & App.Revision
  150.     lblTitle.Caption = App.Title
  151.     lblDescription.Caption = "Author: Bhupendra Aole" & vbNewLine & "E-Mail: bhupendra.aole@rediffmail.com"
  152. End Sub
  153.  
  154. Public Sub StartSysInfo()
  155.     On Error GoTo SysInfoErr
  156.  
  157.     Dim rc As Long
  158.     Dim SysInfoPath As String
  159.  
  160.     ' Try To Get System Info Program Path\Name From Registry...
  161.     If GetKeyValue(HKEY_LOCAL_MACHINE, gREGKEYSYSINFO, gREGVALSYSINFO, SysInfoPath) Then
  162.     ' Try To Get System Info Program Path Only From Registry...
  163.     ElseIf GetKeyValue(HKEY_LOCAL_MACHINE, gREGKEYSYSINFOLOC, gREGVALSYSINFOLOC, SysInfoPath) Then
  164.         ' Validate Existance Of Known 32 Bit File Version
  165.         If (Dir(SysInfoPath & "\MSINFO32.EXE") <> "") Then
  166.             SysInfoPath = SysInfoPath & "\MSINFO32.EXE"
  167.             
  168.         ' Error - File Can Not Be Found...
  169.         Else
  170.             GoTo SysInfoErr
  171.         End If
  172.     ' Error - Registry Entry Can Not Be Found...
  173.     Else
  174.         GoTo SysInfoErr
  175.     End If
  176.     
  177.     Call Shell(SysInfoPath, vbNormalFocus)
  178.     
  179.     Exit Sub
  180. SysInfoErr:
  181.     MsgBox "System Information Is Unavailable At This Time", vbOKOnly
  182. End Sub
  183.  
  184. Public Function GetKeyValue(KeyRoot As Long, KeyName As String, SubKeyRef As String, ByRef KeyVal As String) As Boolean
  185.     Dim i As Long                                           ' Loop Counter
  186.     Dim rc As Long                                          ' Return Code
  187.     Dim hKey As Long                                        ' Handle To An Open Registry Key
  188.     Dim KeyValType As Long                                  ' Data Type Of A Registry Key
  189.     Dim tmpVal As String                                    ' Tempory Storage For A Registry Key Value
  190.     Dim KeyValSize As Long                                  ' Size Of Registry Key Variable
  191.     '------------------------------------------------------------
  192.     ' Open RegKey Under KeyRoot {HKEY_LOCAL_MACHINE...}
  193.     '------------------------------------------------------------
  194.     rc = RegOpenKeyEx(KeyRoot, KeyName, 0, KEY_ALL_ACCESS, hKey) ' Open Registry Key
  195.     
  196.     If (rc <> ERROR_SUCCESS) Then GoTo GetKeyError          ' Handle Error...
  197.     
  198.     tmpVal = String$(1024, 0)                             ' Allocate Variable Space
  199.     KeyValSize = 1024                                       ' Mark Variable Size
  200.     
  201.     '------------------------------------------------------------
  202.     ' Retrieve Registry Key Value...
  203.     '------------------------------------------------------------
  204.     rc = RegQueryValueEx(hKey, SubKeyRef, 0, _
  205.                          KeyValType, tmpVal, KeyValSize)    ' Get/Create Key Value
  206.                         
  207.     If (rc <> ERROR_SUCCESS) Then GoTo GetKeyError          ' Handle Errors
  208.     
  209.     If (Asc(Mid(tmpVal, KeyValSize, 1)) = 0) Then           ' Win95 Adds Null Terminated String...
  210.         tmpVal = Left(tmpVal, KeyValSize - 1)               ' Null Found, Extract From String
  211.     Else                                                    ' WinNT Does NOT Null Terminate String...
  212.         tmpVal = Left(tmpVal, KeyValSize)                   ' Null Not Found, Extract String Only
  213.     End If
  214.     '------------------------------------------------------------
  215.     ' Determine Key Value Type For Conversion...
  216.     '------------------------------------------------------------
  217.     Select Case KeyValType                                  ' Search Data Types...
  218.     Case REG_SZ                                             ' String Registry Key Data Type
  219.         KeyVal = tmpVal                                     ' Copy String Value
  220.     Case REG_DWORD                                          ' Double Word Registry Key Data Type
  221.         For i = Len(tmpVal) To 1 Step -1                    ' Convert Each Bit
  222.             KeyVal = KeyVal + Hex(Asc(Mid(tmpVal, i, 1)))   ' Build Value Char. By Char.
  223.         Next
  224.         KeyVal = Format$("&h" + KeyVal)                     ' Convert Double Word To String
  225.     End Select
  226.     
  227.     GetKeyValue = True                                      ' Return Success
  228.     rc = RegCloseKey(hKey)                                  ' Close Registry Key
  229.     Exit Function                                           ' Exit
  230.     
  231. GetKeyError:      ' Cleanup After An Error Has Occured...
  232.     KeyVal = ""                                             ' Set Return Val To Empty String
  233.     GetKeyValue = False                                     ' Return Failure
  234.     rc = RegCloseKey(hKey)                                  ' Close Registry Key
  235. End Function
  236.