Showing posts with label interface. Show all posts
Showing posts with label interface. Show all posts

Wednesday, March 21, 2012

please help me find a solution

I am about to develop a web application, basically it will be a treeview interface in the left frame ,which displays my folder/file structures on hard drive. when user click a node, the image files displays on the right frame ---Should I use ASP.NET ? IF SO, I couldn't find a treeview control in the tool box.

If i should download a control some where else, where is it and just want to make sure I don't want to use database or xml file to display the treeview, I hope to be looping through the file structure directly under ,say,c:\sampleimages\image_1974\

thanksThere isn't a built-in TreeView control in ASP.NET 1.1.
There will be in 2.0.

There are existing 3rd party TreeView controls you can use.

Try looking on www.asp.net for assorted ASP.NET controls.

please help me find a solution

I am about to develop a web application, basically it will be a treeview interface in the left frame ,which displays my folder/file structures on hard drive. when user click a node, the image files displays on the right frame ---Should I use ASP.NET ? IF SO, I couldn't find a treeview control in the tool box.

If i should download a control some where else, where is it and just want to make sure I don't want to use database or xml file to display the treeview, I hope to be looping through the file structure under my say,c:\sampleimages\image_1974\

thanksYou should use ASP.NET if your web server is IIS and you are willing to learn the technology that is central to Microsoft's development plans since 2002.

ASP.NET has been extended by numerous third parties for almost anything you can think of in the user interface. There are a number of perfected treeview webcontrols along with so many more items that are either new to you or much better than the controls built into ASP.NET. Microsoft's controls are there to get you started. They have built ASP.NET to be highly extendable and for it to be very easy to integrate a third party control or code.
You can find the third party products on this site's Control Gallery, www.123asp.com, and www.411asp.net.

Please help me make this interface work in v2005.

I found this on the net.
If this works i'm sure i can manage the rest of it.
' /////////////////////////////////////////////////////////////////////////
' //
' // IShellFolder
' //
' /////////////////////////////////////////////////////////////////////////
<ComImport(), InterfaceType(ComInterfaceType.InterfaceIsIUnknown) ,
Guid("000214E6-0000-0000-C000-000000000046")> _
Public Interface IShellFolder
<PreserveSig()> _
Function GetAttributesOf(ByVal cidl As Integer, ByRef apidl As IntPtr, ByRef
rgfInOut As Integer) As Integer
End Interfaceread about it here
http://www.pinvoke.net/default.aspx...hellFolder.html
Regards
John Timney
ASP.NET MVP
Microsoft Regional Director
"Edwin Knoppert" <news@.hellobasic.com> wrote in message
news:4390845c$0$2334$ba620dc5@.text.nova.planet.nl...
>I found this on the net.
> If this works i'm sure i can manage the rest of it.
> '
> /////////////////////////////////////////////////////////////////////////
> ' //
> ' // IShellFolder
> ' //
> '
> /////////////////////////////////////////////////////////////////////////
> <ComImport(), InterfaceType(ComInterfaceType.InterfaceIsIUnknown) ,
> Guid("000214E6-0000-0000-C000-000000000046")> _
> Public Interface IShellFolder
> <PreserveSig()> _
> Function GetAttributesOf(ByVal cidl As Integer, ByRef apidl As IntPtr,
> ByRef rgfInOut As Integer) As Integer
> End Interface
>
Thanks, 'struggling' through google doesn't always help imm.
:)
"John Timney ( MVP )" <timneyj@.despammed.com> schreef in bericht
news:%23uAJue29FHA.252@.TK2MSFTNGP15.phx.gbl...
> read about it here
> http://www.pinvoke.net/default.aspx...hellFolder.html
> --
> Regards
> John Timney
> ASP.NET MVP
> Microsoft Regional Director
> "Edwin Knoppert" <news@.hellobasic.com> wrote in message
> news:4390845c$0$2334$ba620dc5@.text.nova.planet.nl...
>