RSS widget refreshing downloaded quotes/stories

MarkoMylo

Member
Licensed User
Longtime User
I've created small rss widget and i want to change quotes every, for example , 30 seconds.
I do not talk about widget update interval (i set it on 120 minutes) but refreshing of downloaded stories/quotas in some interval which will appear in one label.
 

MarkoMylo

Member
Licensed User
Longtime User
You can use a regular timer in the service widget. It will work as long as the process lives.

Thx, man.
Sorry about this newbie questions, i'm so excited to make my first small project in the same day i purchased this software :)
 
Upvote 0

MarkoMylo

Member
Licensed User
Longtime User
I put>>>>
Sub timer1_Tick
rv_RequestUpdate
End Sub

and here>>>

Sub Service_Create
Dim timer1 As Timer
timer1.Initialize("Timer1", 10000) <<< this is 10 sec. right???
timer1.Enabled = True

etc etc...

but i get no refreshing... what to do?
 
Upvote 0
Top