Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
SMG SMG is offline
external usenet poster
 
Posts: 4
Default Removing a picture box from an Excel 2007 spreadsheet

I cut & paste a lot of stuff into Excel spread sheets form web pages that
include boxes or icons you either check (to update or delete), or click on
(to enter, edit or display), enter data into or hold the mouse over (to
open/display an information blurb box).

In Excel 2003 these boxes & icons paste in as picture boxes.
These boxes are not riley in any cell but kind of hover over a cell or cells
in the spread sheet, so if you highlight everything and delete it the picture
boxes move to the beginning of the rows but are not deleted.

In excel 2003 if I moved my curser over the box it gave me a 4 way arrow. If
I clicked on (select) the picture box it added 4 little circles to the
corners of the box. Then I could just hit the delete key and delete the
picture box.

In excel 2007 it dose not give me the 4 way arrow or let me click on
(select) the box. So I can not delete it.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,346
Default Removing a picture box from an Excel 2007 spreadsheet

See one of your other posts for 2 detailed solutions, and please try not to
cross post that is consider bad practice in Newsgroups.

--
If this helps, please click the Yes button

Cheers,
Shane Devenshire


"SMG" wrote:

I cut & paste a lot of stuff into Excel spread sheets form web pages that
include boxes or icons you either check (to update or delete), or click on
(to enter, edit or display), enter data into or hold the mouse over (to
open/display an information blurb box).

In Excel 2003 these boxes & icons paste in as picture boxes.
These boxes are not riley in any cell but kind of hover over a cell or cells
in the spread sheet, so if you highlight everything and delete it the picture
boxes move to the beginning of the rows but are not deleted.

In excel 2003 if I moved my curser over the box it gave me a 4 way arrow. If
I clicked on (select) the picture box it added 4 little circles to the
corners of the box. Then I could just hit the delete key and delete the
picture box.

In excel 2007 it dose not give me the 4 way arrow or let me click on
(select) the box. So I can not delete it.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 49
Default Removing a picture box from an Excel 2007 spreadsheet

Manually Press F5-Key, in the GoTo dialog box which appears press Special
button, then select the radio button for Objects, press OK the press the
Delete-key.


Programmatically to remove such debris run a little macro from your Personal
workbook.

Sub DeleteAllShapes()
'Purpose: To remove items such as pictures, jpg, bmp files from
Active sheet.
'Just in case it throws an error: eg sheet is protected.
On error goto ErrPoint
For Each oShape In ActiveSheet.Shapes
oShape.Delete
Next
On error goto 0

ErrPoint:
MsgBox Err.Description
End Sub

Paul

"SMG" wrote in message
...
I cut & paste a lot of stuff into Excel spread sheets form web pages that
include boxes or icons you either check (to update or delete), or click on
(to enter, edit or display), enter data into or hold the mouse over (to
open/display an information blurb box).

In Excel 2003 these boxes & icons paste in as picture boxes.
These boxes are not riley in any cell but kind of hover over a cell or
cells
in the spread sheet, so if you highlight everything and delete it the
picture
boxes move to the beginning of the rows but are not deleted.

In excel 2003 if I moved my curser over the box it gave me a 4 way arrow.
If
I clicked on (select) the picture box it added 4 little circles to the
corners of the box. Then I could just hit the delete key and delete the
picture box.

In excel 2007 it dose not give me the 4 way arrow or let me click on
(select) the box. So I can not delete it.



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 36
Default Removing a picture box from an Excel 2007 spreadsheet

Hitting the keyboard "DEL" works for me?? once the picture is selected
(circles) Excel 2007

"SMG" wrote in message
...
I cut & paste a lot of stuff into Excel spread sheets form web pages that
include boxes or icons you either check (to update or delete), or click on
(to enter, edit or display), enter data into or hold the mouse over (to
open/display an information blurb box).

In Excel 2003 these boxes & icons paste in as picture boxes.
These boxes are not riley in any cell but kind of hover over a cell or
cells
in the spread sheet, so if you highlight everything and delete it the
picture
boxes move to the beginning of the rows but are not deleted.

In excel 2003 if I moved my curser over the box it gave me a 4 way arrow.
If
I clicked on (select) the picture box it added 4 little circles to the
corners of the box. Then I could just hit the delete key and delete the
picture box.

In excel 2007 it dose not give me the 4 way arrow or let me click on
(select) the box. So I can not delete it.



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 83
Default Removing a picture box from an Excel 2007 spreadsheet

right click and select cut

"SMG" wrote:

I cut & paste a lot of stuff into Excel spread sheets form web pages that
include boxes or icons you either check (to update or delete), or click on
(to enter, edit or display), enter data into or hold the mouse over (to
open/display an information blurb box).

In Excel 2003 these boxes & icons paste in as picture boxes.
These boxes are not riley in any cell but kind of hover over a cell or cells
in the spread sheet, so if you highlight everything and delete it the picture
boxes move to the beginning of the rows but are not deleted.

In excel 2003 if I moved my curser over the box it gave me a 4 way arrow. If
I clicked on (select) the picture box it added 4 little circles to the
corners of the box. Then I could just hit the delete key and delete the
picture box.

In excel 2007 it dose not give me the 4 way arrow or let me click on
(select) the box. So I can not delete it.



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5,934
Default Removing a picture box from an Excel 2007 spreadsheet

If you right-click these items, do you get a popup menu that allows you to
"Cut" the item (or, alternately press Esc to dismiss the popup menu allowing
you to press the Delete key to remove it)?

--
Rick (MVP - Excel)


"SMG" wrote in message
...
I cut & paste a lot of stuff into Excel spread sheets form web pages that
include boxes or icons you either check (to update or delete), or click on
(to enter, edit or display), enter data into or hold the mouse over (to
open/display an information blurb box).

In Excel 2003 these boxes & icons paste in as picture boxes.
These boxes are not riley in any cell but kind of hover over a cell or
cells
in the spread sheet, so if you highlight everything and delete it the
picture
boxes move to the beginning of the rows but are not deleted.

In excel 2003 if I moved my curser over the box it gave me a 4 way arrow.
If
I clicked on (select) the picture box it added 4 little circles to the
corners of the box. Then I could just hit the delete key and delete the
picture box.

In excel 2007 it dose not give me the 4 way arrow or let me click on
(select) the box. So I can not delete it.


  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default Removing a picture box from an Excel 2007 spreadsheet

Reasonable cross-posting is not considered bad practice. What is bad
practice is either excessive cross-posting, or multi-posting. The OP's
message does not appear to have been cross-posted, but may have been
multi-posted.
--
David Biddulph

Shane Devenshire wrote:
See one of your other posts for 2 detailed solutions, and please try
not to cross post that is consider bad practice in Newsgroups.


I cut & paste a lot of stuff into Excel spread sheets form web pages
that include boxes or icons you either check (to update or delete),
or click on (to enter, edit or display), enter data into or hold the
mouse over (to open/display an information blurb box).

In Excel 2003 these boxes & icons paste in as picture boxes.
These boxes are not riley in any cell but kind of hover over a cell
or cells in the spread sheet, so if you highlight everything and
delete it the picture boxes move to the beginning of the rows but
are not deleted.

In excel 2003 if I moved my curser over the box it gave me a 4 way
arrow. If I clicked on (select) the picture box it added 4 little
circles to the corners of the box. Then I could just hit the delete
key and delete the picture box.

In excel 2007 it dose not give me the 4 way arrow or let me click on
(select) the box. So I can not delete it.



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to remove a picture box from an Excel 2007 spreadsheet. SMG Excel Discussion (Misc queries) 2 February 13th 09 01:16 AM
How to remove a picture box from an Excel 2007 spreadsheet. SMG Excel Discussion (Misc queries) 0 February 13th 09 12:46 AM
Removing a picture box in Excell 2007 SMG Excel Discussion (Misc queries) 0 February 13th 09 12:40 AM
Removing a listbox from excel spreadsheet TrishB98 Excel Worksheet Functions 3 July 16th 08 07:57 PM
removing gridlines in Excel spreadsheet JUNE BUG New Users to Excel 1 May 5th 06 03:36 PM


All times are GMT +1. The time now is 06:29 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"