Could you test my first program

Soldato
Joined
12 Jun 2005
Posts
5,361
Hi there,

This is my first program in VB.NET and well in any windows programming.

What it does is download the cinema listings from a website and create an XML file from them.

Could you test it out. Currently i ahve only set it up for a couple of cinemas.

Heres the link:

Click to Download

Tell me how i could improve it or if you get any errors.

Cheers.
 
They're in the directory you installed it to, in a subfolder. Not the most user friendly way of doing things though :p.

Perhaps you could add some kind of XML parser to display the listings on-screen?
 
Seems to have badly formed xml, looks like the " characters in the xml file are escaped:

Code:
A string literal was expected, but no opening quote character was found. Error processing resource 'file:///C:/Program File...

<?xml version=\"1.0\"?><rss version=\"2.0\">
--------------^
 
A nice way to improve it would be to have a list of cinemas and the webpage to get the data for each one in a config file.
To add more cinemas all you would need to do is add an extra bit of config.

At present you would need to modify the code to add cinemas. Same if the webpage changes.
 
Mr^B said:
Seems to have badly formed xml, looks like the " characters in the xml file are escaped:

Code:
A string literal was expected, but no opening quote character was found. Error processing resource 'file:///C:/Program File...

<?xml version=\"1.0\"?><rss version=\"2.0\">
--------------^

Yeah sorry about that
 
Haircut said:
A nice way to improve it would be to have a list of cinemas and the webpage to get the data for each one in a config file.
To add more cinemas all you would need to do is add an extra bit of config.

At present you would need to modify the code to add cinemas. Same if the webpage changes.

Yeah, well it can do any of the cinemas on that site. Just need some more code to interperate other sites

This program was originally an addon for a different program which read the XML files and put the data in, but i will have something to show the listings too.
 
Last edited:
Back
Top Bottom