TextBox

Category: Controls - .Basic Examples

Date: 02-16-2022

Return to Index


 
'An online TextBox tutorial may be found at:
'http://www.garybeene.com/power/pb-tutor-controls.htm
 
'Primary Code:
'Syntax:  Control Add TextBox, hDlg, id&, txt$, x, y, xx, yy [, [style&] [, [exstyle&]]] [[,] Call CallBack]
Control Add TextBox, hDlg, 100,"Edit Me!", 50,50,100,20
 
'Compilable Example:  (Jose Includes)
'The following compilable code demonstrates a dialog with a TextBox control,
'The Dialog CallBack response a TextBox content change is demonstrated.
'Controls can also have a Callback function of their own.
#Compiler PBWin 9, PBWin 10
#Compile EXE
#Dim All
%Unicode=1
Global hDlg As DWord
 
Function PBMain() As Long
   Local style&
   style& = %ws_tabstop Or %ws_border Or  %es_left Or %es_autohscroll _
      Or %es_multiline Or %es_nohidesel Or %es_wantreturn
   Dialog New Pixels, 0, "TextBox Test",300,300,200,200, %WS_SysMenu, 0 To hDlg
   Control Add TextBox, hDlg, 100,"Edit Me!", 50,50,100,120, Style&
   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 = %EN_Change Then
      MsgBox "Change made!"
   End If
End Function
 
'gbs_00103
'Date: 03-10-2012


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