Is there a way to store a large amount (816,000 characters) of text in my project that can easily be used? I need it to be loaded into a text box at startup, but if I copy+paste it in @ design time, it only holds the first 32,000 or so characters (though funny enough it can hold all the data if added at run-time). I tried storing the text in a module, but I would have to add a hell of a lot of '& _' s to it and I want it to be more easily edited/overwritten. I then tried adding it to a resource file as a binary data, but when I try to show that in the text box it all turns into ?'s and boxes. Is there a way to simply 'add' this file to the project so it can either be loaded into a string variable array or a text box?