Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

_Screen Image not resizable?

Status
Not open for further replies.

professionals

Programmer
Jun 24, 2000
13
AE
* Is there anybody could help to improve this screen I wanted to display, I had this picture where my screen is 600X800 but, the image is smaller than the resolutions, I put stretch but it won't work. source below.

Is their any Idea how? Thank's anyway in advance.

- Josie -


NODEFAULT
WITH _Screen
.AddProperty("Stretch")
.Lockscreen = .t.
.Themes = .t.
.WindowState = 2
.AutoCenter = .t.
.MDIForm = .t.
.Closable = .t.
.Controlbox = .t.
.BorderStyle = 3
.TitleBar = 1
.ScrollBars = 1
.ColorSource = 4
.ShowTips = .t.
.ScrollBars = 3
.TitleBar = 1
.FontName = "Tahoma"
.FontSize = 12
.caption = "Billing and Collections" + version(3) +"-"+ID()
.picture = SYS(2003)+"/graphics/backg-rb.jpg"
.Stretch = 2
.icon = SYS(2003)+"/icon&cursor/starBC.ico"
.Lockscreen = .f.
ENDWITH
RAISEEVENT( _SCREEN, "Activate" )
SET SYSMENU AUTOMATIC
 
professionals

Edit you pictures in a Paint-type program and change the resolution of the picture.

Mike Gagnon

If you want to get the best response to a question, please check out FAQ184-2483 first.
 
professionals

You will only be able to upsize a raster graphic, (.jpg), by a relatively small percentage before the image starts to deteriorate.

That deterioration will depend on the image in question - you would be better off resourcing the image if at all possible.

What size is the original graphic?

FAQ184-2483 - the answer to getting answered.​
Chris [pc2]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top