ImageX

Category: Controls - .Basic Examples

Date: 02-16-2022

Return to Index


 
'An online ImageX control tutorial may be found at:
'http://www.garybeene.com/power/pb-tutor-controls.htm
 
'Primary Code:
'Syntax:   Control Add ImageX, hDlg, id&, image$, x, y, xx, yy [, [style&] [, [exstyle&]]] [[,] Call CallBack]
Control Add ImageX, hDlg, 100,"cowgirl", 50,50,100,100, %SS_Notify
 
'Compilable Example:  (Jose Includes)
'The following compilable code demonstrates a dialog with a single
'image control. The image comes from a resource file.
'The Dialog CallBack response to a mouse click is demonstrated.
'Controls can also have a Callback function of their own.
#Compiler PBWin 9, PBWin 10
#Compile EXE
#Dim All
%Unicode=1
#Include "Win32API.inc"
#Resource "gbsnippets.pbr"
Global hDlg As Dword
 
Function PBMain() As Long
   Dialog New Pixels, 0, "ImageX Test",300,300,300,300, %WS_SysMenu, 0 To hDlg
   Control Add Button, hDlg, 101,"Push", 20,20,50,30, %SS_Notify
   Control Add ImageX, hDlg, 100,"cowgirl", 50,50,100,100, %SS_Notify
   Dialog Show Modal hDlg Call DlgProc
End Function
 
CallBack Function DlgProc() As Long
   If CB.Msg = %WM_Command AND CB.Ctl = 101 Then
      Control Set Size hDlg, 100, 150,150
   End If
End Function
 
'gbs_00091
'Date: 03-10-2012


created by gbSnippets
http://www.garybeene.com/sw/gbsnippets.htm