473,397 Members | 2,099 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,397 software developers and data experts.

OwnerDrawn Listbox anyone??

Hey all!

By chance does anyone have a really good example of an ownerdrawn Listbox.

I am trying to make a UI that is similar to the outlook look and feel demo
done in Winforms 2.0 in 1.1.

Essentially, i want a listbox that allows for the insertion of an icon and
supports multiline text.
Nov 21 '05 #1
6 1416
Here is a good grid control that could be used as a listbox. Offers a bunch
of features that are along the lines of what you want...
"Geoff" <Ge***@discussions.microsoft.com> wrote in message
news:67**********************************@microsof t.com...
Hey all!

By chance does anyone have a really good example of an ownerdrawn Listbox.

I am trying to make a UI that is similar to the outlook look and feel demo
done in Winforms 2.0 in 1.1.

Essentially, i want a listbox that allows for the insertion of an icon and
supports multiline text.

Nov 21 '05 #2
Here is a good grid control that could be used as a listbox. Offers a bunch
of features that are along the lines of what you want...
"Geoff" <Ge***@discussions.microsoft.com> wrote in message
news:67**********************************@microsof t.com...
Hey all!

By chance does anyone have a really good example of an ownerdrawn Listbox.

I am trying to make a UI that is similar to the outlook look and feel demo
done in Winforms 2.0 in 1.1.

Essentially, i want a listbox that allows for the insertion of an icon and
supports multiline text.

Nov 21 '05 #3
Thanks for the reply!...Did you attach something? or put a link in that i
missed?

First time on these boards so pardon my ignorance..
Thanks again

"Ray Cassick (Home)" wrote:
Here is a good grid control that could be used as a listbox. Offers a bunch
of features that are along the lines of what you want...
"Geoff" <Ge***@discussions.microsoft.com> wrote in message
news:67**********************************@microsof t.com...
Hey all!

By chance does anyone have a really good example of an ownerdrawn Listbox.

I am trying to make a UI that is similar to the outlook look and feel demo
done in Winforms 2.0 in 1.1.

Essentially, i want a listbox that allows for the insertion of an icon and
supports multiline text.


Nov 21 '05 #4
Thanks for the reply!...Did you attach something? or put a link in that i
missed?

First time on these boards so pardon my ignorance..
Thanks again

"Ray Cassick (Home)" wrote:
Here is a good grid control that could be used as a listbox. Offers a bunch
of features that are along the lines of what you want...
"Geoff" <Ge***@discussions.microsoft.com> wrote in message
news:67**********************************@microsof t.com...
Hey all!

By chance does anyone have a really good example of an ownerdrawn Listbox.

I am trying to make a UI that is similar to the outlook look and feel demo
done in Winforms 2.0 in 1.1.

Essentially, i want a listbox that allows for the insertion of an icon and
supports multiline text.


Nov 21 '05 #5
Just a caution note on owner draw ListBox and multiple line text:
The maximum height of an individual item is 256 pixels.

Best Regards,
Alejandro Lapeyre

"Geoff" <Ge***@discussions.microsoft.com> escribió en el mensaje
news:82**********************************@microsof t.com...
Thanks for the reply!...Did you attach something? or put a link in that i
missed?

First time on these boards so pardon my ignorance..
Thanks again

"Ray Cassick (Home)" wrote:
Here is a good grid control that could be used as a listbox. Offers a
bunch
of features that are along the lines of what you want...
"Geoff" <Ge***@discussions.microsoft.com> wrote in message
news:67**********************************@microsof t.com...
> Hey all!
>
> By chance does anyone have a really good example of an ownerdrawn
> Listbox.
>
> I am trying to make a UI that is similar to the outlook look and feel
> demo
> done in Winforms 2.0 in 1.1.
>
> Essentially, i want a listbox that allows for the insertion of an icon
> and
> supports multiline text.


Nov 21 '05 #6
Yeah, I forgot to paste in the link like a stupid head :)

http://www.codeproject.com/cs/miscct...ridcontrol.asp

Enjoy...

The control is in C# but you should be able to consume it from VB, and it
comes with source.

"Geoff" <Ge***@discussions.microsoft.com> wrote in message
news:82**********************************@microsof t.com...
Thanks for the reply!...Did you attach something? or put a link in that i
missed?

First time on these boards so pardon my ignorance..
Thanks again

"Ray Cassick (Home)" wrote:
Here is a good grid control that could be used as a listbox. Offers a
bunch
of features that are along the lines of what you want...
"Geoff" <Ge***@discussions.microsoft.com> wrote in message
news:67**********************************@microsof t.com...
> Hey all!
>
> By chance does anyone have a really good example of an ownerdrawn
> Listbox.
>
> I am trying to make a UI that is similar to the outlook look and feel
> demo
> done in Winforms 2.0 in 1.1.
>
> Essentially, i want a listbox that allows for the insertion of an icon
> and
> supports multiline text.


Nov 21 '05 #7

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

Similar topics

4
by: Alienz | last post by:
I have a subform where I have a subform with 20 options to select from. When I set the multiselect property to simple and select multiple options, nothing is stored. I have another table with...
1
by: ilya | last post by:
Hi I am making a new listbox which will give me the ability to put in a title on one line, a number on the side for each item, and a description that would textwrap if the string length is bigger...
0
by: Andrew Baker | last post by:
Have a look at the code below. It's a really simple example where I have added two controls to a form, a textbox and a combo box. Both add owner drawn context menus to the controls, but the...
0
by: Dave | last post by:
Does anyone have a simple example of setting up an ownerdrawn statusbarpanel control in c++ .NET? It would be greatly appreciated. Thanks Dave
1
by: Danny van Kasteel | last post by:
Hi, I'm trying to make an ownerdrawn ListBox that can display a custom graphic and 2 lines of text per item. I have tried to set the following properties on a standard ListBox control: ...
1
by: Danny van Kasteel | last post by:
Hi, I'm having some trouble drawing items in controls that I've marked as ownerdrawn. I'm currently developing an application that has ownerdrawn statusbar panels, and a listbox that contains...
0
by: Dave | last post by:
Hi all, I have a listbox that is complex bound by an arraylist. The problem is that when I delete an object from the arraylist, the listbox does not reflect those changes. I tried refreshing...
0
by: Geoff | last post by:
Hey all! By chance does anyone have a really good example of an ownerdrawn Listbox. I am trying to make a UI that is similar to the outlook look and feel demo done in Winforms 2.0 in 1.1. ...
1
by: Jan | last post by:
Short: Is it possible to make an owner-drawn ListBox do a complete re-draw where items are re-measured? In my application a simple change to one of the items in the listbox could result in a...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
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.