Group:  Microsoft Excel ยป microsoft.public.excel
Thread: A lot of Text Boxes!

DotNetBag
.NET Development Newsgroups

HTVi
TV Discussion Newsgroups

Our Hot Pick: Rising Antivirus 2006 - Certified by TUV & Checkmark! Get 10% discount by entering this coupon code: ONDISCOUNT10
Rising Antivirus 2006

A lot of Text Boxes!
"Kenneth Ho" <hoken[ at ]hknet.com> 17.07.2006 03:33:31
Hello all,
I got a problem on my excel files. Hope you may help.
I don't know why, many of my excel files have a huge number of Text
Boxes. It's over 50,000 and they're all empty. As a result, it slows down
my computer. Whenever I edit the files, it takes more than 10 seconds to
move one cell to another. So, I can't do anything on them anymore.
I've checked my computer and it's no virus. I'm still using Excel 97.
Any one of you have the same experience? Why this happened? You will help
me a lot if you could solve my problem. Many thanks!

Regards,
Kenneth Ho


Re: A lot of Text Boxes!
"Jim Cone" <jim.coneXXX[ at ]rcn.comXXX> 17.07.2006 03:46:26
You don't know why?
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware

"Kenneth Ho"
<hoken[ at ]hknet.com>
wrote in message

Hello all,
I got a problem on my excel files. Hope you may help.
I don't know why, many of my excel files have a huge number of Text
Boxes. It's over 50,000 and they're all empty. As a result, it slows down
my computer. Whenever I edit the files, it takes more than 10 seconds to
move one cell to another. So, I can't do anything on them anymore.
I've checked my computer and it's no virus. I'm still using Excel 97.
Any one of you have the same experience? Why this happened? You will help
me a lot if you could solve my problem. Many thanks!

Regards,
Kenneth Ho


Re: A lot of Text Boxes!
"Bob Phillips" <bob.NGs[ at ]somewhere.com> 17.07.2006 07:19:32
If you remove them, do they come back?

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"Kenneth Ho" <hoken[ at ]hknet.com> wrote in message
news:e9f0c1$nd1$1[ at ]nnews.pacific.net.hk...
[Quoted Text]
> Hello all,
> I got a problem on my excel files. Hope you may help.
> I don't know why, many of my excel files have a huge number of Text
> Boxes. It's over 50,000 and they're all empty. As a result, it slows
down
> my computer. Whenever I edit the files, it takes more than 10 seconds to
> move one cell to another. So, I can't do anything on them anymore.
> I've checked my computer and it's no virus. I'm still using Excel 97.
> Any one of you have the same experience? Why this happened? You will
help
> me a lot if you could solve my problem. Many thanks!
>
> Regards,
> Kenneth Ho
>
>


Re: A lot of Text Boxes!
"Kenneth Ho" <hoken[ at ]hknet.com> 21.07.2006 03:53:50
Thanks for your reply.
I can't remove them all. As there're more than 50000. Any idea? Thanks.

Regards,
Kenneth Ho


"Bob Phillips" <bob.NGs[ at ]somewhere.com> wrote in
message:uvUZZFXqGHA.4684[ at ]TK2MSFTNGP05.phx.gbl...
[Quoted Text]
> If you remove them, do they come back?
>
> --
> HTH
>
> Bob Phillips
>
> (replace somewhere in email address with gmail if mailing direct)
>
> "Kenneth Ho" <hoken[ at ]hknet.com> wrote in message
> news:e9f0c1$nd1$1[ at ]nnews.pacific.net.hk...
>> Hello all,
>> I got a problem on my excel files. Hope you may help.
>> I don't know why, many of my excel files have a huge number of Text
>> Boxes. It's over 50,000 and they're all empty. As a result, it slows
> down
>> my computer. Whenever I edit the files, it takes more than 10 seconds to
>> move one cell to another. So, I can't do anything on them anymore.
>> I've checked my computer and it's no virus. I'm still using Excel
>> 97.
>> Any one of you have the same experience? Why this happened? You will
> help
>> me a lot if you could solve my problem. Many thanks!
>>
>> Regards,
>> Kenneth Ho
>>
>>
>
>


Re: A lot of Text Boxes!
Dave Peterson <petersod[ at ]verizonXSPAM.net> 21.07.2006 12:40:20
You didn't answer Bob's question about if they come back.

But you could try a macro to remove the textboxes from the activesheet:

Option Explicit
Sub testem()

Dim myShape As Shape
Dim OLEObj As OLEObject

For Each myShape In ActiveSheet.Shapes
If myShape.Type = msoTextBox Then
myShape.Delete
End If
Next myShape

For Each OLEObj In ActiveSheet.OLEObjects
If TypeOf OLEObj.Object Is MSForms.TextBox Then
OLEObj.Delete
End If
Next OLEObj
End Sub

The top portion deletes the textboxes from the Drawing toolbar. The bottom
portion deletes the textboxes fom the control toolbox toolbar.


If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

Kenneth Ho wrote:
[Quoted Text]
>
> Thanks for your reply.
> I can't remove them all. As there're more than 50000. Any idea? Thanks.
>
> Regards,
> Kenneth Ho
>
> "Bob Phillips" <bob.NGs[ at ]somewhere.com> wrote in
> message:uvUZZFXqGHA.4684[ at ]TK2MSFTNGP05.phx.gbl...
> > If you remove them, do they come back?
> >
> > --
> > HTH
> >
> > Bob Phillips
> >
> > (replace somewhere in email address with gmail if mailing direct)
> >
> > "Kenneth Ho" <hoken[ at ]hknet.com> wrote in message
> > news:e9f0c1$nd1$1[ at ]nnews.pacific.net.hk...
> >> Hello all,
> >> I got a problem on my excel files. Hope you may help.
> >> I don't know why, many of my excel files have a huge number of Text
> >> Boxes. It's over 50,000 and they're all empty. As a result, it slows
> > down
> >> my computer. Whenever I edit the files, it takes more than 10 seconds to
> >> move one cell to another. So, I can't do anything on them anymore.
> >> I've checked my computer and it's no virus. I'm still using Excel
> >> 97.
> >> Any one of you have the same experience? Why this happened? You will
> > help
> >> me a lot if you could solve my problem. Many thanks!
> >>
> >> Regards,
> >> Kenneth Ho
> >>
> >>
> >
> >

--

Dave Peterson
Re: A lot of Text Boxes!
Dave Peterson <petersod[ at ]verizonXSPAM.net> 21.07.2006 12:41:08
ps. it may take a little time to run with all those shapes.


Kenneth Ho wrote:
[Quoted Text]
>
> Thanks for your reply.
> I can't remove them all. As there're more than 50000. Any idea? Thanks.
>
> Regards,
> Kenneth Ho
>
> "Bob Phillips" <bob.NGs[ at ]somewhere.com> wrote in
> message:uvUZZFXqGHA.4684[ at ]TK2MSFTNGP05.phx.gbl...
> > If you remove them, do they come back?
> >
> > --
> > HTH
> >
> > Bob Phillips
> >
> > (replace somewhere in email address with gmail if mailing direct)
> >
> > "Kenneth Ho" <hoken[ at ]hknet.com> wrote in message
> > news:e9f0c1$nd1$1[ at ]nnews.pacific.net.hk...
> >> Hello all,
> >> I got a problem on my excel files. Hope you may help.
> >> I don't know why, many of my excel files have a huge number of Text
> >> Boxes. It's over 50,000 and they're all empty. As a result, it slows
> > down
> >> my computer. Whenever I edit the files, it takes more than 10 seconds to
> >> move one cell to another. So, I can't do anything on them anymore.
> >> I've checked my computer and it's no virus. I'm still using Excel
> >> 97.
> >> Any one of you have the same experience? Why this happened? You will
> > help
> >> me a lot if you could solve my problem. Many thanks!
> >>
> >> Regards,
> >> Kenneth Ho
> >>
> >>
> >
> >

--

Dave Peterson
Re: A lot of Text Boxes!
Azim Lakha 14.09.2006 09:54:01
Hi Kenneth Ho,

did you manage to remove all this text boxes? i am having the same problem.
After starting a new file the problem started in this new one also. why tis
boxes are been created? any one knows? it can be an office update problem?

any ideas pls.

thank you

"Dave Peterson" wrote:

[Quoted Text]
> ps. it may take a little time to run with all those shapes.
>
>
> Kenneth Ho wrote:
> >
> > Thanks for your reply.
> > I can't remove them all. As there're more than 50000. Any idea? Thanks.
> >
> > Regards,
> > Kenneth Ho
> >
> > "Bob Phillips" <bob.NGs[ at ]somewhere.com> wrote in
> > message:uvUZZFXqGHA.4684[ at ]TK2MSFTNGP05.phx.gbl...
> > > If you remove them, do they come back?
> > >
> > > --
> > > HTH
> > >
> > > Bob Phillips
> > >
> > > (replace somewhere in email address with gmail if mailing direct)
> > >
> > > "Kenneth Ho" <hoken[ at ]hknet.com> wrote in message
> > > news:e9f0c1$nd1$1[ at ]nnews.pacific.net.hk...
> > >> Hello all,
> > >> I got a problem on my excel files. Hope you may help.
> > >> I don't know why, many of my excel files have a huge number of Text
> > >> Boxes. It's over 50,000 and they're all empty. As a result, it slows
> > > down
> > >> my computer. Whenever I edit the files, it takes more than 10 seconds to
> > >> move one cell to another. So, I can't do anything on them anymore.
> > >> I've checked my computer and it's no virus. I'm still using Excel
> > >> 97.
> > >> Any one of you have the same experience? Why this happened? You will
> > > help
> > >> me a lot if you could solve my problem. Many thanks!
> > >>
> > >> Regards,
> > >> Kenneth Ho
> > >>
> > >>
> > >
> > >
>
> --
>
> Dave Peterson
>
Re: A lot of Text Boxes!
Dave Peterson <petersod[ at ]verizonXSPAM.net> 14.09.2006 12:38:32
I've never seen an office update do this. But there were suggestions in that
thread how to clean things up:

http://groups.google.co.uk/group/microsoft.public.excel/browse_frm/thread/f9ec25878c46765d/cdc03cdd5d65023a?lnk=st&q=&rnum=1&hl=en#cdc03cdd5d65023a

or
http://snipurl.com/wei0

Azim Lakha wrote:
[Quoted Text]
>
> Hi Kenneth Ho,
>
> did you manage to remove all this text boxes? i am having the same problem.
> After starting a new file the problem started in this new one also. why tis
> boxes are been created? any one knows? it can be an office update problem?
>
> any ideas pls.
>
> thank you
>
> "Dave Peterson" wrote:
>
> > ps. it may take a little time to run with all those shapes.
> >
> >
> > Kenneth Ho wrote:
> > >
> > > Thanks for your reply.
> > > I can't remove them all. As there're more than 50000. Any idea? Thanks.
> > >
> > > Regards,
> > > Kenneth Ho
> > >
> > > "Bob Phillips" <bob.NGs[ at ]somewhere.com> wrote in
> > > message:uvUZZFXqGHA.4684[ at ]TK2MSFTNGP05.phx.gbl...
> > > > If you remove them, do they come back?
> > > >
> > > > --
> > > > HTH
> > > >
> > > > Bob Phillips
> > > >
> > > > (replace somewhere in email address with gmail if mailing direct)
> > > >
> > > > "Kenneth Ho" <hoken[ at ]hknet.com> wrote in message
> > > > news:e9f0c1$nd1$1[ at ]nnews.pacific.net.hk...
> > > >> Hello all,
> > > >> I got a problem on my excel files. Hope you may help.
> > > >> I don't know why, many of my excel files have a huge number of Text
> > > >> Boxes. It's over 50,000 and they're all empty. As a result, it slows
> > > > down
> > > >> my computer. Whenever I edit the files, it takes more than 10 seconds to
> > > >> move one cell to another. So, I can't do anything on them anymore.
> > > >> I've checked my computer and it's no virus. I'm still using Excel
> > > >> 97.
> > > >> Any one of you have the same experience? Why this happened? You will
> > > > help
> > > >> me a lot if you could solve my problem. Many thanks!
> > > >>
> > > >> Regards,
> > > >> Kenneth Ho
> > > >>
> > > >>
> > > >
> > > >
> >
> > --
> >
> > Dave Peterson
> >

--

Dave Peterson

Home | Search | Terms | Imprint | Contact
Newsgroups Reader - provided by WiredBox.Net