Hello folks,
I have run into a weird issue. I am using PB 2021 - 1228.
I have a datawindow which has a column - member_id. There is a function in my application which tries to get this value.
// of_GetInfo
String ls_mID
.
.
.
.
ls_mID = dw_1.Object.member_id[1] // Error
//ls_mID = dw_1.GetItemString (1, 'member_id') // This works
When I try to get the column's value using dot notation, I get this error - Error accessing external object property member_id at line 22 in function of_GetInfo of object w_profile.
But GetItemString for the same row/column works fine.
Any ideas what is wrong?
Thanks.