‎2008 May 06 9:36 AM
Hi,
I am creating one table wizard at selection screen.But there is only horizontal scroll bar there is no vertical scroll bar.
So please help me . I think there is some dummy code.
Please give me taht.
Thanks,
Sandeep Garg
‎2008 May 06 9:39 AM
While creating table control with wizerd, there are options to have vartical and hirizonta scrool bar ( radiobutton), you have to select that option then only scrool bars will come.
‎2008 May 06 9:41 AM
You don't need any additional code for that ....Select vertical and horizontal check boxes while creating a table wirzard for the vertical scroll bar ..
regards,
Santosh
‎2008 May 06 10:14 AM
Hi,
There is no option like this what did you suggest me.
There is only one check box Scroll.
Plese help me.
‎2008 May 06 9:59 AM
Hi Sandeep,
Add the following code to make the vertical scroll bar to come on runtime:
MODULE get_t_ctrl_lines OUTPUT.
t_ctrl-lines = ln + 100.
ENDMODULE. " get_T_CTRL_lines OUTPUT
Hope this helps.
Reward if helpful.
Regards,
Sipra
‎2008 May 06 10:01 AM
Hi,
Add this.............
DESCRIBE TABLE i_makt LINES ln.
To make the vertical scroll bar to come on runtime
t_ctrl-lines = ln + 100
(add this in PBO)
MODULE get_t_ctrl_lines.
LOOP AT i_makt WITH CONTROL t_ctrl CURSOR t_ctrl-current_line.
Regards,
Priya.
Edited by: Priyadharshini Veluswamy on May 6, 2008 11:13 AM