Don't forget 98B
I have had experience of INVOIC messages from several trading partners and all seem to be different, although purporting to be EDIFACT. Even two versions from different departments of the same company !
With different laws in european countries regarding electronic payments...
I have a Memo and want to copy it into a database TDBMemo.
FieldByName('NOTES').AsMemo := Memo1.Lines; doesn't work.
It doesnt like AsMemo.
Does anybody know the correct syntax ?
Frank.
Hi, you might find this procedure useful, I emulated the PICK BASIC, "FIELD" function.
Examples of use :-
Txt:= "a b c d" s:=field(Txt,' ',3); gives s = c
Txt:= "X,F2,VV3,4" s:=field(Txt,',',3); gives s = VV3
Txt:="a:b:c" s:=field(Txt,':',3)...
I have a time in string format ie '09:45'
I want to convert this to a new time + n minutes
ie: time+190 minutes.
I can EncodeTime(09, 45, 0, 0);
but how do I add 190 or any number of minutes after this ?
Frank.
Frank.
A couple of points to ponder :
An EDIFACT segment such as DTM+200307210730:203 translates to XML as
<DTM name ="DATE/TIME/PERIOD">
<E2005 name="Date/time/period qualifier">
<value>137</value>
</E2005>
<E230 name="Date/Time/Period">
<value>200307210730</value>...
Thanks Smin, I must be doing something wrong.
My statement is now (in part)
SELECT LPLI.LGTENR,TESTPR*POWER(LPLI.LGPDIM-1,10 ), etc
but I get the error "[IBM][Client Access Express ODBC Driver (32-Bit)[DB2/400 SQL]SQL0402 -- Use Not Valid"
Any Clues ?
As you can see from the error...
Thanks Wolluf,
I can now create a shortcut as desired.
The windows default (RTClick-Explore) still gives the extended path.
Perhaps its a registry value ?
Frank. Frank.
Does anybody know how to specify the directory that Windows Explorer starts up in ?
I am fed up with it opening in C:\WINNT\Profiles\Administrator\Start Menu
I would like just the drives at root showing. Frank.
Thanks bbegley.
I used showmessage in Form.Create
The problem was :
DirectoryListBox1.Directory := 'tmp';
should be
DirectoryListBox1.Directory := 'c:\tmp';
I thought that DriveComboBox1.Drive := 'c'; would have taken care of that, but on closer inspection I see that I did not include the lines...
Thanks BobbaFet,
Yes it probably is a dll but the fault only occurs on a PC without Delphi, so I cannot debug it when it fails.
Other programs run OK. I will just have to laboriously go through dlls in Delphi, although I have never had to ship dll's for a simple exe before. Frank.
DESCRIPTION NAME Direction D25 D9 RJ45
Transmit Data TD OUT 2 3 5
Receive Data RD IN 3 2 6
Request to Send RTS OUT 4 7 8
Clear to Send CTS IN 5 8 7
Data St Ready DSR IN 6 6 1
Signal Ground SG 7 5 4
Data Carrier Detect DCD IN 8 1 2
Data...
Scart pin 19 = Composite Video out (75 ohm)
pin 17 = Composite video out common
pin 20 = Composite Video in (75 ohm)
pin 18 = Composite Video in common
pin 3 = Audio Out Left
pin 1 = Audio Out Right
pin 6 = Audio In Left
pin 2 = Audio In Right...
Does anyone know of a Component/Algorithm to convert ebcdic data to ascii using Delphi 4 Professional ?
I have sucessfully converted files from one AS400 using a simple if list, ie:
if Ch = 'â' then Ch := 'B'; etc.
This converts all the files from that server OK but only part converts files from...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.