Label

Category: Controls - .Basic Examples

Date: 02-16-2022

Return to Index


 
'An online Label control tutorial may be found at:
'http://www.garybeene.com/power/pb-tutor-controls.htm
 
'Primary Code:
'Syntax:   Control Add Label, hDlg, id&, txt$, x, y, xx, yy [, [style&] [, [exstyle&]]] [[,] Call CallBack]
Control Add Label, hDlg, 100,"Read Me", 50,50,100,20, %SS_Notify Or %WS_Border
 
'Compilable Example:  (Jose Includes)
'The following compilable code demonstrates a dialog with a single label control.
'The Dialog CallBack response to a mouse click is demonstrated.
'Controls can also have a Callback function of their own.
#Compile EXE
#Dim All
%IDC_Label = 500
#Include "Win32API.inc"
Global hDlg As Dword
 
Function PBMain() As Long
   Dialog New Pixels, 0, "Label Test",300,300,200,200, %WS_SysMenu, 0 To hDlg
   Control Add Label, hDlg, %IDC_Label,"Read Me", 50,50,100,20,%SS_Notify Or %WS_Border
   Dialog Show Modal hDlg Call DlgProc
End Function
 
CallBack Function DlgProc() As Long
   Select Case Cb.Msg
      Case %WM_Command
         Select Case Cb.Ctl
            Case %IDC_Label
               Select Case CB.CtlMsg
                  Case %STN_Clicked
                     Dialog Set Text hDlg, "Clicked"
                  Case %STN_DblClk
                     Dialog Set Text hDlg, "Double Clicked"
               End Select
         End Select
   End Select
End Function
 
'gbs_00094
'Date: 03-10-2012


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