Hi!
I got two Pictureboxes on my form. In one of the Pictureboxes i got a Label.
Then I wan't to move the label from the first Picturebox to the other.
How do I do this??
Printable View
Hi!
I got two Pictureboxes on my form. In one of the Pictureboxes i got a Label.
Then I wan't to move the label from the first Picturebox to the other.
How do I do this??
Put your label within a frame (BorderStyle = None) in Picture1, then do this
VB Code:
Option Explicit Private Declare Function SetParent Lib "user32" (ByVal hWndChild As Long, ByVal hWndNewParent As Long) As Long Private Sub Form_Load() SetParent Frame1.hWnd, Picture2.hWnd
Or
Set Label1.Container = Picture2
No need for Frames.
You're right.Quote:
Originally posted by brucevde
Or
Set Label1.Container = Picture2
No need for Frames.