Beta 1.78

myriaddev

Active Member
Licensed User
Longtime User
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

P.S. Saved hours and hours already!!
 

agraham

Expert
Licensed User
Longtime User
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!
 
Upvote 0

agraham

Expert
Licensed User
Longtime User
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
 
Upvote 0
Cookies are required to use this site. You must accept them to continue using the site. Learn more…