Line

Category: Controls - .Basic Examples

Date: 02-16-2022

Return to Index


 
'An online Line control tutorial may be found at:
'http://www.garybeene.com/power/pb-tutor-controls.htm
 
'Primary Code:
'Syntax:   Control Add Line, hDlg, id&, txt$, x, y, xx, yy [, [style&] [, [exstyle&]]] [[,] Call CallBack]
Control Add Line, hDlg, 100,"", 50,50,100,2,%SS_Notify Or %WS_Border
 
'Compilable Example:  (Jose Includes)
'The following compilable code demonstrates a dialog with a single line control.
'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"
Global hDlg As Dword
 
Function PBMain() As Long
   Dialog New Pixels, 0, "Line Test",300,300,200,200, %WS_SysMenu, 0 To hDlg
   Control Add Line, hDlg, 100,"", 50,50,100,2,%SS_Notify Or %WS_Border
   Dialog Show Modal hDlg Call DlgProc
End Function
 
CallBack Function DlgProc() As Long
   If CB.Msg = %WM_Command AND CB.Ctl = 100 AND CB.Ctlmsg = %STN_Clicked Then
      MsgBox "Clicked!"
   End If
End Function
 
'gbs_00095
'Date: 03-10-2012


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