/Home /Archive /Syndicate /Blog /Support /About /Contact  
All Visual Basic Feeds in one place!





Today we released a new How Do I Video onto the VB Dev Center on how to format controls on data entry forms using the IValueConverter like I showed on my blog here . The IValueConverter allows you full control over the display of the data as well as the editing of that data by users in the controls. Check out all the WPF Forms over Data videos here. Enjoy!


Happy New Year everyone! I hope you all had a great holiday like I did. My family went on a cruise down the west coast of Mexico and it was awesome. I'm still wading through all my email ;-) It was so much fun to be on a ship for New Year's Eve celebrations but I think I ate my body weight in food and drink. My New Year's resolution will definitely be to get more exercise this year. MSDN Magazine also made a New Year's resolution as stated in Howard Dierking's January 2009 Editor's Note . Y ... [ read more ]
Happy New Year! 2008 just flew by for me. And looking forward, there's a small change I wanted to let you guys know about. As many of you know, I've been the dev lead for the VB compiler team since Visual Studio 2008. A few months ago, I decided to try something new for a variety of reasons, and I decided to join the likes of Luke , Luca , Don , Chris , Brian , and Jomo on the F# team. Since September, I've been the "engineering" lead for the F# team, and I am now responsibl ... [ read more ]
XML is very flexible and somewhat permissive in what it allows. Consider this piece of XML:       el = < item > some values < first > one </ first >< second > two </ second ></ item >   The element named item can contain both child elements and a text value.  Thankfully this kind of XML is rare: it poses a heap of whitespace formatting issues, and the value itself can reside in any co ... [ read more ]


A couple months ago I added a feature to this site to build a Site Map for this site dynamically based on the information from the database for posts and files for the downloads. If your not familiar with how Sitemap files can help your site searchability, Google has a good documentation about Sitemaps  in their Webmaster tools. The SiteMap Protocal  is a rather simple XML document consisting of a set of url nodes that consist of the following: loc - URL for the page link l ... [ read more ]
When I’ve started new Visual Studio projects on my Vista x64 box, the Company field would always show up as “Microsoft”… somewhat presumptuous and definitely annoying.  At first I thought the problem was with the templates, but upon inspection they had the correct template parameters, $registeredorganization$.  A quick look in my registry and those keys looked right; then it dawned on me. Visual Studio runs as a 32 bit process, not 64, so it effectively looks in : HKEY_LOCAL_MA ... [ read more ]


On behalf of the Microsoft Visual Basic team, I'd like to wish all of our readers a happy & healthy new year. We truly enjoy getting to know you through your comments and emails, so here's an opportunity to say "thanks"!          As we move forward to 2009, I thought it would be interesting to take a look back at "the best of 2008". Here's a list of the most popular posts each month (based on the # of aggregate vie ... [ read more ]


MSDN Magazine Editor in Chief, Howard Dierking, announced a number of changes to the magazine in the January 2009 Editor's Note . Among that list of changes was the following excerpt: "Furthermore, we recently began moving all of our article code samples to MSDN Code Gallery . This will allow our team to be much more agile in managing and updating code samples as needed. In that agility, we are now also able to translate all C# code samples into Visual Basic." * GOING FORWARD, AL ... [ read more ]
One puzzle SQL developers face from time to time is creating a calendar containing a series of days. Below is some SQL code that will create an in-memory calendar for every day from a begin date to an end date. By adding more columns to the #Calendar table you could store more information about each day, store hours and pay rate to do pay calculations, or other data you need to capture and process in a series of days. The example creates a calendar for 2009.  Happy New Year! ... [ read more ]


After a lot of head scratching, I was finally able to accidentally duplicate a mapping issue reported to me by a reader of the Rough Cuts version of my book, Programming Entity Framework . Then after a lot more head scratching, I was able to discover the pattern and workaround for this problem, which has also surfaced a number of times in the forums. The issue is when creating associations where one of the ends is a 0..1 (zero or one) and one of the entities involved is derived from anoth ... [ read more ]
It's common that you want to launch an external process but supply input and capture the output. Here's one attempt:  ' BAD CODE Using p As New System.Diagnostics.Process     p.StartInfo.FileName = "cat"     p.StartInfo.UseShellExecute = False     p.StartInfo.RedirectStandardOutput = True     p.StartInfo.RedirectStandardInput = True     ... [ read more ]
  When I was going through the snippet editor code to put it on CodePlex, I wanted to grab a screen shot of the snippet schema.  immediately I was confronted with there being no visual designer for schemas in VS 2008, but the worse part was I could have sworn there use to be.  To clear up that confusion here’s an illustrated history lesson on schema views in Visual Studio.   In earlier versions of Visual Studio the schema designer was a bit like the early dat ... [ read more ]


Sometimes you want to launch an external utility and send input to it and also capture its output. But it's easy to run into deadlock this way... ' BAD CODE Using p As New System.Diagnostics.Process     p.StartInfo.FileName = "cat"     p.StartInfo.UseShellExecute = False     p.StartInfo.RedirectStandardOutput = True     p.StartInfo.RedirectStandardInput = True   &nb ... [ read more ]
It's a new week, and the 10-4 video podcast series continues! The topics for this week include an overview of VS 2010, and a special focus on the Start Page. Here's a description of the episode, from the creators: 10-4 Episode 2: Welcome to Visual Studio 2010 In this second episode of 10-4 , we’ll take a very high-level look at Visual Studio 2010. We’ll discuss what types of features you can expect to see in Visual Studio 2010 and .NET Framework 4.0 depending on what ty ... [ read more ]


I’ve just finished uploading the Snippet Editor to CodePlex http://www.codeplex.com/SnippetEditor It includes some minor bug fixes from the previous release. Enjoy :) And Merry XMas :)


The first episode of the 10-4 podcast series is about downloading the VS 2010 CTP. We had blogged the instructions before, but this video will take you through the process. Download now, and start trying out all the new features! :) Episode 1: Downloading and Using the Visual Studio 2010 September CTP For this first episode of 10-4, we’ll look at how to download and use the Virtual PC image of the Visual Studio 2010 September CTP. We’ll give you tips on how to download this massive ... [ read more ]
Back in seventh grade, I had a pretty heavy crush on a girl named Melissa.   She was a good friend of mine, and so I had no problems talking to her.   However, being painfully shy back then, I was far too nervous to ever ask her to “go with” me.   (For those not steeped in American traditions, to “go with” a girl or boy in junior high school meant that you were publicly asserting that the two of you were somehow romantically involved, whatever that actually meant when you wer ... [ read more ]


The Visual Studio and .NET Framework evangelism team has announced 10-4 , a new video podcast. 10-4 will feature different capabilities of Visual Studio 2010 and the .NET Framework 4.0 every week! To get the episodes, visit the show's new home on Channel9:   http://channel9.msdn.com/shows/10-4/ There you will also have the option to subscribe to the RSS feed of your choice, depending on the media format you’re interested in.



Forum Discussions
.NET / .NET Newbies
.NET / .NET General
.NET / .NET 2005
.NET / VB.NET
.NET / C#
.NET / ADO.NET & XML
.NET / Reporting.NET
.NET / ASP.NET
Visual Basic 6 / VB6 Newbies
Visual Basic 6 / VB6 General
Visual Basic 6 / VB6 Controls & ActiveX
Visual Basic 6 / VB6 & Databases
Visual Basic 6 / VB6 & Reporting
Visual Basic 6 / VB6 & WinAPI
Visual Basic 6 / VB6 & Web Development
Visual Basic 6 / VBA
Visual Basic 6 / eMbedded Visual Basic
Visual Basic 6 / Graphics, Games, Multimedia
© 2005 Serge Baranovsky. All rights reserved.
All feed content is property of original publisher. Designated trademarks and brands are the property of their respective owners.

This site is maintained by SubMain(), a division of vbCity.com, LLC