vb .net

HyperTyper Game

Submitted by Mr.Niemand03 on
About: A Mini Typing Master Game Coded and Compiled using Visual Studio 2010 Requirements: 1. Install Gunplay3D.ttf first. Don't worry font is included in the archive 2. Visual Studio 2010 or later versions How To Play: Just like Typing Master Game, Try to type the word(s) inside the box while it is going down as fast as you can. Score is determined by the numbers on the left or right side of the

Connect an OLEDB with MS Access 2007 Files

Submitted by bryanhayag on
Add a new module in you project or use the existing module... add a Reference" Microsoft ActiveX Data Objects 2.1 Library or Higher type this code in the Module and make Sub Main as your startup module Option Explicit Public CON as ADODB.Connection Sub Main() Set CON = New ADODB.Connection CON.Provider = "Microsoft.ACE.OLEDB.12.0"

Populating Treeview with N- Level Tree Structure Dynamically in VB.Net

Submitted by saadi92 on
From last two weeks I was facing a problem regarding populating a treeview on a vb .net form , with the data from a table which contains N level of child nodes. I searched but i couldnt find exact solution, anyways finally I was able to solve it using recursive function.... Here is the code... The database table has two fields one is AcCode and 2nd is Parent ID... Private Sub AddTreeNodes(ByRef tv