Send me to rate on the play market?

ilan

Expert
Licensed User
Longtime User
hi

i have published my first app and i would like to add a timer in my app that after some second the user get a massgebox that ask him if he want to rate this app and if he click yes he will be linked to the makret from the app

i try this

Sub ratetimer_tick


If ratemsg = True Then
ratetimer.Enabled = False

Dim result As Int
Msgbox2("Rate this app to support us.","Like this App? rate it please", "Rate", "Cancel", "", LoadBitmap(File.DirAssets , "info.png"))

If result = DialogResponse.POSITIVE Then
Dim fURI As String
fURI = "market://details?id=www.sagital.net"
Dim Market As Intent
Market.Initialize(Market.ACTION_VIEW,fURI)
StartActivity (Market)

Else

End If
End If

ratemsg = True

Return True

End Sub

but its not working

can someone help me?
thanx
 

susu

Well-Known Member
Licensed User
Longtime User
You missed this part:

Dim result as Int
result = Msgbox2(.........)
...........
 
Upvote 0
Top