RSS VB & .NET Blogs @ vbCity.com

vb & .net blogs @ vbcity.com
iNeZha robot will deliver the feed updates to your IM or Email in real-time

Delivery Demo of iNezha MSN Robot

Subscribe it
iNezha robot say:
VB & .NET Blogs @ vbCity.com
Title:How To Get the Icon from an Application
Summary: This question comes up every so often in the forums and it's one of those things that you'd think ... (11/28/2008 4:04:44 AM)
Subscribe it

About "VB & .NET Blogs @ vbCity.com"

Author:Claim it now
Website:http://blogs.vbcity.com/MainFeed.aspx
RSS:http://blogs.vbcity.com/MainFeed.aspx
Update interval: 3 days
Last update: 7 days ago
Tags: vbcity.com blogs .net
Subscribers:1
Shared Subscribers:1
Bookmarked or Shared Articles:0  

Recent contents of "VB & .NET Blogs @ vbCity.com"

How To Get the Icon from an Application 7 days ago Read More http://blogs.vbcity.com/xtab/archive/2008/11/27/9208.aspx

This question comes up every so often in the forums and it's one of those things that you'd think should be easy, but actually isn't. Well, it isn't until you know how - like most things in devel...
WPF Missing In Action - The Button PerformClick Method 19 days ago Read More http://blogs.vbcity.com/xtab/archive/2008/11/15/9202.aspx

PerformClick is one of the many casualties of a move from Windows Forms to WPF. Of course, it's probably not something you would need to use often, but just in case you do then there is a way.
I...
Blog Moving to New vbCity Blog Site at http://cs.vbcity.com/blogs/mike-mcintyre/default.aspx 27 days ago Read More http://blogs.vbcity.com/mcintyre/archive/2008/11/07/9198.aspx
My .Net Journal blog posts will be made to the new vbCity blog site from now on.
Here's the link to my new blog site: Mike McIntyre's .NET Journal
WPF project for Background Colours 40 days ago Read More http://blogs.vbcity.com/canoz/archive/2008/10/25/9195.aspx
It is a little longer than I expected to get the the project that goes along with this post about background colours in WPF but as they say better late ....
The project can be downloaded from here.
The Ampersand and XAML 40 days ago Read More http://blogs.vbcity.com/canoz/archive/2008/10/25/9193.aspx
I got caught the other day with a "what the heck" moment.
I was trying to display "Mr & Mrs" as an Item in a ComboBox but it just was not happening.
I suppose that this would not have come to light...
WPF MIA - Anchor, Alignments,Canvas and Margins 40 days ago Read More http://blogs.vbcity.com/xtab/archive/2008/10/25/9192.aspx

Continuing my look at features that seem to be Missing in Action (MIA) from Windows Forms, vbCity colleague Matt pointed out to me that the Anchor property seems to have disappeared.
I'm really...
WPF MIA: BackColor, Background, Colors and Brushes 42 days ago Read More http://blogs.vbcity.com/xtab/archive/2008/10/23/9191.aspx

One of the things that first caught me out in WPF was the simple topic of colors. For example, let's say you want to reset the BackColor of a Form in Windows Forms. Easy enough. This will do the ...
WPF: How To Hide the Minimize and Maximize Buttons 44 days ago Read More http://blogs.vbcity.com/xtab/archive/2008/10/22/9189.aspx
For some time now, I've been promising myself that one day I will create a list of what I like to think of as "WPF MIA" - those basic elements that I am totally familiar with in WindowsForms, but ...
Use LINQ and Visual Basic 2008 to Get a List of Buttons from a Windows Forms Form 46 days ago Read More http://blogs.vbcity.com/mcintyre/archive/2008/10/19/9188.aspx

Example:
' Create a LINQ query.
Dim buttonQuery = From control In Me.Controls Where TypeOf (control) Is Button
' Create a list of object.
Dim buttonList = buttonQuery.ToList
' Iterate through...
Rename Files with the Visual Basic My Namespace Computer Object 46 days ago Read More http://blogs.vbcity.com/mcintyre/archive/2008/10/19/9187.aspx

My makes it easy to use .Net. Here's an example that uses My to rename a file:
Syntax:
Public Shared Sub RenameFile ( _ file As String, _ newName As String _)file is the file path to the file to b...