473,406 Members | 2,377 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

windows explorer like table

Hi!

I would like to know whether there is a component included in .net fw, which
resembles
Windows explorer table, where you have:
filename file size ...

Or has anyone else created such a component? Or does anyone have any
starting ideas on making one? I've made a similar Table with an array of
TextBox-es but it wasn't so "smooth looking" as the one in win xp :)

Saso
Nov 15 '05 #1
5 4795
Hi Saso,

I would like to know whether there is a component included in .net
fw, which resembles
Windows explorer table, where you have:
filename file size ...

Or has anyone else created such a component? Or does anyone have any
starting ideas on making one? I've made a similar Table with an array
of TextBox-es but it wasn't so "smooth looking" as the one in win xp
:)


The TreeView and the ListView are the controls you should use, however you
will have to populate them yourself. The ListView ist the right side of the
wqindows explorer, the TreeView is the left side. Try the different looks of
the ListView, and you will see ...

Regards,

--
Frank Eller [.NET MVP]
www.frankeller.de
..NET Developers Group Munich- www.munichdot.net
Nov 15 '05 #2
Saso,
The 'table' in Windows Explorer is a ListView object.

When you are seeing 'filename file size ...' the ListView has its View
property set to View.Details, there are also View.LargeIcon, View.List, and
View.SmallIcon.

The ListView object has a collection of ListViewItem objects,
ListViewItem's have a collection of ListViewSubItem objects. The
ListViewItem represents the File (name) itself. The ListViewSubItem
represents details of the file (file size).

See System.Windows.Forms.ListView for details.

Filling the list view with file details you will need to do yourself.

Hopefully this helps
Jay
"Saso Zagoranski" <sa*************@guest.arnes.si> wrote in message
news:bi**********@planja.arnes.si...
Hi!

I would like to know whether there is a component included in .net fw, which resembles
Windows explorer table, where you have:
filename file size ...

Or has anyone else created such a component? Or does anyone have any
starting ideas on making one? I've made a similar Table with an array of
TextBox-es but it wasn't so "smooth looking" as the one in win xp :)

Saso

Nov 15 '05 #3
Thanks for the answers... I looked at ListView object before but only for a
minute because it looks so basic. Now I know that with a little editing it
can become much more... thanks...

One more question... is it possible to make an editable table from ListView?
I'm making something like this:
StudentID StudentName StudentSurname
1 Test Name

And I would be entering values row by row...

Thanks again for the answers...

"Michael Mayer" <mi**@mag37.com> wrote in message
news:eI**************@tk2msftngp13.phx.gbl...
You might be able to find some code here to "borrow"
http://www.c-sharpcorner.com/Code/20...inExplorer.asp

--
Mike Mayer
http://www.mag37.com/csharp/
mi**@mag37.com

"Jay B. Harlow [MVP - Outlook]" <Ja********@email.msn.com> wrote in message news:ur**************@TK2MSFTNGP09.phx.gbl...
Saso,
The 'table' in Windows Explorer is a ListView object.

When you are seeing 'filename file size ...' the ListView has its

View
property set to View.Details, there are also View.LargeIcon, View.List,

and
View.SmallIcon.

The ListView object has a collection of ListViewItem objects,
ListViewItem's have a collection of ListViewSubItem objects. The
ListViewItem represents the File (name) itself. The ListViewSubItem
represents details of the file (file size).

See System.Windows.Forms.ListView for details.

Filling the list view with file details you will need to do yourself.

Hopefully this helps
Jay
"Saso Zagoranski" <sa*************@guest.arnes.si> wrote in message
news:bi**********@planja.arnes.si...
Hi!

I would like to know whether there is a component included in .net fw,

which
resembles
Windows explorer table, where you have:
filename file size ...

Or has anyone else created such a component? Or does anyone have any
starting ideas on making one? I've made a similar Table with an array of TextBox-es but it wasn't so "smooth looking" as the one in win xp :)

Saso



Nov 15 '05 #4
Saso,
The easiest way to have an 'editable' table is to use the DataGrid.

The ListView only supports editing the first field (the ListItem itself).

Hope this helps
Jay

"Saso Zagoranski" <sa*************@guest.arnes.si> wrote in message
news:bi*********@planja.arnes.si...
Thanks for the answers... I looked at ListView object before but only for a minute because it looks so basic. Now I know that with a little editing it
can become much more... thanks...

One more question... is it possible to make an editable table from ListView? I'm making something like this:
StudentID StudentName StudentSurname
1 Test Name

And I would be entering values row by row...

Thanks again for the answers...

"Michael Mayer" <mi**@mag37.com> wrote in message
news:eI**************@tk2msftngp13.phx.gbl...
You might be able to find some code here to "borrow"
http://www.c-sharpcorner.com/Code/20...inExplorer.asp

--
Mike Mayer
http://www.mag37.com/csharp/
mi**@mag37.com

"Jay B. Harlow [MVP - Outlook]" <Ja********@email.msn.com> wrote in message
news:ur**************@TK2MSFTNGP09.phx.gbl...
Saso,
The 'table' in Windows Explorer is a ListView object.

When you are seeing 'filename file size ...' the ListView has its
View
property set to View.Details, there are also View.LargeIcon,
View.List,
and
View.SmallIcon.

The ListView object has a collection of ListViewItem objects,
ListViewItem's have a collection of ListViewSubItem objects. The
ListViewItem represents the File (name) itself. The ListViewSubItem
represents details of the file (file size).

See System.Windows.Forms.ListView for details.

Filling the list view with file details you will need to do yourself.

Hopefully this helps
Jay
"Saso Zagoranski" <sa*************@guest.arnes.si> wrote in message
news:bi**********@planja.arnes.si...
> Hi!
>
> I would like to know whether there is a component included in .net

fw, which
> resembles
> Windows explorer table, where you have:
> filename file size ...
>
> Or has anyone else created such a component? Or does anyone have any
> starting ideas on making one? I've made a similar Table with an

array of > TextBox-es but it wasn't so "smooth looking" as the one in win xp :)
>
> Saso
>
>



Nov 15 '05 #5
I found this example of an editable listview... I haven't checked it yet but
it looks promising...
http://www.c-sharpcorner.com/Code/20...leListView.asp

saso
"Jay B. Harlow [MVP - Outlook]" <Ja********@email.msn.com> wrote in message
news:ez**************@TK2MSFTNGP12.phx.gbl...
Saso,
The easiest way to have an 'editable' table is to use the DataGrid.

The ListView only supports editing the first field (the ListItem itself).

Hope this helps
Jay

"Saso Zagoranski" <sa*************@guest.arnes.si> wrote in message
news:bi*********@planja.arnes.si...
Thanks for the answers... I looked at ListView object before but only for
a
minute because it looks so basic. Now I know that with a little editing it can become much more... thanks...

One more question... is it possible to make an editable table from

ListView?
I'm making something like this:
StudentID StudentName StudentSurname
1 Test Name

And I would be entering values row by row...

Thanks again for the answers...

"Michael Mayer" <mi**@mag37.com> wrote in message
news:eI**************@tk2msftngp13.phx.gbl...
You might be able to find some code here to "borrow"
http://www.c-sharpcorner.com/Code/20...inExplorer.asp

--
Mike Mayer
http://www.mag37.com/csharp/
mi**@mag37.com

"Jay B. Harlow [MVP - Outlook]" <Ja********@email.msn.com> wrote in

message
news:ur**************@TK2MSFTNGP09.phx.gbl...
> Saso,
> The 'table' in Windows Explorer is a ListView object.
>
> When you are seeing 'filename file size ...' the ListView has

its View
> property set to View.Details, there are also View.LargeIcon, View.List, and
> View.SmallIcon.
>
> The ListView object has a collection of ListViewItem objects,
> ListViewItem's have a collection of ListViewSubItem objects. The
> ListViewItem represents the File (name) itself. The ListViewSubItem
> represents details of the file (file size).
>
> See System.Windows.Forms.ListView for details.
>
> Filling the list view with file details you will need to do yourself. >
> Hopefully this helps
> Jay
>
>
> "Saso Zagoranski" <sa*************@guest.arnes.si> wrote in message
> news:bi**********@planja.arnes.si...
> > Hi!
> >
> > I would like to know whether there is a component included in .net fw, > which
> > resembles
> > Windows explorer table, where you have:
> > filename file size ...
> >
> > Or has anyone else created such a component? Or does anyone have any > > starting ideas on making one? I've made a similar Table with an

array
of
> > TextBox-es but it wasn't so "smooth looking" as the one in win xp :) > >
> > Saso
> >
> >
>
>



Nov 15 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: Bob Everland | last post by:
I have an application that is ISAPI and the only way to secure it is through NT permissions. I need to have a way to login to windows authentication so that when I get to the ISAPI application no...
1
by: Steve Randall | last post by:
I am building a utility application that uses much of the same functionality as already exists in the Windows Explorer. It would therefore make sense to use (if possible) the Windows Explorer as the...
1
by: VMI | last post by:
I have a Windows datagrid whose column values are (1,10,100,1000,101,10-1,103,11,1710,2). When the column's sorted (the column's of type String), it'll sort this way , which is wrong. But in...
1
by: Jon Slaughter | last post by:
I'm trying to create a windows explorer like app and the problem I'm having is getting the proper icon for the folders and items. In windows explorer there are many different icons and most seem...
1
by: CSharpner | last post by:
Short Question: How do I support Cut/Paste to/from a .NET app and Windows Explorer? Full Text: I'm nearing the completion of a Remote File Management application. It looks and feels a lot like...
0
by: Shafiq | last post by:
Hi All, Based on the sample kbbar.net applicaation i have created a tool bar for windows explorer. Now i have to enable and disable few buttons based the user slects file in the explorer. For to...
5
by: =?Utf-8?B?SmFwZQ==?= | last post by:
im writing a c# console application that copies files chosen from the windows explorer. I chose the files i want to copy and then from the (right key) menu chose my program. the program starts...
0
AmberJain
by: AmberJain | last post by:
Windows Autorun FAQs: List of autostart locations Linked from the Original article- "Windows Autorun FAQs: Description". Que: Can you list all the autostart locations for windows? Ans: Here is...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.