Search results for query: *

  1. T

    picture box refresh problem

    Wow, thanks Vis I'll give this a try asap and see if I can get everything working. I'll report my results.
  2. T

    picture box refresh problem

    That line did resolve the issue with moving the picture box which contains the deal button icon, however it did nothing for the graphics when the whole screen is minimized or covered by another window than brought back up to be the front/active window. Any thoughts on how, if at all, it is...
  3. T

    picture box refresh problem

    Now this is odd, I found this code on another site: Me.SetStyle(ControlStyles.OptimizedDoubleBuffer Or ControlStyles.UserPaint Or ControlStyles.AllPaintingInWmPaint, True) I put that in the Public Sub New after the InitializeCompenent() procedure call, and it fixed the graphics problem...
  4. T

    Closing a form

    me.close() that should work
  5. T

    Making a clickable United States map

    oh ya, alternatively you can use the forms mousedown event and it returns the X and Y location of the mouse click, so if you knew washington, for example, had a X coordinate of 125 to 212 and a Y coordinate of 55 to 118 you could create 50 if/then statements in your mouse_down event...
  6. T

    Making a clickable United States map

    Why not put in an image of a map on your form or in a picture box then put a button or probably better yet a link label control on each state with the state 2 letter name over each state. The user would have to click on the button or label and not anywhere in the state, but atleast you'd have...
  7. T

    picture box refresh problem

    I'm ready to blow my brains out, LOL. Now i've setup the picturebox for the dealer button (for those not familiar with poker the white disk with the D on it). That rotates around the table each hand. It's a 32x32 px .png file in a picturebox. It moves from position 1, infront of an avatar...
  8. T

    picture box refresh problem

    The background image on the form I'm trying to use here isn't that complex. It's 150kb, 800x600 .jpg image. I'm not sure why it's causing so much headache. I'm not clear on how to use the setstyle call. Do I just want to set use it on my form in the load event, i.e...
  9. T

    picture box refresh problem

    I have read about setting doublebuffer, but I was unable to find it. It's not in the properties box for the control. I have found that it only occurs when I have a Background image on the Form. If I remove the background image the issue doesn't occur. This got me thinking, why not put my...
  10. T

    picture box refresh problem

    I have a form with 9 picture boxes on it. The images in the picture boxes are .png files with a transparent background. The transparency is working great by setting the picture box back color to transparent and making the transparent .png files. The problem I am having is, when the screen is...
Back
Top