cancel
Showing results for 
Search instead for 
Did you mean: 

Grid checkbox delay

costas_ioannou2
Active Participant
0 Kudos

Hi guys

I have created a form with a grid. The grid has 31 columns which are all checkbox columns. However when I run this code I have to wait several seconds while I watch every column in the grid change into a checkbox. Is there any way to avoid this delay?

                for (int i = 1; i <= 31; i++)

                {

                    oGrid.Columns.Item(i).Type = SAPbouiCOM.BoGridColumnType.gct_CheckBox;

                }

Accepted Solutions (1)

Accepted Solutions (1)

costas_ioannou2
Active Participant
0 Kudos

It's ok found the solution.

oForm.Freeze(true);

and then

oForm.Freeze(false);

Answers (0)