Hi
I try to hide a column from a table.
I use the code below but not working
I try to hide a column from a table.
I use the code below but not working
B4X:
Sub Globals
'These global variables will be redeclared each time the activity is created.
'These variables can only be accessed from this module.
Public PrefDialog1 As PreferencesDialog
Private ItemTable_ESMMBOM As Table
End Sub
Sub All_Items_Sambania(LookingFor As String)
Dim SQlScript As String
Dim Curs1 As Cursor
ItemTable_ESMMBOM.InitializeTable(7, Gravity.CENTER, False)
ItemTable_ESMMBOM.SetHeader(Array As String("xxx", "xxx", "xxx", "xxx", "xxx", "xxx", "xxx"))
ItemTable_ESMMBOM.SetColumnsWidths(Array As Int(70dip, 200dip, 60dip, 80dip, 110dip, 250dip, 100dip))
ItemTable_ESMMBOM.hideCol(6)
ItemTable_ESMMBOM.SortColumn = False
.....
.....
End Sub