Print Page | Close Window

Sorted Property in ComboBox

Printed From: Codejock Forums
Category: Codejock Products
Forum Name: Controls
Forum Description: Topics Related to Codejock Controls
URL: http://forum.codejock.com/forum_posts.asp?TID=13295
Printed Date: 07 July 2024 at 3:22pm
Software Version: Web Wiz Forums 12.04 - http://www.webwizforums.com


Topic: Sorted Property in ComboBox
Posted By: giro21k
Subject: Sorted Property in ComboBox
Date Posted: 30 January 2009 at 2:04pm
Good Days:
 
In ComboBox if add items and activate sorted property dont sort.
 
p.e.j.
 
combo.additem "A"
combo.additem "Hola"
combo.additem "Archivo 4 [Depen]"
combo.sorted=true
 
any idea
 
Thanks



Replies:
Posted By: Albert1
Date Posted: 24 March 2009 at 4:14am
Originally posted by giro21k giro21k wrote:

Good Days:
 
In ComboBox if add items and activate sorted property dont sort.
 
p.e.j.
 
combo.additem "A"
combo.additem "Hola"
combo.additem "Archivo 4 [Depen]"
combo.sorted=true
 
any idea
 
Thanks
 
choose between:
 
1) set sorted=true property at design time
 
2) use code like this:
 
     ComboBox1.Sorted = True
     ComboBox1.EnableMarkup = False
 
Both solution are  but working.
 
 
 
 


Posted By: Oleg
Date Posted: 24 March 2009 at 6:15am
Hi,
 
yes, Sorted have to be set before you add items.


-------------
Oleg, Support Team
CODEJOCK SOFTWARE SOLUTIONS


Posted By: Albert1
Date Posted: 24 March 2009 at 10:32am
Originally posted by oleg oleg wrote:

Hi,
 
yes, Sorted have to be set before you add items.
 
Oleg, try it ...
 
wrong sort:
 

    With ComboBox1
        .Sorted = True
        .AddItem "C"
        .AddItem "A"
        .AddItem "B"
    End With
 
 
correct sort:
 

    With ComboBox1
        .Sorted = True
        .EnableMarkup = False   ' the magic wand !!!
        .AddItem "C"
        .AddItem "A"
        .AddItem "B"
    End With
 
simply a bug .
 
 
 
 



Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.04 - http://www.webwizforums.com
Copyright ©2001-2021 Web Wiz Ltd. - https://www.webwiz.net