lame_designer
Registered User.
- Local time
- Yesterday, 22:25
- Joined
- Jan 31, 2006
- Messages
- 14
In my form I have a combo and it is bound to a table. When select an item in the combo I a standard letter should show up in a textbox. The letter has over 500 characters. The problem that I encounter is that the textbox seems to be limited to 255 characters so only half of the letter shows up in the textbox. I did a search on this forum but was not able to solve this problem..
The query in the row-source of the combo = SELECT [Causedby].[Causedby], [Causedby].Description FROM [Causedby];
Width = 3cm;0cm
In the after-update event I used: Me.txtDescription = Me.cmbCausedBy.Column(1)
All tables involved are set to memo.
Can anybody please help ? I'm a bit stuck
The query in the row-source of the combo = SELECT [Causedby].[Causedby], [Causedby].Description FROM [Causedby];
Width = 3cm;0cm
In the after-update event I used: Me.txtDescription = Me.cmbCausedBy.Column(1)
All tables involved are set to memo.
Can anybody please help ? I'm a bit stuck
Last edited: