Re: $$Excel-Macros$$ Fwd: Practice

2010-10-31 Thread bhavya khanna
Hi, I need your help . i am also making form like this . but what is this object like object.list(row,column) and why we are consider column as zero and one On Wed, Oct 27, 2010 at 2:31 AM, Sergio Abadesso < groups.abade...@googlemail.com> wrote: > Hi Dave, > > you have to consider that the pro

Re: $$Excel-Macros$$ Fwd: Practice

2010-10-30 Thread neil johnson
Hi Robert, Thanks On Wed, Oct 27, 2010 at 2:22 AM, roberto mensa wrote: > try: > > Private Sub CommandButton1_Click() > Dim item, rng As Excel.Range > For item = 0 To ListBox1.ListCount - 1 > If Me.ListBox1.Selected(item) = True Then > Set rng = Sheet2.Range("A" & Rows.Count). _ >

Re: $$Excel-Macros$$ Fwd: Practice

2010-10-30 Thread neil johnson
Hi Dave Thanks a lot for giving solution . On Wed, Oct 27, 2010 at 2:31 AM, Sergio Abadesso < groups.abade...@googlemail.com> wrote: > Hi Dave, > > you have to consider that the property object.List(row, column) has two > arguments. The first argument is to pass the row number and the second is

Re: Re: $$Excel-Macros$$ Fwd: Practice

2010-10-27 Thread pm.venkatesan1...@gmail.com
Thanks! -- Sent from my Nokia phone --Original message-- From: Sergio Abadesso To: Cc: "Dave Bonallack" Date: Tuesday, October 26, 2010 11:01:40 PM GMT+0200 Subject: Re: $$Excel-Macros$$ Fwd: Practice Hi Dave, you have to consider that the property object.List(r

Re: $$Excel-Macros$$ Fwd: Practice

2010-10-26 Thread roberto mensa
try: Private Sub CommandButton1_Click() Dim item, rng As Excel.Range For item = 0 To ListBox1.ListCount - 1 If Me.ListBox1.Selected(item) = True Then Set rng = Sheet2.Range("A" & Rows.Count). _ End(xlUp).Offset(1, 0) rng.Value = Me.ListBox1.List(item, 0) rng