Welcome to Clarion Community Sign in | Join | Faq

Clarion Language and Runtime Library

Started by Angelino at 04-07-2008 11:36 AM. Topic has 2 replies.

Print Search
Sort Posts:    
   04-07-2008, 11:36 AM
Angelino is not online. Last active: 4/8/2008 4:16:44 AM Angelino

Top 500 Posts
Joined on 04-07-2008
Posts 1
Problem with scrollbar.
Reply Quote
Hi all.

I'm trying to put an scrollbar on an update window and it's not working.

Let me explain: I have a form that updates a browse and in this form i need to put a lot of fields that doesn't fit on the normal height of the form.

I want that the user can scroll the screen of the form up and down so that he can see the other fields.

I went on the "Extra" tab of the properties and selected "Vertical" on "Scroll bars", but it seens I am missing something, because nothing happens and I can't put the fields on the form.

If anyone has some tips, it would be greatly appreciated.


Thanks in advance.
Angelino


   Report 
   04-08-2008, 11:52 PM
Shankar is not online. Last active: 11/14/2008 4:04:22 PM Shankar

Top 10 Posts
Joined on 10-24-2005
Dubai, UAE
Posts 219
Re: Problem with scrollbar.
Reply Quote
Hi!

You need to set the SCROLL attribute on all the controls in the Window as well. At Runtime, you can easily do with this code after opening the window ::

Ctl# = 1
LOOP
   Ctl# = 0{Prop:NextField, Ctl#}

   IF NOT Ctl# THEN BREAK.

   Ctl#{PROP:Scroll} = True
END
DISPLAY()




Regards

Shankar
   Report 
   04-17-2008, 11:12 PM
Anand is not online. Last active: 4/18/2008 11:03:07 AM Anand

Top 75 Posts
Joined on 04-14-2008
Posts 8
Re: Problem with scrollbar.
Reply Quote

Hi..

I had faced a similar problem. After doing a lot of RND i found that the the window where the actual update form was made used a different screen resolution and due to which i was not able to see the scroll bar.

I dont know whats on your side.. but this is one of the possiblity...!!!

 

Regards,

Anand Vyas


   Report 
Clarion Communi... » Clarion » Clarion Languag... » Problem with scrollbar.

Powered by Community Server, by Telligent Systems