C
Chrisis
Guest
Hello,
Im trying to write a little popup program which works with win2000 and xp ! Does somebody know whats the best way to do this ?? I thougt about to use the windows integrated "net send" to realize my idea but i also want to have a request if the message arrived or not !!!
Here is my actual problem by programming the optic :
The marked code line occurs the error : "object variable or withblock variable not set" ! I need help !!!
Thanks
Chrisis
Im trying to write a little popup program which works with win2000 and xp ! Does somebody know whats the best way to do this ?? I thougt about to use the windows integrated "net send" to realize my idea but i also want to have a request if the message arrived or not !!!
Here is my actual problem by programming the optic :
Code:
Dim XXListItems As Integer
Dim XXCount As Integer
Dim XXGetItem As ListBox.ObjectCollection
Dim XXListContents As Integer
XXListContents = lisPersonList.Items.Count
MsgBox(XXListContents)
Dim XXItem As Array()
If Not txtUserName.Text = "" And Not txtPcName.Text = "" Then
XXListItems = lisPersonList.Items.Count()
If XXListItems = 0 Then
lisPersonList.Items.Add(txtUserName.Text)
XXPcName(XXCounter) = txtPcName.Text & "#" & txtUserName.Text & ","
XXCounter = XXCounter + 1
Exit Sub
End If
XXGetItem = lisPersonList.Items
For XXCount = 0 To XXListItems - 1
XXItem(XXCount) = XXGetItem.Item(XXCount) <----------
Next XXCount
Thanks
Chrisis
Last edited by a moderator: