VB.NET Application

xda2haseeb

New Member
I would love, if some one can tell me the source code in VB.Net for the following two problems:

1.RSS Reader
2.Sliding up and down , the feature like in Windows Mobile or iPhone

Thanks in advance!
 

sitajony

Active Member
Licensed User
For the slideing Up/Down it shoud not be too complicated, a simple timer and a calcul and it's finish :D

If you want slide with a stylus you get the X, Y position on mouse down and on mouse move you check if the new Y position is less than Y save - (Example) 200 then slideup or slidedown if its more than 200...
 

ExcludeReality

Active Member
Licensed User
An RSS reader is quite complicated. First you need to download the XML file, then read all the tags and present the content in a user-friendly interface.

What do you mean by "sliding up and down"? You can save the Y property to a variable at the MouseDown event, and then compare it to the current value of Y in the MouseMove event. For example:
B4X:
If Y > DownY +100 then MsgBox ("Slide Down")
If you want to slide an image across the screen then it must be drawn on the form.
 
Top