WinStudio
IWSForm interface
Returns a Boolean value indicating whether a form has been modified since it was last saved.
object.FormModified
Part |
Description |
| object | Required. A reference to a valid form object. |
A return value of:
Sub Main()
Application.ShowMessage("Doc BG Color = " & ThisForm.BackgroundColor & vbLf & _
"Doc FG color = " & ThisForm.ForegroundColor & vbLf & _
"Form Modified = " & ThisForm.FormModified.ToString())
End Sub