insert picturebox into picturebox vb6 - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T20:35:05Zhttp://stackoverflow.com/feeds/question/784309http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/784309/insert-picturebox-into-picturebox-vb60insert picturebox into picturebox vb6randichan2009-04-24T02:28:07Z2009-06-20T08:00:01Z
<p>I have a code from some article. (picture inner inside the picture outer)
The result of the code is when i was klik the place in the picture outer, the picture inner will show in the place i was klik, but in diagonal place.</p>
<p>It wasnt in the right place i was klik. I want the picture inner will show
in the spot i was klik</p>
<pre><code>picturebox1 name = PictOuter
picturebox2 name = PictInner
Dim pos As String
Dim bos As String
pos = Format(x / PictOuter.Width * 100, "0")
bos = Format(y / PictOuter.Height * 100, "0")
PictInner.Left = PictOuter.Width * pos / 100
PictInner.Top = PictOuter.Height * bos / 100
PictInner.Visible = True
</code></pre>
<p>Your information will so helpfull, thanks for your attention</p>
http://stackoverflow.com/questions/784309/insert-picturebox-into-picturebox-vb6/822313#8223130Answer by Ryan for insert picturebox into picturebox vb6Ryan2009-05-04T22:05:11Z2009-05-04T22:05:11Z<p>If you simply want the top left corner of the inner box to be where you click, you can use the MouseDown event of the outer PictureBox, which would look like this:</p>
<pre><code>Private Sub PictOuter_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
PictInner.Left = X
PictInner.Top = Y
End Sub
</code></pre>
<p>You can also choose to perform whatever calculations you'd like on X and Y to center the inner PictureBox however you'd like.</p>