[Gambas-user] RowClick does nothing
Pino Zollo
pinozollo at ...626...
Mon May 12 19:12:34 CEST 2008
Hi
GridView in Gambas 2.5
The following does nothing:
PUBLIC SUB GridVncdxf_RowClick(Row AS Integer)
STOP = TRUE
DEBUG "RowClick ";; Row
ComboBeacon.Text = GridVncdxf[Row, 1]
ComboBeacon_Click()
END
The following works fine
PUBLIC SUB GridVncdxf_Click()
STOP = TRUE
DEBUG "Click ";; GridVncdxf.Row
ComboBeacon.Text = GridVncdxf[GridVncdxf.Row, 1].Text
ComboBeacon_Click()
END
Why ?
Regards
Pino
More information about the User
mailing list