-
Yury Sidorov (04.11.08 17:16) [0]KOL-CE 2.80.2 работает с Lazarus 0.9.26 или новее. Старые версии Лазаруса не поддерживаются.
Нужно пересобрать Лазарус без опции -dDisableFakeMethod перед установкой новой версии KOL-CE.
List of changes in version 2.80.2:
* MCK: It is not needed to rebuild Lazarus with -dDisableFakeMethod option anymore. MCK is not compatible with Lazarus 0.9.26 release.
* MCK: Now it is possible to create new KOL projects and new KOL forms easily using "File > New..." menu item in Lazarus IDE.
* MCK: Patch by Carolos Foscolos. Use windres instead of brcc32 for creating icon resources. Now it is possible to set icon for TKOLTrayIcon in design time.
* MCK: Ignore design time form position and size for wince. There is no need to set defaultPosition and defaultSize properties to make form properly shown on wince anymore.
* MCK: Fixed visual glitches in menu and action list editors.
* MCK: Fixed issues with some CodeTools settings. Patch by Carolos Foscolos.
* MCK: Fixed TKOLImageList. Thanks to Carolos Foscolos.
* MCK: Fixed menu code generation.
* MCK: Add UTF-8 BOM to form's .inc file.
* ExecuteWait: Allow to specify empty string as AppPath parameter. In this case executable name must be specified in CmdLine. If full path is not provided for executable, it will be looked up in PATH. It works only for win32. AppPath parameter must be used for wince. Suggestion by Carolos Foscolos. -
Аид (06.11.08 13:05) [1]а если без MCK использовать просто KOL - нет проблем с русскими буквами?
-
Yury Sidorov (07.11.08 02:50) [2]Проблем с русскими буквами нет, если укзать используемую кодировку исходников ключиком -Fc
-
Аид (07.11.08 04:56) [3]-Fcutf8. а если не трудно - подскажите куда этот параметр подставить? не могу найти. я только начинаю lazarus осваивать
-
Аид (07.11.08 05:01) [4]к примеру стандартный проектprogram project1;
uses
Windows, messages, KOL;
var
form,b:PControl;
begin
form:=NewForm(Applet,'Первое окно');
b:=NewButton( form, 'КнопкО');
Run(form);
end.
в программе абраказябры -
Yury Sidorov (07.11.08 17:19) [5]На закладке Other в свойствах проекта есть поле Custom options. Вот туда и надо прописать -Fcutf8
-
Аид (10.11.08 11:23) [6]Спасибо! :)