Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default text over image

here's my problem

I'm trying to generate raffle tickets with Excel

I have an image that is 3 inches by 7 inches.. that's the raffl
ticket.

on it I would like to add some text.. in particular two cells woul
contain teh ticket number.

I'll run a macro that will generate a ticket number and increment i
and print a page and keep looping for as many tickets as I need.

the problem I'm having is using a cell that is over the image..

any tricks???

help!!?

--
Message posted from http://www.ExcelForum.com

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 575
Default text over image

Pabs,

Here's one idea. Place a text box (from the drawing toolbar) on top of your
image, format it so that it blends in nicely, then use something like this

Sub Macro1()
For ncounter = 1 To 100
ActiveSheet.Shapes("Text Box 1").Select
Selection.Characters.Text = CStr(ncounter) 'or whatever value you want
'PRINT HERE
Next ncounter
End Sub

Robin Hammond
www.enhanceddatasystems.com

"pabs " wrote in message
...
here's my problem

I'm trying to generate raffle tickets with Excel

I have an image that is 3 inches by 7 inches.. that's the raffle
ticket.

on it I would like to add some text.. in particular two cells would
contain teh ticket number.

I'll run a macro that will generate a ticket number and increment it
and print a page and keep looping for as many tickets as I need.

the problem I'm having is using a cell that is over the image..

any tricks???

help!!??


---
Message posted from http://www.ExcelForum.com/



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4,391
Default text over image

pabs,
Depending the style of your image, applying it as the background (Format --
Sheet -- Background) then playing with column withs and row heights to get
the desired effect.

NickHK

"pabs " wrote in message
...
here's my problem

I'm trying to generate raffle tickets with Excel

I have an image that is 3 inches by 7 inches.. that's the raffle
ticket.

on it I would like to add some text.. in particular two cells would
contain teh ticket number.

I'll run a macro that will generate a ticket number and increment it
and print a page and keep looping for as many tickets as I need.

the problem I'm having is using a cell that is over the image..

any tricks???

help!!??


---
Message posted from http://www.ExcelForum.com/



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8
Default text over image

"NickHK" wrote in message ...
pabs,
Depending the style of your image, applying it as the background (Format --
Sheet -- Background) then playing with column withs and row heights to get
the desired effect.

NickHK

"pabs " wrote in message
...
here's my problem

I'm trying to generate raffle tickets with Excel

I have an image that is 3 inches by 7 inches.. that's the raffle
ticket.

on it I would like to add some text.. in particular two cells would
contain teh ticket number.

I'll run a macro that will generate a ticket number and increment it
and print a page and keep looping for as many tickets as I need.

the problem I'm having is using a cell that is over the image..

any tricks???

help!!??


---
Message posted from http://www.ExcelForum.com/



Try this site www.XL-Logic.com and search for "WATERMARK"
  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8
Default text over image

Try this site www.XL-Logic.com and search for "WATERMARK"
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
Customize the QAT with text rather than image I Teach Excel Discussion (Misc queries) 1 December 1st 09 01:25 PM
Image as text Emece Excel Discussion (Misc queries) 1 February 26th 09 01:44 PM
Image popup when mouseover text John Excel Discussion (Misc queries) 5 December 24th 07 01:17 AM
How can I put an image behind text in excel? Sara Gilbert Excel Discussion (Misc queries) 2 November 9th 05 08:52 PM
Text paragraphs and image Mika[_2_] Excel Programming 1 July 23rd 03 02:38 AM


All times are GMT +1. The time now is 10:21 PM.

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"