Hi I have the following text
The problem is reading the following line
Which is broken over two lines
I use the following to read in the line
But this only gives me one line, how can I read join the two lines together ?
Thanks
Phil
Code:
16.11.05 00:48:12 SMP _CASE: received fcode: 3409
16.11.05 00:48:12 SMP _AWBGRP_INS: '125-54725322' 4 'D' 'BA 215 16NOV05' 0 'PMC
76364BA'
16.11.05 00:48:12 SMP _CASE: Answer send with state: 0
16.11.05 00:48:13 SMP _CASE: received fcode: 3416
16.11.05 00:48:13 SMP _PARCEL_LOCATION: '125-27856080' 0 4 M -> L
The problem is reading the following line
Code:
16.11.05 00:48:12 SMP _AWBGRP_INS: '125-54725322' 4 'D' 'BA 215 16NOV05' 0 'PMC
76364BA'
Which is broken over two lines
I use the following to read in the line
Code:
If Mid(TxtString, 19, 15) Like "SMP _ULD_PRIMOS" Then
SMP_ULD_PRIM (TxtString)
But this only gives me one line, how can I read join the two lines together ?
Thanks
Phil