Articles tagged under vb.net

Getting on the Vista developers merry-go-round

Getting on the Vista developers merry-go-round Trying to keep up with the various Vista Beta releases? Want to develop but not sure which version will work on your platform? Here's a useful set of links to make sure you get the right version of the runtime, SDK, Orcas VS extensions and

Mark Page - 3,412 views

Extending Strongly Typed Datasets

Extending Strongly Typed Datasets Strongly Typed Datasets are a rather nice addition to VS2005 (they don't lend themselves well to acronyms however) You still need to create a database and tables and realationships but using STDs saves a writing huge amount of code. If this code

Dave Howard - 6,298 views

Could not write to output file ... The directory name is invalid

Could not write to output file ... The directory name is invalid Recently had a problem deploying an app to a fresh 2003 server. Basically, the application wouldn't start, instead we recieved an error stating that the compiler couldn't write to the "Temporary ASP.NET Files" folder because th

Paul Hayman - 17,055 views

Evaluating Expressions

Evaluating Expressions You can evaluate sums in the fly using .net DataTables. This is how you do it (C# 2005). string sum = "(1+2)/4"; System.Data.DataTable evaluator = new System.Data.DataTable("temp"); double result;   resu

Paul Hayman - 5,251 views