gambas-source-code/app/examples/Control/TextEdit/.src/frmShowHtml.class
Benoît Minisini c6a9cd69c2 [EXAMPLES]
* NEW: Add examples again. I hope correctly this time.


git-svn-id: svn://localhost/gambas/trunk@6726 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2014-12-12 19:58:52 +00:00

29 lines
293 B
Text

' Gambas class file
Static $sText As String
Public Sub Run(sText As String) As Boolean
$sText = sText
Return Not Me.ShowModal()
End
Public Sub btnOK_Click()
Me.Close(True)
End
Public Sub btnCancel_Click()
Me.Close
End
Public Sub Form_Open()
TextArea1.Text = $sText
End