I have created a project (standard exe) using VB6, where a Listview has been added to a form [Microsoft Windows Common

Controls 6.0 (SP6)]. This listView is configured to have 3 Columns which are populated on "Form_Load" event. Source Code is

as below --


Private Sub Form_Load()

With ListView1
Set Item = .ListItems.Add(, , "Item 1")

Item.SubItems(1) = "ABC QWORTHRT SDHT (400S 844S 466S_GG_CC 444HST_F1_YC 423HFS_T3 462HDF_ESF_RR 445SDF_ASD 345RTY_T3_ERT 345SGF_T3_2TY 342STT_RTY_2UY 543ATY 555YTR_YY 654FDS_4433 432HFD_2344_T6 432FDS_S3_REW 543RFV_EDC 333S_2GF 321EEE_E3_3EE 322TGB_BGT_4TG 456Y_DFGH 234T 234T_F5 654HGT_5433_GF 345FRE_5643 554GFV_3423_D5 453FDW_3455 543FDS_3344 432EW2_3344_R5)"

End With

End Sub


The problem is that, on executing the application the listview column is not able to accomodate the complete text, i.e. a

part of the data is truncated in the 2nd column. The max characters from the above, that it is able to accomodete is 301

only.

Could anyone please, help me as to how to make the List view accomodate large data in a single column, without truncating the

text.

I would be highly obliged with your help.