|
Copyright © 2002-2005 MultiMedia Soft
Return to index
|
|
Remarks
|
The text that will appear over the cell identified by the UniqueID parameter: it can be multi-line.
Further information about cells management can be found inside the How to manage cells section.
| ||||||||
|
Get / Set functions
|
BSTR abmCellsGetText (
HWND hWndBtn,
short nUniqueID
);
BOOL abmCellsSetText (
HWND hWndBtn,
short nUniqueID,
void *strText
);
| ||||||||
|
Notes
|
If using the abmCellsGetText function from within Visual Basic 6, remember to convert the returned value from UNICODE using the StrConv function and its related vbFromUnicode option, as in the sample below:
MsgBox StrConv(abmCellsGetText(Command1.hwnd, 1000), vbFromUnicode)
|