Hi,
this is my simple code:
Sub Globals
End Sub
Sub App_Start
Form1.Show
CreateTable
End Sub
Sub CreateTable
table1.AddCol(cString,"Name",50)
table1.AddCol(cString,"Phone",50)
table1.AddRow("Peter","12345678")
table1.AddRow("Albert","85856587")
'
'
'
'
table1.AddRow("Julian","36587811")
End Sub
Sub Table1_SelectionChanged (ColName, Row)
' this is only event for table ???
'
' can i catch click on Head (name or phone)
' i want use sort by name or by phone
End Sub
this is my simple code:
Sub Globals
End Sub
Sub App_Start
Form1.Show
CreateTable
End Sub
Sub CreateTable
table1.AddCol(cString,"Name",50)
table1.AddCol(cString,"Phone",50)
table1.AddRow("Peter","12345678")
table1.AddRow("Albert","85856587")
'
'
'
'
table1.AddRow("Julian","36587811")
End Sub
Sub Table1_SelectionChanged (ColName, Row)
' this is only event for table ???
'
' can i catch click on Head (name or phone)
' i want use sort by name or by phone
End Sub