摘要:
interface 定义了一个接口类,它里面的方法其子类必须实现。接口是类的一个模板,其子类必须实现接口中定义的所有方法。 interface User{ function getHeight($height); function getWeight($weight); } class my implements User{ ... 阅读全文
摘要:
DialogSetInfo ( nInfoType, szInfoString, nParameter ); nInfoType: DLG_INFO_ALTIMAGE—Specifies an alternate bitmap to be displayed in the dialog. If nParameter is set to TRUE, szInfoString s... 阅读全文
摘要:
在Setup.rul中,新增OnBegin函数STRING str1,spath,szApplicationPath,szApplicationCmdLine,szCmdLine;function OnBegin() begin // TO DO: you may change default non-UI setting, for example // // You may also perform your custom initialization steps, check requirements, etc. Disable(BACKBUTTON); if(!MAINTENANCE). 阅读全文