Google Mail Calendar Documents Reader Web more »
Recently Visited Groups | Help | Sign in
Google Groups Home
A lot of Text Boxes!
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  8 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Follow-up To:
Add Cc | Add Follow-up to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers that you hear
 
Kenneth Ho  
View profile   Translate to Translated (View Original)
 More options 17 July 2006, 04:33
Newsgroups: microsoft.public.excel
From: "Kenneth Ho" <ho...@hknet.com>
Date: Mon, 17 Jul 2006 11:33:31 +0800
Local: Mon 17 July 2006 04:33
Subject: A lot of Text Boxes!
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


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jim Cone  
View profile   Translate to Translated (View Original)
 More options 17 July 2006, 04:46
Newsgroups: microsoft.public.excel
From: "Jim Cone" <jim.cone...@rcn.comXXX>
Date: Sun, 16 Jul 2006 20:46:26 -0700
Local: Mon 17 July 2006 04:46
Subject: Re: A lot of Text Boxes!
You don't know why?
--
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware

"Kenneth Ho"
<ho...@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


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bob Phillips  
View profile   Translate to Translated (View Original)
 More options 17 July 2006, 08:19
Newsgroups: microsoft.public.excel
From: "Bob Phillips" <bob....@somewhere.com>
Date: Mon, 17 Jul 2006 08:19:32 +0100
Local: Mon 17 July 2006 08:19
Subject: Re: A lot of Text Boxes!
If you remove them, do they come back?

--
 HTH

Bob Phillips

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

"Kenneth Ho" <ho...@hknet.com> wrote in message

news:e9f0c1$nd1$1@nnews.pacific.net.hk...


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Kenneth Ho  
View profile   Translate to Translated (View Original)
 More options 21 July 2006, 04:53
Newsgroups: microsoft.public.excel
From: "Kenneth Ho" <ho...@hknet.com>
Date: Fri, 21 Jul 2006 11:53:50 +0800
Local: Fri 21 July 2006 04:53
Subject: Re: A lot of Text Boxes!
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....@somewhere.com> wrote in
message:uvUZZFXqGHA.4...@TK2MSFTNGP05.phx.gbl...


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dave Peterson  
View profile   Translate to Translated (View Original)
 More options 21 July 2006, 13:40
Newsgroups: microsoft.public.excel
From: Dave Peterson <peter...@verizonXSPAM.net>
Date: Fri, 21 Jul 2006 07:40:20 -0500
Local: Fri 21 July 2006 13:40
Subject: Re: A lot of Text Boxes!
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

--

Dave Peterson


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dave Peterson  
View profile   Translate to Translated (View Original)
 More options 21 July 2006, 13:41
Newsgroups: microsoft.public.excel
From: Dave Peterson <peter...@verizonXSPAM.net>
Date: Fri, 21 Jul 2006 07:41:08 -0500
Local: Fri 21 July 2006 13:41
Subject: Re: A lot of Text Boxes!
ps.  it may take a little time to run with all those shapes.

--

Dave Peterson


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Azim Lakha  
View profile   Translate to Translated (View Original)
 More options 14 Sep 2006, 10:54
Newsgroups: microsoft.public.excel
From: Azim Lakha <Azim La...@discussions.microsoft.com>
Date: Thu, 14 Sep 2006 02:54:01 -0700
Local: Thurs 14 Sep 2006 10:54
Subject: Re: A lot of Text Boxes!
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


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dave Peterson  
View profile   Translate to Translated (View Original)
 More options 14 Sep 2006, 13:38
Newsgroups: microsoft.public.excel
From: Dave Peterson <peter...@verizonXSPAM.net>
Date: Thu, 14 Sep 2006 07:38:32 -0500
Local: Thurs 14 Sep 2006 13:38
Subject: Re: A lot of Text Boxes!
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/th...

or
http://snipurl.com/wei0

--

Dave Peterson


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message, you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google