PowerBuilder Function Get All Column Of DataWindow/DataStore gf_get_all_column_name
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
// Function Name : gf_get_all_column_name // Argument Name : adw_control, Arg Type : Datawindow, Pass By : Value // as_colname[], Arg Type : String, Pass By : Reference // Return Type : (None) Integer li_i Integer numCols numCols = Integer(adw_control.Describe("Datawindow.Column.Count")) For li_i = 1 To numCols //Get Column Name With Describe as_colName[li_i] = adw_control.Describe("#" + String(li_i) + ".Name") Next |
Good Luck!
Subscribe
Login
0 Comments
Oldest