drop down menu creation using pIHTMLViewer | developer.brewmp.com drop down menu creation using pIHTMLViewer | developer.brewmp.com

Developer

drop down menu creation using pIHTMLViewer

Forums:

Hi,
for my drop down menu its not showing any text its just showing scroll bar what could be reason ??

void DropDown(drop *pMe)
{

int nResult = SUCCESS;
char buff[] = "";
//"";

AEERect refrect;
refrect.x = 10;
refrect.y = 10;
refrect.dx = 200;
refrect.dy = 50;

IHTMLVIEWER_SetTextColor(pMe->pIHTMLViewer, MAKE_RGB(100,100,100));

IHTMLVIEWER_SetRect(pMe->pIHTMLViewer, &refrect);
IHTMLVIEWER_SetData(pMe->pIHTMLViewer, buff, -1);
IHTMLVIEWER_SetActive(pMe->pIHTMLViewer, TRUE);

IHTMLVIEWER_Redraw(pMe->pIHTMLViewer);

}