I have created a modal form for use as a simple help screen for my app and currently display the text as a label with the following code.
I don't just want to keep making the anchor pane larger as I add more text, but would like it to be scrollable, however I can't find a suitable method.
Thanks in anticipation of suggestions.
B4X:
'Class module
Sub Class_Globals
Private fx As JFX
Private frm As Form
Private helpTxt As Label
Private closeButton As Button
End Sub
Public Sub Initialize (Parent As Form)
frm.Initialize("frm", 600dip, 750dip)
frm.Title = " LiveStats Analysis V4.6 - Help"
frm.Icon = fx.LoadImage(File.DirAssets,"IMG_41.gif")
frm.RootPane.LoadLayout("LiveStatsHelpV1")
frm.SetOwner(Parent)
End Sub
Public Sub Show As Paint
helpTxt.text = "Navigate to the game of interest using the browser at the bottom of the screen to open the LiveStats boxscore" & CRLF & CRLF
helpTxt.text = helpTxt.text & "When the 'Get Data' button is activated, click on it to download the game data. When the data download is complete, the 'Analyse', 'Boxscore' or 'PlayByPlay' buttons will be activated. Clicking on either will result in the following:" & CRLF & CRLF
helpTxt.text = helpTxt.text & "Comments, suggestions and bug reports may be sent to Bryon Dunkley-Smith at bdunkley-smith@bigpond.com."
frm.ShowAndWait
End Sub
Sub closeButton_MouseClicked (EventData As MouseEvent)
frm.Close
End Sub
I don't just want to keep making the anchor pane larger as I add more text, but would like it to be scrollable, however I can't find a suitable method.
Thanks in anticipation of suggestions.