I created a recordSet that contains three columns of data, one of which the string value length exceeds 255 characters, When binding the recordSet with a listBox control the value was truncated to 255. I checked the record source to make sure the problem is not in the data coming from the database, and that the record contains the full string. Checking on the web I found some article explaining list box control limitation of 1 k of data on each item, hence 1K = 1024 bytes and 1 character = 1 byte the limit should be 1024 character for each item. I made another test and manually add a list item to the list box control with the use of the AddItem method making sure the item content length exceeds 255. When extracting the data with the use of listBox.Column(x,y) method the length of the string was truncated to 255. Any idea about this limitation and how to overcome this problem?