VB.NET 2002/2003 BasicsFor coders who are new to Visual Basic, working in .NET versions 2002 or 2003 (1.0 and 1.1).
Welcome to the p2p.wrox.com Forums.
You are currently viewing the VB.NET 2002/2003 Basics section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
I Have a warning Variable 'cell' is used before it has been assigned a value. A null reference exception could result at runtime.
I tried to fix this with the code 'AddHandler(cell.Value)' but it did not work
Please can I have some help
[code]
Private Sub btnFind_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnFind.Click
Dim Forms As New Form1
Forms.ListBox1.ClearSelected()
Globals.ThisWorkbook.Sheets.Equals("A2:H5000").ToS tring()
Dim ThisWorkBook As String
Dim Combotext As String
Dim ListText As String
Dim startDate As Date
Dim endDate As Date
Dim name As String
Dim site As String
Dim range As Excel.Range
startDate = cmbStartDate.ValueMember
endDate = cmbEndDate.ValueMember
name = cmbEmployee.ValueMember
site = cmbSiteReference.ValueMember
If cmbStartDate.ValueMember = "" Or cmbEndDate.ValueMember = "" Or cmbEmployee.ValueMember = "" Or cmbSiteReference.ValueMember = "" Then
MsgBox("Make sure you select all values from drop downs", vbCritical, "Missing Values Error")
Exit Sub
End If
'Dim extra_hours As Long
' To account for total hours worked by the person in given time
Dim total_hours As Long
total_hours = 0
'extra_hours = 0
Dim i As Long
Dim Count, count2 As Long
Count = 0
count2 = 2
' sheet2.Cells(1, 2).Value = "test"
'Application.ScreenUpdating = False
'Sheet1.Activate
'Application.ScreenUpdating = False
'MsgBox ActiveSheet.name
Dim checkBox1 As New CheckBox
For i = 2 To 65536
Dim cell As Excel.Range
AddHandler(cell.Value)?
If checkBox1.Checked = True Then
If cell(i, 1).Value >= startDate And cell(i, 1).Value <= endDate And cell(i, 2).Value = name And cell(i, 3).Value = site Then
[\code]