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

linked list implementation using c++ - DATA STRUCTRES - [ all operations ]

Submitted by shajeel afzal on
i have implemented linked list using c++. it is also explained using comments and have all operations of adding, removing, deleting, updating, sorting and searching e.t.c, I have uploaded this code to get some feedback, and your kind comments about this program. please add comments and give me some feed back. And please do not forget to rate this submission. THANK YOU VERY MUCH

queue implementation - graphics -

Submitted by shajeel afzal on
hello guys this time i am uploading code of implementation of queue in borland c++. i have used very attractive graphics in it. It has very user friendly interface. the purpose uploading the source code to this site is to take your comments and feed back about this code. Please comment, rate about this code. THANK YOU VERY MUCH

How to Change the Data Type of a Column Using T-SQL

Submitted by admin on
There are some cases that you need to change the data type of a field in SQL Server by not using the Management Studio Tools. The reason is if your database is replicated. You cannot change it directly using the management studio tools so your best option is to use T-SQL. In my case I have a column name “TransDate” that has a datetime datatype.