Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. BRADENSTOKE

    Choosing a standard for EDI invoices

    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...
  2. BRADENSTOKE

    TMemo to TDBMemo Delphi 4

    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.
  3. BRADENSTOKE

    Help needed from a coding guru!!

    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)...
  4. BRADENSTOKE

    How to add a number of minutes to a time

    Thanks weez, that worked a treat ! Frank.
  5. BRADENSTOKE

    How to add a number of minutes to a time

    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.
  6. BRADENSTOKE

    Toolbar Implementation Confusion!!

    Image List I have a Database Grid with the code ImageList1.Draw(Canvas,Rect.Left+4,Rect.Top,1,True) How do I assign Images to the Image list? Frank.
  7. BRADENSTOKE

    EDI v XML

    A couple of points to ponder : An EDIFACT segment such as DTM+200307210730:203 translates to XML as <DTM name =&quot;DATE/TIME/PERIOD&quot;> <E2005 name=&quot;Date/time/period qualifier&quot;> <value>137</value> </E2005> <E230 name=&quot;Date/Time/Period&quot;> <value>200307210730</value>...
  8. BRADENSTOKE

    EDI v XML

    Can anyone give any advantages of XML over traditional EDI (EDIFACT, ODETTE) ? I can think of disadvantages only. Frank.
  9. BRADENSTOKE

    SQL STATEMENT

    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 &quot;[IBM][Client Access Express ODBC Driver (32-Bit)[DB2/400 SQL]SQL0402 -- Use Not Valid&quot; Any Clues ? As you can see from the error...
  10. BRADENSTOKE

    SQL STATEMENT

    How do I raise a number to a power in an SQL statement? ie if DMN is a field with values of 1, 2 etc I want to say FIELDNAME*(DMN-1^10) Frank.
  11. BRADENSTOKE

    Hilight text &amp; position cursor

    Having located a string in a TMemo or TRichEDit, How do I hilight the text and position the cursor so it is visible in the window ? Frank.
  12. BRADENSTOKE

    Windows help not working

    Nope, cannot find WINDOWS.CHM anywhere ! Frank.
  13. BRADENSTOKE

    Explorer Default Path

    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.
  14. BRADENSTOKE

    Explorer Default Path

    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.
  15. BRADENSTOKE

    Windows help not working

    Whenever I click on HELP in any application I get the hourglass for a second and then nothing. The help system has stopped ! Help ! Frank.
  16. BRADENSTOKE

    File not found error

    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...
  17. BRADENSTOKE

    File not found error

    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.
  18. BRADENSTOKE

    Serial Port Connector

    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...
  19. BRADENSTOKE

    scart output to s-video input

    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...
  20. BRADENSTOKE

    Converting EBCDIC to ASCII

    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...

Part and Inventory Search

Back
Top