Hi
I created a GUI window inside a GUI window and then "GUICtrlCreatePic" in which I display images. Since some images are too big, I added scrollbars to the second GUI window and decreased it. I thought I will be able to scroll the big images (which now I can see only part of them) but I was wrong.
Here is the part of my script that does not work as I want.
I hope someone will give me an idea how to do it.
G=GUICreate("text", 400, 300, 100, 100, $WS_BORDER+$WS_EX_TOPMOST+ $WS_HSCROLL+$WS_VSCROLL)
$Pic = GUICtrlCreatePic($a, 0, 0, 400, 300)
GUICtrlSetImage($G, $hImage)
WinMove ($G, "text", 100, 100, 200, 200)
; at this stage I can see the top-left corner of the images (100x100) and the scrollbars, which had no effect.
Thank you
tukata