Closed GoogleCodeExporter closed 8 years ago
What do I need to be able to build in VS or MonoDevelop? I wanted to fix/debug
this myself, but I'm unable to build from source.
Both complain about errors in syntax/get/set properties and other places.
Original comment by eto...@gmail.com
on 29 Jul 2011 at 6:24
I will check this issue.
You'll need VS2010 for that syntax. In VS2010 you can just write:
Puplic Property TestProperty as String = "Test"
That will automatically declare a property and a variable as string and will
initialize it with a value; without a set/get.
That's not possible in VS2008 (and obviously in MonoDevelop).
Maas
Original comment by Maas...@gmail.com
on 30 Jul 2011 at 12:05
Hi,
the problem was the expiration date parameter format. It only accept the format
[yyyy-mm]. Actually, when you set a date with a month less than 10 (october)
the passed format is [yyyy-m]. So, actually only october, november and december
returns correct results. For other months it will return the newest month
results.
The fix will be released with next version.
Maas
Original comment by Maas...@gmail.com
on 30 Jul 2011 at 8:16
If you don't want to wait, here the (very simple) solution:
1) Go to QuoteOptionsDownload.DownloadUrl function
2) Replace this:
[...]" AND expiration=""{0}-{1}"""[...]
with this:
[...]" AND expiration=""{0}-{1:00}"""[...]
3) Compile
Maas
Original comment by Maas...@gmail.com
on 30 Jul 2011 at 8:20
Thank you for the help :)
Original comment by eto...@gmail.com
on 1 Aug 2011 at 4:52
Fixed/Done with version 0.9
Original comment by Maas...@gmail.com
on 1 Aug 2011 at 9:51
Original issue reported on code.google.com by
eto...@gmail.com
on 29 Jul 2011 at 12:46Attachments: