johnf wrote: > Hi, > in VFP I would use "&variable." How do I do the same for Dabo? > I.e I want the following to work > > curlabel = "test"+"01" > self.&curlabel. = "somestr" ## where self is an object
self.getattr(curlabel).Caption = "somestr" This assumes that self has a label that is named 'test01'. -- pkm ~ http://paulmcnett.com _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/dabo-users/[EMAIL PROTECTED]
