Hi,
An app dialog linked with DLL ,could I add new resource ids at runtime ?
for example:
function main()
define dialog odlg resource "odlg"
redefine get cget1 id 101 of odlg
redefine button id 102 of odlg
activate dialog odlg on init (addnewids())
return
function addnewids()
redefine button id 103 of odlg
// id 103 does not exists in resource odlg
return
Best regrad!
Shuming Wang