which control is like grid of edit boxes
-
can u please tell me how to manipulate with one window in a dialogbox that looks like a grid of editboxes containing many rows,columns ( sth like the local variables window which appear in vc++ while doing step debugging).what kind of a control is it? for an edit box u sing the GetWindowText we can get its contents. pleas help me how to get the many values present in that grid object(window).
-
can u please tell me how to manipulate with one window in a dialogbox that looks like a grid of editboxes containing many rows,columns ( sth like the local variables window which appear in vc++ while doing step debugging).what kind of a control is it? for an edit box u sing the GetWindowText we can get its contents. pleas help me how to get the many values present in that grid object(window).
You can use a CListCtrl. Apply the "ReportView" and "NoColumnHeader" Styles and Gridlines as ExStyle. MS
-
can u please tell me how to manipulate with one window in a dialogbox that looks like a grid of editboxes containing many rows,columns ( sth like the local variables window which appear in vc++ while doing step debugging).what kind of a control is it? for an edit box u sing the GetWindowText we can get its contents. pleas help me how to get the many values present in that grid object(window).
tejaswi_teja wrote: can u please tell me how to manipulate with one window in a dialogbox that looks like a grid of editboxes containing many rows,columns Take a look at this, should give you the functionality you desire. MFC Grid control 2.25[^] ------------------------------- DEBUGGING : Removing the needles from the haystack.