Форум: "WinAPI";
Текущий архив: 2002.01.08;
Скачать: [xml.tar.bz2];
ВнизHandle Найти похожие ветки
← →
Pantero (2001-11-03 23:59) [0]Как я могу связываться с (получить данные) от Edit"a. Подскажите какой handle нужен???
← →
Mbo (2001-11-04 01:15) [1]Можно просто Astring:=Edit1.text;
если через API, то
var h:HWND;
h:=Edit1.Handle;
и дальше,что нужно
← →
Evgeny (2001-11-05 07:38) [2]Можно так:
LONG SendDlgItemMessage(
HWND hDlg, // handle of dialog box
int nIDDlgItem, // identifier of control
UINT Msg, // message to send
WPARAM wParam, // first message parameter
LPARAM lParam // second message parameter
);
или так:
LRESULT SendMessage(
HWND hWnd, // handle of destination window
UINT Msg, // message to send
WPARAM wParam, // first message parameter
LPARAM lParam // second message parameter
);
в качестве Msg указать WM_GETTEXT
а можно и так:
int GetWindowText(
HWND hWnd, // handle of window or control with text
LPTSTR lpString, // address of buffer for text
int nMaxCount // maximum number of characters to copy
);
в общем выбырай, что больше подходит.
Страницы: 1 вся ветка
Форум: "WinAPI";
Текущий архив: 2002.01.08;
Скачать: [xml.tar.bz2];
Память: 0.44 MB
Время: 0.008 c