Hi, I am working on a simple FOSS VB.net program that operates mostly in one window( http://code.google.com/p/slotshuffle/ link if anyone would like to help review the code or or wants to see for reference).
I have searched online for ways to notify users of an updated version, and most of them involve changing the method of deployment or adding a lot of classes (to a program that's only 500-odd lines including comments).
What I would like to be able to do (in pseudo code) is go to a file menu or button(ie a sub) and:
if http://(website...)/slotshuffle2.0.zip exists
then
msgBox.show "New version available" + a link
else
msgBox.show "No new version check back later"
It seems like there is a .exists method that can be used locally, but I am not quite sure if it is applicable here? Also has anyone had experience with update checks and googlecode? (i.e. is the address formed in a predictable manner such that what I am asking is feasible?)