Language-Interface-Temperature-Controller: Difference between revisions

From *** My Personal Wiki ***
Jump to navigation Jump to search
No edit summary
No edit summary
Line 6: Line 6:
*used the disk file form name for top objects > should be name shown in browser > Traj_form and NOT Trajectory.frm  > yielded error in the .bas object property file  ( wrong names! )
*used the disk file form name for top objects > should be name shown in browser > Traj_form and NOT Trajectory.frm  > yielded error in the .bas object property file  ( wrong names! )


*Temperature Controller device modal popup does not allow the CAPTION property to be set for label1  >  dlgGetName.Label1.Caption




Line 19: Line 18:
*Object properties appear to need to be reloaded when a form is reloaded : errors in object initializer caused this effect.  
*Object properties appear to need to be reloaded when a form is reloaded : errors in object initializer caused this effect.  
*Selected language is ENGLISH yet is still displaying in POLISH : needed global LANGUAGE variable for persistence of variable.
*Selected language is ENGLISH yet is still displaying in POLISH : needed global LANGUAGE variable for persistence of variable.
*Temperature Controller device modal popup does not allow the CAPTION property to be set for label1  >  dlgGetName.Label1.Caption
**Solution== label1 had been created as part of a control array and thus would only accept the .item(index).caption form.  Deleted and recreated it and it worked per normal. Control arrays will need different parsing with this multi language methodology.

Revision as of 23:15, 25 November 2009

Language Interface Issue List

  • compilation of object properties for .bas module has error on the form level - FormName.FormName.frm ... need to test for this and prevent the redundant placement
    • does not have header / footer strings added > use key text so that the other stuff in the file such as declaration can be left untouched.
  • used the disk file form name for top objects > should be name shown in browser > Traj_form and NOT Trajectory.frm > yielded error in the .bas object property file ( wrong names! )





Resolved Issues

  • Object properties appear to need to be reloaded when a form is reloaded : errors in object initializer caused this effect.
  • Selected language is ENGLISH yet is still displaying in POLISH : needed global LANGUAGE variable for persistence of variable.
  • Temperature Controller device modal popup does not allow the CAPTION property to be set for label1 > dlgGetName.Label1.Caption
    • Solution== label1 had been created as part of a control array and thus would only accept the .item(index).caption form. Deleted and recreated it and it worked per normal. Control arrays will need different parsing with this multi language methodology.