convert_cti_projects.txt
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. A few things have changed in ver. 4.0.0 of CoolTrayIcon which means you may
  2. have to slightly adjust your previous projects that use CooltrayIcon or
  3. TextTrayIcon.
  4. 1) The IconVisible property is now default false in stead of true.
  5. The reason for this is that the tray icon would apparently show itself,
  6. regardless of the property being false, if CoolTrayIcon was used in a
  7. DLL file.
  8. This change means that you have to reset the property to true in your old 
  9. projects, in case the value was originally true.
  10. 2) The StartMinimized property no longer exists. It has been replaced by the
  11. OnStartup event. This event has a ShowMainForm parameter, which you set to
  12. false if you don't want the main form to show when your app. starts.
  13. The reason for this change is that StartMinimized only worked at design-time,
  14. meaning you could not determine at run-time if you wanted to show the form
  15. or not. With the change it is now possible to have a user option for this
  16. in your app.
  17. See the StartHidden demo for an example.