|
-
December 9th, 2008, 01:08 AM
#1
Best display control for displaying 4000 bytes(characters)
Hello ,
I am working on SDK.
Presently my display control is list control.
display looks like this
Sln. Time Protocol Tx Data pattern
1 12:45 UART 1 abc...... MX
My code snippet(pseudo) is ..
/******************************************************/
LVCOLUMN listCol;
memset(&listCol, 0, sizeof(LVCOLUMN));
listCol.mask = LVCF_TEXT|LVCF_WIDTH|LVCF_SUBITEM;
listCol.pszText = "Sl No";
listCol.cx = 0x28;
SendMessage(hRxWindow,LVM_INSERTCOLUMN,0,(LPARAM)&listCol);
ListView_SetItemText(GetDlgItem(hMainDlg,IDC_LIST_RX),nItemCount,1,tempbuf);
//tempbuf = "abc............z"//4000bytes, no NULL
/******************************************************/
The problem is, I have to display 4000 bytes on data column.
1.How to get this done in GUI with list control?
2.Any other GUI control required to do this?
Just basic information is enough.
Regards
Nikhil
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|