how to add item in combox

User avatar
sal21
PlatinumLounger
Posts: 4343
Joined: 26 Apr 2010, 17:36

how to add item in combox

Post by sal21 »

How to additem in combobox in first position?

User avatar
HansV
Administrator
Posts: 78391
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: how to add item in combox

Post by HansV »

Like this:

Code: Select all

    ComboBox1.AddItem "sal21", 0
(Items are numbered starting at 0)
Best wishes,
Hans

User avatar
sal21
PlatinumLounger
Posts: 4343
Joined: 26 Apr 2010, 17:36

Re: how to add item in combox

Post by sal21 »

HansV wrote:
03 Mar 2021, 08:19
Like this:

Code: Select all

    ComboBox1.AddItem "sal21", 0
(Items are numbered starting at 0)
:cheers: