Textbox Problem

T

Taffy-Taff

Guys -
I have a textbox that I will store information from a variable. Th
textbox will store a form of report based on some calculated figure.
want the following items to be displayed:

CONTACT MADE ON JUNE 10 : 15
CONTACT MADE ON JUNE 11 : 1
CONTACT MADE ON JUNE 12 : 2

The problem is that I cannot get each item to start in a new line.
use chr(10) between them but it does not work. I have no idea how man
lines of items will be displayed, as this information is stored in
loop. I keep getting this result:


CONTACT MADE ON JUNE 10 : 15 CONTACT MADE ON JUNE 11 : 1CONTACT MADE O
JUNE 12 : 2


How can I get each item to start in a new line in the textbox?
this is a sample of the code that I use:

STRCNT = \"CONTACTS MADE ON \" + STR(DTEE) + \" : \" + STR(DTEE_AMT)
STRREP = STRREP + CHR(10) + STRCN

and I am using MS Access.

Thanks

Taff
 
S

Steve Schapel

Taffy,

STRCNT = "CONTACTS MADE ON " & DTEE & " : " & DTEE_AMT
STRREP = STRREP & Chr(13) & Chr(10) & STRCNT
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top