theKruser
Registered User.
- Local time
- Today, 17:25
- Joined
- Aug 6, 2008
- Messages
- 122
I have a database which I am building to output html code to a .txt file for uploading to a site. The problem I face is, I cannot figure out how to force a line of text to export as continuous. As it sits, longer lines of code are forced a line break (carriage return) upon export.
As for the output, I have many text fields which I have put into queries like:
I created a report that calls this query and the resulting data looks like:
The problem lies in the fact that when I right click the report and export as txt, the report properties (I assume) causes the results to look like:
for longer lines of code. This line break causes undesirable results, as you can imagine.
The goal is to update 5 different pages with info contained in the db whenever there is an update. For now, the plan is to simply export to a .txt and copy/paste into my CMS. I just have to figure out how to stop it from inserting that line break.
As for the output, I have many text fields which I have put into queries like:
Code:
LargeImage: '<td><a href="' & [tblLinkData.LinkAddress] & [tblBadges.LargeImage] & '" target="_blank" title="' & [tblBadges.BadgeName] & '">' & [tblBadges.BadgeName] & '</a>'
Code:
<a href="/aaaaa/bbbbb/image.png" target="_blank" title="Badge Name">Badge Name</a>
Code:
<a href="/aaaaa/bbbbb/image.png" target="
_blank" title="Badge Name">Badge Name</a>
The goal is to update 5 different pages with info contained in the db whenever there is an update. For now, the plan is to simply export to a .txt and copy/paste into my CMS. I just have to figure out how to stop it from inserting that line break.