VB.NET
Stuff dealing with vb.net
I've been reading about the new extension methods in VB 9.0. They look to be extremly useful for placing custom functionality on other peoples classes, even sealed classes. Read more about them here: http://blogs.msdn.com/vbtea... Scott Ann Arbor .Net Developers Member...
This one had me stumped for a while, turns out it was extremely simple and I just wanted to share. Here's the setup: <iframe id="Iframe1" frameborder="1" marginwidth="0" marginheight="0" width="745" scrolling="no" height="445" style="position:absolute;to... src="somepage.aspx"><... In the somepage.aspx I had a datalist with a SELECT command argument which updated an object on the server, then on the OnClientClick...
Sometimes I find that I want some text to change on my web site based on a user, or user selection. This is generally an easy task, but what happens when you want to display it in a non web safe font? Sure, you could just create a new image for each different text that you want to display. But that would be tedious and not a lot of fun. I prefer to dynamically generate the image with the GDI+ library. This way you can use any windows true type font to easily create a new image with text. To start...