Hello there,
This is more the less a follow-up on my previous post "Names of form Controls - Conditional Calling".
I am making a card game. There are a lot of places on the table where a specipic card must be displayed or hided. The accomplish this I wrote the follwing:
Now the systems comes up with the following error message:
'Image' is not a member of 'System.Windows.Forms.Control' (See the underlinded part). I must use another collection or something but I am not sure what to do. Can somebody give me a push in the right direction. Thanks in advance.
Greetings,
This is more the less a follow-up on my previous post "Names of form Controls - Conditional Calling".
I am making a card game. There are a lot of places on the table where a specipic card must be displayed or hided. The accomplish this I wrote the follwing:
Code:
Public Sub Card_Set(ByVal PlayerNumber As Integer, ByVal CardNumber As Integer, _
ByVal CardImage As String, Optional ByVal show As Boolean = True)
Dim cname As String = "PictureBox" & PlayerNumber & CardNumber
For Each ctl As Control In Me.Controls
If ctl.Name = cname Then
Dim objImage As Image = Image.FromFile("D:\Sources\Cards\" & Card_Image(CardNumber))
[u]ctl.Image = objImage[/u]: ctl.Visible = show
End If
Next
End Sub
Now the systems comes up with the following error message:
'Image' is not a member of 'System.Windows.Forms.Control' (See the underlinded part). I must use another collection or something but I am not sure what to do. Can somebody give me a push in the right direction. Thanks in advance.
Greetings,