Heres the Code.
Private Sub tvTreeView_NodeClick(ByVal eventSender As System.Object, ByVal eventArgs As System.Windows.Forms.TreeNodeMouseClickEventArgs) Handles tvTreeView.NodeMouseClick
Dim Node As System.Windows.Forms.TreeNode = eventArgs.Node
Dim z As Object
Dim rptReport As Object
Select Case Node.Name
Case "explorer", "accounts", "billing", "tool", "prints", "viewer", "help"
lvListView.Columns.Clear()
lvListView.View = System.Windows.Forms.View.LargeIcon
lvListView.Items.Clear()
Case "newaccount"
lvListView.Columns.Clear()
lvListView.View = System.Windows.Forms.View.LargeIcon
lvListView.Items.Clear()
frmNewAccounts.Show()
Case "bills"
lvListView.Columns.Clear()
lvListView.View = System.Windows.Forms.View.LargeIcon
lvListView.Items.Clear()
frmBillingForm.Show()
Case "pay"
lvListView.Columns.Clear()
lvListView.View = System.Windows.Forms.View.LargeIcon
lvListView.Items.Clear()
frmPayment.Show()
Case "receipt"
lvListView.Columns.Clear()
lvListView.View = System.Windows.Forms.View.LargeIcon
lvListView.Items.Clear()
frmPrint.Show()
Case "individual"
lvListView.Columns.Clear()
lvListView.View = System.Windows.Forms.View.LargeIcon
lvListView.Items.Clear()
frmPrint2.Show()
Case "all"
lvListView.Columns.Clear()
lvListView.View = System.Windows.Forms.View.LargeIcon
lvListView.Items.Clear()
On Error GoTo Err_Renamed
DataEnvironment1.rsCommand1.let_Source("SELECT TBilling.AccountNumber, TAccount.FullName, TAccount.Address, TAccount.Brand, TAccount.MeterNumber, TAccount.TypeOfConnection, TBilling.CubicMeterUsed, TBilling.Date, TBilling.Others, TBilling.PaymentWithDeduction, TBilling.Penalty, TBilling.PresReading, TBilling.PrevReading FROM TBilling, TAccount, Login WHERE TBilling.AccountNumber = TAccount.AccountNumber")
DataEnvironment1.rsCommand1.Open()
'UPGRADE_WARNING: Couldn't resolve default property of object rptReport.Show. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="6A50421D-15FE-4896-8A1B-2EC21E9037B2"'
rptReport.Show()
Exit Sub
Err_Renamed:
DataEnvironment1.rsCommand1.Close()
DataEnvironment1.rsCommand1.let_Source("SELECT TBilling.AccountNumber, TAccount.FullName, TAccount.Address, TAccount.Brand, TAccount.MeterNumber, TAccount.TypeOfConnection, TBilling.CubicMeterUsed, TBilling.Date, TBilling.Others, TBilling.PaymentWithDeduction, TBilling.Penalty, TBilling.PresReading, TBilling.PrevReading FROM TBilling, TAccount, Login WHERE TBilling.AccountNumber = TAccount.AccountNumber")
Case "useroption"
lvListView.Columns.Clear()
lvListView.View = System.Windows.Forms.View.LargeIcon
lvListView.Items.Clear()
frmUserOption.Show()
Case "header"
lvListView.Columns.Clear()
lvListView.View = System.Windows.Forms.View.LargeIcon
lvListView.Items.Clear()
frmHeader.Show()
Case "viewall"
lvListView.Columns.Clear()
lvListView.View = System.Windows.Forms.View.LargeIcon
lvListView.Items.Clear()
frmViewAll.Show()
Case "viewindividual"
lvListView.Columns.Clear()
lvListView.View = System.Windows.Forms.View.LargeIcon
lvListView.Items.Clear()
frmViewAccounts.Show()
Case "about"
lvListView.Columns.Clear()
lvListView.View = System.Windows.Forms.View.LargeIcon
lvListView.Items.Clear()
frmAbout.Show()
Case "a1"
lvListView.Columns.Clear()
lvListView.View = System.Windows.Forms.View.Details
lvListView.FullRowSelect = True
lvListView.LabelEdit = False
lvListView.Sort()
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(1, "", "Account Number", -2)
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(2, "", "Lastname", CInt(VB6.TwipsToPixelsX(2000)))
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(3, "", "Firstname", -2)
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(4, "", "MI", CInt(VB6.TwipsToPixelsX(1000)))
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(5, "", "Address", CInt(VB6.TwipsToPixelsX(2500)))
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(6, "", "Brand", -2)
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(7, "", "Meter Number", -2)
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(8, "", "Type of Connection", CInt(VB6.TwipsToPixelsX(1800)))
lvSubscribers.lvAddSubscribers(lvListView, pb1)
pb1.Value = 1
Case "b1"
lvListView.Columns.Clear()
lvListView.View = System.Windows.Forms.View.Details
lvListView.FullRowSelect = True
lvListView.LabelEdit = False
lvListView.Sort()
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(1, "", "Account Number", -2)
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(2, "", "Name", CInt(VB6.TwipsToPixelsX(2500)))
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(3, "", "Address", CInt(VB6.TwipsToPixelsX(2500)))
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(4, "", "Brand", -2)
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(5, "", "Meter Number", -2)
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(6, "", "Type of Connection", CInt(VB6.TwipsToPixelsX(1800)))
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(7, "", "Date", CInt(VB6.TwipsToPixelsX(2000)))
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(8, "", "Present Reading", -2)
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(9, "", "Previous Reading", -2)
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(10, "", "CuM Used", -2)
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(11, "", "Penalty", -2)
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(12, "", "Others", -2)
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(13, "", "Total Payment", -2)
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(14, "", "Status", -2)
lvBills.lvAddBills(lvListView, pb1)
pb1.Value = 1
Case "t1"
lvListView.Columns.Clear()
lvListView.View = System.Windows.Forms.View.Details
lvListView.FullRowSelect = True
lvListView.LabelEdit = False
lvListView.Sort()
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(1, "", "Username", CInt(VB6.TwipsToPixelsX(3000)))
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(2, "", "Password", CInt(VB6.TwipsToPixelsX(3000)))
lvReports.lvAddReports(lvListView, pb1)
pb1.Value = 1
Case "p1"
lvListView.Columns.Clear()
lvListView.View = System.Windows.Forms.View.Details
lvListView.FullRowSelect = True
lvListView.LabelEdit = False
lvListView.Sort()
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(1, "", "Account Number", -2)
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(2, "", "Name", CInt(VB6.TwipsToPixelsX(2500)))
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(3, "", "Date", CInt(VB6.TwipsToPixelsX(2000)))
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(4, "", "Penalty", -2)
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(5, "", "Others", -2)
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(6, "", "Balance", -2)
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(7, "", "Amount", CInt(VB6.TwipsToPixelsX(1800)))
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(8, "", "Cash Amount", CInt(VB6.TwipsToPixelsX(1800)))
'UPGRADE_WARNING: Lower bound of collection lvListView.ColumnHeaders has changed from 1 to 0. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="A3B628A0-A810-4AE2-BFA2-9E7A29EB9AD0"'
'UPGRADE_WARNING: Add method in .NET does not produce a value Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="C676271D-1A65-46CA-8403-027613C5E565"'
z = lvListView.Columns.Insert(9, "", "Payment Type", -2)
lvPayments.lvAddPayments(lvListView, pb1)
pb1.Value = 1
End Select
End Sub
End Class
PLease Help

New Topic/Question
Reply



MultiQuote







|