ToolTipText = "Add vbAccelerator's Active Channel"
Top = 2460
Width = 1875
End
Begin VB.ComboBox cboDemo
Height = 315
Index = 2
Left = 60
TabIndex = 9
Top = 1440
Width = 1515
End
Begin VB.ComboBox cboDemo
Height = 315
Index = 1
Left = 60
TabIndex = 7
Top = 840
Width = 1515
End
Begin VB.ComboBox cboDemo
Height = 315
Index = 0
Left = 60
TabIndex = 5
Top = 240
Width = 1515
End
Begin VB.Label lblDemo
BackStyle = 0 'Transparent
Caption = "Price Range:"
ForeColor = &H80000014&
Height = 195
Index = 2
Left = 60
TabIndex = 10
Top = 1200
Width = 1515
End
Begin VB.Label lblDemo
BackStyle = 0 'Transparent
Caption = "Category:"
ForeColor = &H80000014&
Height = 195
Index = 1
Left = 60
TabIndex = 8
Top = 600
Width = 1515
End
Begin VB.Label lblDemo
BackStyle = 0 'Transparent
Caption = "Product:"
ForeColor = &H80000014&
Height = 195
Index = 0
Left = 60
TabIndex = 6
Top = 0
Width = 1515
End
End
Begin VB.PictureBox picSplitter
Height = 6135
Left = 1980
ScaleHeight = 6075
ScaleWidth = 75
TabIndex = 1
Top = 0
Width = 135
End
End
Begin VB.Menu mnuF0MAIN
Caption = "&File"
Begin VB.Menu mnuFile
Caption = "&New..."
Index = 0
Shortcut = ^N
End
Begin VB.Menu mnuFile
Caption = "-"
Index = 1
End
Begin VB.Menu mnuFile
Caption = "&Close"
Index = 2
End
End
Begin VB.Menu mnuHelpTOP
Caption = "&Help"
Begin VB.Menu mnuHelp
Caption = "&About..."
Index = 0
End
End
Attribute VB_Name = "mfrmMain"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Dim cS As New cSplitDDC
Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hWnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
Public Sub ShellEx(ByVal sLocation As String)
Dim lR As Long
lR = ShellExecute(Me.hWnd, "open", sLocation, "", "", vbNormalFocus)
If (lR < 0) Or (lR > 32) Then
'ok
Else
MsgBox "Sorry, I could not go to " & sLocation & ".", vbInformation