Advertisement

03.26.2001 at 02:09PM PST, ID: 20097081
[x]
Attachment Details

image in scrollbox

Asked by wz2001 in Delphi Programming

Tags: image, scrollbox

I wrote a program to display a picture using Delphi 5.

>Target:
Put a image in a scrollbox. Hope the image locates at the center of the scrollbox, when the size of image is larger than the size of scrollbox, the scrollbox will display scroll bar.

>I did as below:
///----------
//set

image1.align:=alnone;
image1.scretch:=true;
image1.autosize:=true;

// add coeds in FORMCREATE and SCROLLBOX ONRESIZE:

var
imagetop,imageleft:integer;
begin

   imagetleft:=trunc(scrollbox1.width/2)-trunc (image1.width/2);
   if imageleft>0 then  image1.left    :=imageleft
   else image1.left:=0;

   imagetop:=trunc(scrollbox1.height/2)-trunc(image1.height/2);
   if h>0 then  image1.top    :=imagetop

   else image1.top:=0;

   Image1.width:=Image1.picture.width       ;
   Image1.height:=Image1.picture.height       ;
   
   //...

end;
>Problem:
It is true that the image displays at the center of scrollbox, and when the size of image is larger than the size of scrollbox, the scrollbox also displays the scroll bar, but the image can not move!

Can anyone help me?

Thanks

 
Start Free Trial
[+][-]03.26.2001 at 03:17PM PST, ID: 5960501

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03.26.2001 at 10:46PM PST, ID: 5961350

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03.27.2001 at 07:36AM PST, ID: 5962794

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03.27.2001 at 07:39AM PST, ID: 5962802

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]03.27.2001 at 11:40PM PST, ID: 5964983

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: Delphi Programming
Tags: image, scrollbox
Sign Up Now!
Solution Provided By: ITugay
Participating Experts: 4
Solution Grade: A
 
 
[+][-]09.12.2003 at 02:08AM PDT, ID: 9344028

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12.08.2003 at 11:42PM PST, ID: 9902434

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12.16.2003 at 03:29PM PST, ID: 9953176

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 7-day free trial to view this Administrative Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32