Great update! I noticed that the "References of:" page can get
OLD/OUTDATED when you add or delete lines in the module(s).
Second item is it is good to keep F3 and the "References of:"
functions, and use them when needed.
Thanks, Jerry
The sound that occurs when pressing F7 and no dialog pops up is too loud compared to the other standard Windows sounds.
Also F7 seems to show references to a variable but not to individual properties and methods of that variable. It would be nice if it did but I guess that's a bit more difficult!
Yes, on my system at least that is far too loud and piercing for comfort at my normal volume setting where other Windows sounds are at a reasonable level.
Following up my reference to F7 above. I am using v1.80 and you can't get a reference to a variable that is in the last line of a Sub for some reason.
B4X:
Sub btnInput_Click
Dim Id As InputDialog
Id.Input = ""
Id.Hint = "Enter some text!"
Id.HintColor = Colors.ARGB(196, 255, 140, 0)
ret = DialogResponse.CANCEL
ret = Id.Show("Input the required text", "B4A Input Dialog", "Yes", "No", "Maybe", Bmp)
ToastMessageShow(ret & " : " & Id.Input, False)
Id.Input = "" 'Place the cursor on Id, press F7 and you get a (too) loud beep :)
End Sub