Two Problems: XML and Debug Mode

Blake81

Well-known member
Joined
Feb 23, 2006
Messages
304
Location
Georgia, USA
Programming Experience
1-3
Hi,

I'm referring to the application I've written that I've asked for help with before. I just noticed a problem recently. For the weather forecast page, it gets the dates for the next four days by looping and using an XML attribute that holds the date for that day in the form "Mar 11". Whenever I look up the forecast for a zip code, the last three forecast dates look ok, but the first one just says "Mar". It isn't the size of the label, and the date is there in the XML. How can I fix this, and for my curiosity, why is it doing this?
I also need to know if there is a way to change the debug mode. Somehow it got changed so that every time I debug, it makes a build of the application. Thanks.
 
I fixed the problem with the date. It was an odd solution, but it worked, and I'm not sure why. I removed the label that holds the first date and put it back, and it now works. I still need to fix the problem where the debug mode is making a build of the application and not just debugging it.
 
The application have to be rebuilt when you debug, but there is different debug/release combinations available.
If you can't find the debug/release config stuff, it's here:
first check: mainmenu Tools, Options, Projects and Solutions section, 'Show advanced build configurations'
then access: mainmenu Build, Configuration Manager
 
Back
Top