Click here to Skip to main content
16,007,885 members
Home / Discussions / C#
   

C#

 
GeneralRe: Picture from Excel Pin
mvmeijer17-Dec-02 5:20
mvmeijer17-Dec-02 5:20 
GeneralRe: Picture from Excel Pin
Stephane Rodriguez.17-Dec-02 19:07
Stephane Rodriguez.17-Dec-02 19:07 
GeneralSolved! Pin
mvmeijer18-Dec-02 2:56
mvmeijer18-Dec-02 2:56 
GeneralRe: Solved! Pin
Stephane Rodriguez.18-Dec-02 21:49
Stephane Rodriguez.18-Dec-02 21:49 
Questionvirtual list? Pin
User 988517-Dec-02 3:36
User 988517-Dec-02 3:36 
AnswerRe: virtual list? Pin
leppie17-Dec-02 6:07
leppie17-Dec-02 6:07 
GeneralRe: virtual list? Pin
User 988517-Dec-02 6:16
User 988517-Dec-02 6:16 
GeneralRe: virtual list? Pin
leppie17-Dec-02 6:37
leppie17-Dec-02 6:37 
OK Smile | :)

1. You will want to inherited from ListView.
2. Override CreateParams something like this (from MSDN)

protected override CreateParams CreateParams 
{
   get 
   {
      // Extend the CreateParams property of the Button class.
      CreateParams cp = base.CreateParams;
      // Update the button Style.
      cp.Style |= 0x00000040; // BS_ICON value

      return cp;
   }
}

3. Create support classes/structs NMLVDISPINFO (make this a class rather as a pointer is sent in LVN_GETDISPINFO.

4. Override PreProcessMessage() to handle LVN_GETDISPINFO

That should get you going Smile | :) Hope it works Smile | :)

WebBoxes - Yet another collapsable control, but it relies on a "graphics server" for dynamic pretty rounded corners, cool arrows and unlimited font support.

GeneralRe: virtual list? Pin
User 988517-Dec-02 7:00
User 988517-Dec-02 7:00 
GeneralRe: virtual list? Pin
leppie17-Dec-02 7:09
leppie17-Dec-02 7:09 
GeneralSystem.TypeInitializationException error Pin
$iva16-Dec-02 19:18
$iva16-Dec-02 19:18 
GeneralGarbage Collection + threading question Pin
Radoslav Bielik16-Dec-02 12:27
Radoslav Bielik16-Dec-02 12:27 
GeneralRe: Garbage Collection + threading question Pin
Paul Ingles16-Dec-02 14:17
Paul Ingles16-Dec-02 14:17 
GeneralRe: Garbage Collection + threading question Pin
Jeff J16-Dec-02 20:42
Jeff J16-Dec-02 20:42 
GeneralRe: Garbage Collection + threading question Pin
Daniel Turini17-Dec-02 7:01
Daniel Turini17-Dec-02 7:01 
GeneralRe: Garbage Collection + threading question Pin
Radoslav Bielik18-Dec-02 6:46
Radoslav Bielik18-Dec-02 6:46 
GeneralProblems while developing an Explorer bar in C# Pin
Arun Bhalla16-Dec-02 12:16
Arun Bhalla16-Dec-02 12:16 
GeneralWin32 Search features Pin
David23g16-Dec-02 11:46
David23g16-Dec-02 11:46 
GeneralRe: Win32 Search features Pin
Jeff J16-Dec-02 19:26
Jeff J16-Dec-02 19:26 
GeneralListView Icon Selection Pin
Jonathan Austin16-Dec-02 11:04
Jonathan Austin16-Dec-02 11:04 
GeneralRe: ListView Icon Selection Pin
Jonathan Austin16-Dec-02 11:21
Jonathan Austin16-Dec-02 11:21 
GeneralRe: ListView Icon Selection (I butchered it) Pin
Jonathan Austin16-Dec-02 12:25
Jonathan Austin16-Dec-02 12:25 
GeneralRe: ListView Icon Selection (I butchered it) Pin
Jeff J16-Dec-02 19:03
Jeff J16-Dec-02 19:03 
GeneralRe: ListView Icon Selection (I butchered it) Pin
Jonathan Austin17-Dec-02 8:08
Jonathan Austin17-Dec-02 8:08 
Generalquestion on string and encryption sorta Pin
jtmtv1816-Dec-02 9:51
jtmtv1816-Dec-02 9:51 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.