Найдено 3 результата
- 27.12.2008 19:31:28
- Форум: WinCE
- Тема: Программу на Today панел ? WinCE
- Ответы: 9
- Просмотры: 24862
Re: Программу на Today панел ? WinCE
Полностью работающий пример здесь: http://represento.ru
- 18.12.2008 23:45:17
- Форум: WinCE
- Тема: Программу на Today панел ? WinCE
- Ответы: 9
- Просмотры: 24862
Re: Программу на Today панел ? WinCE
В реестре пишем так:
[Registry.All]
; DWORD, Custom Items must always have Type = 4
HKLM,Software\Microsoft\Today\Items\MyFistTodayPlugin,Type,0x00010001,4
; DWORD
HKLM,Software\Microsoft\Today\Items\MyFistTodayPlugin,Enabled,0x00010001,1
; DWORD
HKLM,Software\Microsoft\Today\Items\MyFistTodayPlugin ...
[Registry.All]
; DWORD, Custom Items must always have Type = 4
HKLM,Software\Microsoft\Today\Items\MyFistTodayPlugin,Type,0x00010001,4
; DWORD
HKLM,Software\Microsoft\Today\Items\MyFistTodayPlugin,Enabled,0x00010001,1
; DWORD
HKLM,Software\Microsoft\Today\Items\MyFistTodayPlugin ...
- 18.12.2008 10:05:34
- Форум: WinCE
- Тема: Программу на Today панел ? WinCE
- Ответы: 9
- Просмотры: 24862
Re: Программу на Today панел ? WinCE
Перевел код TodayPlugina с C++ на FreePascal. Выглядит это так
library MyFistTodayPlugin;
{$mode delphi}{$H+}
uses
Classes, Windows, todaycmn, aygshell
var
g_hWnd: HWND;
g_hInst: HModule;
Const
IDS_CUSTOM_ITEM_APPNAME='MyFistTodayPlugin';
function MyWndProc(hwnd: hwnd; uimessage ...
library MyFistTodayPlugin;
{$mode delphi}{$H+}
uses
Classes, Windows, todaycmn, aygshell
var
g_hWnd: HWND;
g_hInst: HModule;
Const
IDS_CUSTOM_ITEM_APPNAME='MyFistTodayPlugin';
function MyWndProc(hwnd: hwnd; uimessage ...
