keepingbusy
Programmer
Can anyone please suggest why this is working correctly?
We have been using part of the following code to automatically extract information that has been copied from the body of an email then pasted into a memo field which then places the appropriate data in to different fields within a table.
The information that arrives from the email looks like this:
Article commandé : A very good album [BONUS] [IMPORT] [CD audio] U2
Réf. offre : 2345R345678
Votre réf.article : 123456789012
Quantité : 1
When the information is extracted from the MEMO field it looks like this:
[CD audio] U2
Réf. offre : 2345R345678
Votre réf.article : 123456789012
Quantité : 1
As you can see the first part A very good album [BONUS] [IMPORT] is missing
I would be grateful for any advice
Many thanks as always
Lee
Visual FoxPro Versions: 6 & 9
Operating System: Windows XP
We have been using part of the following code to automatically extract information that has been copied from the body of an email then pasted into a memo field which then places the appropriate data in to different fields within a table.
Code:
USE mytable
GO mrecno
STORE "" TO lcorder
STORE EMAILBODY TO lcorder && This is the MEMO FIELD NAME
lnLineCount = ATLINE("Nombre total d'articles : ",lcorder)
lnLine = MLINE(lcorder,lnLineCount)
lcItems = ALLTRIM(STRTRAN(lnLine,"Nombre total d'articles : ",""))
lnItem = VAL(lcItems) * 4
lnLine = ATLINE("Article commandé : ",lcorder)
FOR i = 1 to lnItem
lcLine = MLINE(lcorder,lnLine+i)
IF i = 1 then
lcResult = lcLine
ELSE
lcResult = lcResult + CHR(13) + lcLine
ENDIF
ENDFOR
REPLACE DETAILTEXT WITH ""
REPLACE DETAILTEXT WITH lcResult
The information that arrives from the email looks like this:
Article commandé : A very good album [BONUS] [IMPORT] [CD audio] U2
Réf. offre : 2345R345678
Votre réf.article : 123456789012
Quantité : 1
When the information is extracted from the MEMO field it looks like this:
[CD audio] U2
Réf. offre : 2345R345678
Votre réf.article : 123456789012
Quantité : 1
As you can see the first part A very good album [BONUS] [IMPORT] is missing
I would be grateful for any advice
Many thanks as always
Lee
Visual FoxPro Versions: 6 & 9
Operating System: Windows XP