list box
Old
  (#1)
Gurk
Guest
 
Posts: n/a
Default list box - 06-04-2007, 09:46 AM

hi all,

is there a way, to make collumns in a listbox, or is there an other box that
already exists of more collumns?

thanks
Maarten


   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: list box
Old
  (#2)
Veign
Guest
 
Posts: n/a
Default Re: list box - 06-04-2007, 09:46 AM

Try the ListView control in Report Mode

--
Chris Hanscom
MVP (Visual Basic)
http://www.veign.com
--

"Gurk" <EMAIL REMOVED> wrote in message
news:412382f3$0$332$EMAIL REMOVED...
> hi all,
>
> is there a way, to make collumns in a listbox, or is there an other box

that
> already exists of more collumns?
>
> thanks
> Maarten
>
>



   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Re: list box
Old
  (#3)
Gurk
Guest
 
Posts: n/a
Default Re: list box - 06-04-2007, 09:46 AM

i've been looking arround, and everybody is taking about a combo box

i can't find it in my vb 6.0 what does it do, and where can i find it

thanks
Maarten

"Veign" <EMAIL REMOVED> wrote in message
news:0DLUc.1820$EMAIL REMOVED nk.net...
> Try the ListView control in Report Mode
>
> --
> Chris Hanscom
> MVP (Visual Basic)
> http://www.veign.com
> --
>
> "Gurk" <EMAIL REMOVED> wrote in message
> news:412382f3$0$332$EMAIL REMOVED...
> > hi all,
> >
> > is there a way, to make collumns in a listbox, or is there an other box

> that
> > already exists of more collumns?
> >
> > thanks
> > Maarten
> >
> >

>
>



   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Re: list box
Old
  (#4)
Rick Rothstein
Guest
 
Posts: n/a
Default Re: list box - 06-04-2007, 09:46 AM

To add a ListView control to your project, go to Project/Components on
VB menu and select Microsoft Windows Common Controls (the first one,
without a tagged number after it) from the list that appears. The
ListView control will be one of the controls that are added to your Tool
window.

Rick - MVP


"Gurk" <EMAIL REMOVED> wrote in message
news:4123902a$0$4187$EMAIL REMOVED...
> i've been looking arround, and everybody is taking about a combo box
>
> i can't find it in my vb 6.0 what does it do, and where can i find it
>
> thanks
> Maarten
>
> "Veign" <EMAIL REMOVED> wrote in message
> news:0DLUc.1820$EMAIL REMOVED nk.net...
> > Try the ListView control in Report Mode
> >
> > --
> > Chris Hanscom
> > MVP (Visual Basic)
> > http://www.veign.com
> > --
> >
> > "Gurk" <EMAIL REMOVED> wrote in message
> > news:412382f3$0$332$EMAIL REMOVED...
> > > hi all,
> > >
> > > is there a way, to make collumns in a listbox, or is there an

other box
> > that
> > > already exists of more collumns?
> > >
> > > thanks
> > > Maarten
> > >
> > >

> >
> >

>
>


   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Re: list box
Old
  (#5)
Gurk
Guest
 
Posts: n/a
Default Re: list box - 06-04-2007, 09:46 AM

thank jou all for replying me

at the moment i've git this code and it works fine

Private Sub Command2_Click()

Dim clmX As ColumnHeader

Set clmX = ListView1.ColumnHeaders. _
Add(, , "IO", ListView1.Width / 10)

For intI = 1 To 16
strIO = GetINI("IO", "IO" & intI, "?")

If strIO = "input" Then

Set clmX = ListView1.ColumnHeaders. _
Add(, , intI, ListView1.Width / 40)


End If
Next intI

ListView1.View = 3


no meightby a simple question, but is there a way to add values into certain
collomns.

thanks Maarten




"Rick Rothstein" <EMAIL REMOVED> wrote in message
news:nPOdnStp35WjBb7cRVn-EMAIL REMOVED...
> To add a ListView control to your project, go to Project/Components on
> VB menu and select Microsoft Windows Common Controls (the first one,
> without a tagged number after it) from the list that appears. The
> ListView control will be one of the controls that are added to your Tool
> window.
>
> Rick - MVP
>
>
> "Gurk" <EMAIL REMOVED> wrote in message
> news:4123902a$0$4187$EMAIL REMOVED...
> > i've been looking arround, and everybody is taking about a combo box
> >
> > i can't find it in my vb 6.0 what does it do, and where can i find it
> >
> > thanks
> > Maarten
> >
> > "Veign" <EMAIL REMOVED> wrote in message
> > news:0DLUc.1820$EMAIL REMOVED nk.net...
> > > Try the ListView control in Report Mode
> > >
> > > --
> > > Chris Hanscom
> > > MVP (Visual Basic)
> > > http://www.veign.com
> > > --
> > >
> > > "Gurk" <EMAIL REMOVED> wrote in message
> > > news:412382f3$0$332$EMAIL REMOVED...
> > > > hi all,
> > > >
> > > > is there a way, to make collumns in a listbox, or is there an

> other box
> > > that
> > > > already exists of more collumns?
> > > >
> > > > thanks
> > > > Maarten
> > > >
> > > >
> > >
> > >

> >
> >

>



   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On





Contact Us - Forum Care Forums - Archive - Top