Connecting Tech Pros Worldwide Forums | Help | Site Map

TreeView Control in C#

SoKool
Guest
 
Posts: n/a
#1: Nov 16 '05
Can anyone point me to a site where I can get a free treeview control to use in ASP .NET or any tutorial that can help me build my own treeview control.

I intend to use a treeview to generate a dynamic menu by collating data from a Sql Server Table.

Many thanks.

Tamir Khason
Guest
 
Posts: n/a
#2: Nov 16 '05

re: TreeView Control in C#


http://www.411asp.net/home/assembly/...rice&order=asc

--
Tamir Khason
You want dot.NET? Just ask:
"Please, www.dotnet.us "


"SoKool" <SoKool@discussions.microsoft.com> wrote in message
news:97E1BD56-7CBE-4D50-BF01-537444D83EDB@microsoft.com...[color=blue]
> Can anyone point me to a site where I can get a free treeview control to[/color]
use in ASP .NET or any tutorial that can help me build my own treeview
control.[color=blue]
>
> I intend to use a treeview to generate a dynamic menu by collating data[/color]
from a Sql Server Table.[color=blue]
>
> Many thanks.[/color]


Chua Wen Ching
Guest
 
Posts: n/a
#3: Nov 16 '05

re: TreeView Control in C#


Hi there,

It won't be that hard to create a custom control.

Some additional information of using Treeview.

http://www.syncfusion.com/FAQ/WinFor...c91c.asp#q617q

create a user control and inherit from System.Windows.Forms.TreeView

example,

class treeViewUserControl : System.Windows.Forms.TreeView
{
// get the sql table data and past in here.. or whatever.
}

Correct me if i am wrong. Cheers.
--
Regards,
Chua Wen Ching :)


"SoKool" wrote:
[color=blue]
> Can anyone point me to a site where I can get a free treeview control to use in ASP .NET or any tutorial that can help me build my own treeview control.
>
> I intend to use a treeview to generate a dynamic menu by collating data from a Sql Server Table.
>
> Many thanks.[/color]
Shailen Sukul
Guest
 
Posts: n/a
#4: Nov 16 '05

re: TreeView Control in C#


Thanks for the answer.

You said that TreeView can be built on the Windows.Forms.TreeView base class.
Does that mean that I will be able to use that in ASP. NET.

What I mean to ask is that, what are the extra requirements for an ASP.Net treeview control, over a standard windows treeview control.

Thanks
Shailen S


"Chua Wen Ching" wrote:
[color=blue]
> Hi there,
>
> It won't be that hard to create a custom control.
>
> Some additional information of using Treeview.
>
> http://www.syncfusion.com/FAQ/WinFor...c91c.asp#q617q
>
> create a user control and inherit from System.Windows.Forms.TreeView
>
> example,
>
> class treeViewUserControl : System.Windows.Forms.TreeView
> {
> // get the sql table data and past in here.. or whatever.
> }
>
> Correct me if i am wrong. Cheers.
> --
> Regards,
> Chua Wen Ching :)
>
>
> "SoKool" wrote:
>[color=green]
> > Can anyone point me to a site where I can get a free treeview control to use in ASP .NET or any tutorial that can help me build my own treeview control.
> >
> > I intend to use a treeview to generate a dynamic menu by collating data from a Sql Server Table.
> >
> > Many thanks.[/color][/color]
Chua Wen Ching
Guest
 
Posts: n/a
#5: Nov 16 '05

re: TreeView Control in C#


Hi Shailen Sukul,

Oops. I am too used with windows form development. Okay, there is an article on asp.net treeview web control.

Check this out:

http://msdn.microsoft.com/library/de...webcontrol.asp

Hope it helps. Good Luck!
--
Regards,
Chua Wen Ching :)


"Shailen Sukul" wrote:
[color=blue]
> Thanks for the answer.
>
> You said that TreeView can be built on the Windows.Forms.TreeView base class.
> Does that mean that I will be able to use that in ASP. NET.
>
> What I mean to ask is that, what are the extra requirements for an ASP.Net treeview control, over a standard windows treeview control.
>
> Thanks
> Shailen S
>
>
> "Chua Wen Ching" wrote:
>[color=green]
> > Hi there,
> >
> > It won't be that hard to create a custom control.
> >
> > Some additional information of using Treeview.
> >
> > http://www.syncfusion.com/FAQ/WinFor...c91c.asp#q617q
> >
> > create a user control and inherit from System.Windows.Forms.TreeView
> >
> > example,
> >
> > class treeViewUserControl : System.Windows.Forms.TreeView
> > {
> > // get the sql table data and past in here.. or whatever.
> > }
> >
> > Correct me if i am wrong. Cheers.
> > --
> > Regards,
> > Chua Wen Ching :)
> >
> >
> > "SoKool" wrote:
> >[color=darkred]
> > > Can anyone point me to a site where I can get a free treeview control to use in ASP .NET or any tutorial that can help me build my own treeview control.
> > >
> > > I intend to use a treeview to generate a dynamic menu by collating data from a Sql Server Table.
> > >
> > > Many thanks.[/color][/color][/color]
Shailen Sukul
Guest
 
Posts: n/a
#6: Nov 16 '05

re: TreeView Control in C#


Thanks mate.
That was exactly what I wanted.

Cheers
----------------
Shailen Sukul
BSc, Mcsd, Mcad

"Imagination is more important than knowledge." - Einstein


"Chua Wen Ching" wrote:
[color=blue]
> Hi Shailen Sukul,
>
> Oops. I am too used with windows form development. Okay, there is an article on asp.net treeview web control.
>
> Check this out:
>
> http://msdn.microsoft.com/library/de...webcontrol.asp
>
> Hope it helps. Good Luck!
> --
> Regards,
> Chua Wen Ching :)
>
>
> "Shailen Sukul" wrote:
>[color=green]
> > Thanks for the answer.
> >
> > You said that TreeView can be built on the Windows.Forms.TreeView base class.
> > Does that mean that I will be able to use that in ASP. NET.
> >
> > What I mean to ask is that, what are the extra requirements for an ASP.Net treeview control, over a standard windows treeview control.
> >
> > Thanks
> > Shailen S
> >
> >
> > "Chua Wen Ching" wrote:
> >[color=darkred]
> > > Hi there,
> > >
> > > It won't be that hard to create a custom control.
> > >
> > > Some additional information of using Treeview.
> > >
> > > http://www.syncfusion.com/FAQ/WinFor...c91c.asp#q617q
> > >
> > > create a user control and inherit from System.Windows.Forms.TreeView
> > >
> > > example,
> > >
> > > class treeViewUserControl : System.Windows.Forms.TreeView
> > > {
> > > // get the sql table data and past in here.. or whatever.
> > > }
> > >
> > > Correct me if i am wrong. Cheers.
> > > --
> > > Regards,
> > > Chua Wen Ching :)
> > >
> > >
> > > "SoKool" wrote:
> > >
> > > > Can anyone point me to a site where I can get a free treeview control to use in ASP .NET or any tutorial that can help me build my own treeview control.
> > > >
> > > > I intend to use a treeview to generate a dynamic menu by collating data from a Sql Server Table.
> > > >
> > > > Many thanks.[/color][/color][/color]
Closed Thread