Вот какая ошибка вылазит, что бы я ни писал:
An unhandled exception of type 'System.NullReferenceException' occurred in Contact Book.exe
Additional information: Object reference not set to an instance of an object.
Можно пример?
An unhandled exception of type 'System.NullReferenceException' occurred in Contact Book.exe
Additional information: Object reference not set to an instance of an object.
Public Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
mainform = CType(Form1.ActiveForm, Form1)
Dim li As ListViewItem
Dim k As Integer = 0
For Each li In mainform.Table.Items
Dim t As String
t = li.SubItems(k).Text
If CheckBox1.Checked Then
If srchText.Text = t Then
mainform.Table.Select()
li.Selected = True
End If
Else
If srchText.Text = LCase(t) Or srchText.Text = t Then
mainform.Table.Select()
li.Selected = True
End If
End If
Next
Me.Close()
End Sub
!Viper! писал(а):Выкладывай код в котором ты из Form1 вызываешь Form6
Сейчас этот форум просматривают: нет зарегистрированных пользователей и гости: 94