S
H
A
R
E

Tuesday, June 28, 2011

Blogger Tool - MyBlogDB - help Documenting your blogs

Screen Shot:
Blogger Tool -  MyBlogDB - help Documenting your blogs

To help Documenting your blog list, If you have many blogs, this tool is usefull while you submitting blogs to ping tool or RSS submitter. Just double click in textbox and the text will be copied into clipboard.

Read More!

Friday, June 24, 2011

Custom Windows Form Border With Background Opacity

Lnguage: VB net (NetFramework 4.0) (will work in NetFramework 3.5 or before)
Custom Form Border With Background Opacity using VB net Csharp in Visual Studio with Windows API dll

Read More!

Monday, June 20, 2011

Blogger XML Guide


Layouts Data Tags
As mentioned in the Widget Tags for Layouts article, there are many different tags you can use to include specific pieces of data in your template. They will all be formatted as or , where name is the name of the particular piece of data you want to use. In the name1.name2 example, name2 is a particular item within a set of data called name1, e.g. photo.url.
This is a master list of all such available data. It is divided into sections by page element, because different types of widgets use different data.

Read More!

Saturday, June 11, 2011

get opened folder location in explorer using vb net

get opened folder location in explorer using vb net
I make it using VS 2010, in 2008 I think same. lets make new Visual Studio Project, Windows Form Application. and import this reference "" look this:

Read More!

Monday, June 06, 2011

Detecting Face in Image (VB.net 2010)

Sample Face Detection with VB net 2010
Sample Face Detection
I write this code using VS 2010, and my OS is Windows 7. This code was used library of the Open Source Computer Vision (OpenCV) and EmguCV. see this:

Read More!

Wednesday, June 01, 2011

VBnet Invoke Listbox Threading in Form

Imports System.Threading
Public Class Form1
    Delegate Sub SetText(ByVal tx As String)
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Dim t As New Thread(AddressOf AddList)
        t.Start()
    End Sub

Read More!