List view works but Details wont ???

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello
I've implemented a ListView in an C# CF application so that it shows me the files present in a directory. It shows them using the List option of View under Appearence. Because I need to know the dates in which those files have been created/edited I thought the details view would be more helpfull. But when I select that as view my form remains empty. Strange thing is that it does create a scrollbar at running time as if it knows the number of files wont fit in one screen... Anyone encountered this problem and knows a solution for it ? Btw all other views do work (like SmallIcon and LargeIcon and List even though the first two arent very readable)...
 
I suppose you forgot to add columns

--
Alex Feinman
---
Coming to MDC? make sure to stop by the session CLI345
on Friday for OpenNETCF talk

tiger79 said:
Hello,
I've implemented a ListView in an C# CF application so that it shows me
the files present in a directory. It shows them using the List option of
View under Appearence. Because I need to know the dates in which those files
have been created/edited I thought the details view would be more helpfull.
But when I select that as view my form remains empty. Strange thing is that
it does create a scrollbar at running time as if it knows the number of
files wont fit in one screen... Anyone encountered this problem and knows a
solution for it ? Btw all other views do work (like SmallIcon and LargeIcon
and List even though the first two arent very readable)...
 
jap, i didn't add any columns to it, is there some good tutorial on how to do that ? I saw one (maybe in the howto's) but I have to admid I didn't understand too much of it :( I'd like to create columns like the ones u see in Windows giving extra info about the file, like file length and date...
 
You can use Visual Studio Desinger to add columns to your ListView control
(look for the Columns property).

Thank you,
Sergiy.

This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
| Thread-Topic: List view works but Details wont ???
| thread-index: AcQTHXRYBTqHs8e3RaW9qyOf3Dp5DQ==
| X-Tomcat-NG: microsoft.public.dotnet.framework.compactframework
| From: "=?Utf-8?B?dGlnZXI3OQ==?=" <[email protected]>
| References: <[email protected]>
<[email protected]>
| Subject: Re: List view works but Details wont ???
| Date: Fri, 26 Mar 2004 02:31:10 -0800
| Lines: 1
| Message-ID: <[email protected]>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="Utf-8"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Content-Class: urn:content-classes:message
| Importance: normal
| Priority: normal
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
| Newsgroups: microsoft.public.dotnet.framework.compactframework
| Path: cpmsftngxa06.phx.gbl
| Xref: cpmsftngxa06.phx.gbl
microsoft.public.dotnet.framework.compactframework:49560
| NNTP-Posting-Host: tk2msftcmty1.phx.gbl 10.40.1.180
| X-Tomcat-NG: microsoft.public.dotnet.framework.compactframework
|
| jap, i didn't add any columns to it, is there some good tutorial on how
to do that ? I saw one (maybe in the howto's) but I have to admid I didn't
understand too much of it :( I'd like to create columns like the ones u see
in Windows giving extra info about the file, like file length and date...
|
 
Back
Top