QUOTE(sam_benne @ 7 May, 2008 - 08:36 AM)

Hi I making a game but I have a small problem as I am wanting to make something invisible. The first thing you would think is use the properties but not the easy as my game picks up an image and places it in a particular spot. However, what I need is for it to make it show one image and when close to it show another. This is some of my code:
CODE
Case Is = "Z"
Attack = True
Opponent = "Suo Clan:"
End Select
This here is where i need to make it visible but have not got a clue on how i have tried an if statement but that did not work. If anyone has any ideas please tell me thank you.
what are you trying to hide here or r u trying to hide and show and when is it susposed to happen. Could i pleese have some more details. could i have a pic of the window
in the even sub try "me.picturebox.hide()" and "me.picturebox.show()"
not sure if anything goes in the parenthese or not
if you wanted to change the picture use
CODE
Me.PictureBox1.Image = My.Resources.Your_picture
This post has been edited by xtreampb: 7 May, 2008 - 07:00 AM