BPDX

Results 26 comments of BPDX

@nielsAD new question - I am porting over some UUID/MSGID code from C to MP.... how hard would it be for us to implement "bit" support in records? ``` struct...

@nielsAD a while back you helped me implement this, but I cannot find my notes. ``` Write(#27+']2;LiveMenu - Telnet Edition'+#7); ctlcms.init(nil); ctlcms.setFilename(rootpath+'control.cms'); ctlcms.setFirstlineIsSchema(false); ctlcms.open(); ds:=ctlcms; df:=ds.FieldByName('Field1'); _Version:=df.getAsFloat; ctlcms.free; ``` **Note**...

Actually last time, you had me work with the internal routine that handled "dot", I just don't remember it's name to go back and find how I fixed it.

@nielsAD could we support code like: ``` {$DEFINE BURGER} {$IFDEF HOTDOG OR BURGER} !Error {$ENDIF} ``` I am porting a lot of C code over, and I run into code...

@nielsAD what is the correct way to write this in a LAPE script? type TDateTimeRec = record case TFieldType of ftDate: ( Date: LongInt; ); ftTime: ( Time: LongInt; );...

Darn, error: type TDateTimeRec = union Date: LongInt; Time: LongInt; DateTime: Double; end; var dt: TDateTimeRec; begin dt.Date := 40000; dt.Time := 400; WriteLn(dt); end; produces: {DATE = 400, TIME...

union = 8 bytes in memory long = bytes 1 2 3 4 long = bytes 5 6 7 8 double = bytes 1..8 ? > On Feb 22, 2017,...

Thank you !! That is exactly what I was trying to port over… the pascal code was a record with a case inside it.. I will add this to my...

@nielsAD I am reviewing Turbo Pascal 7 manual, and came across this - where would be the "correct" place for me to implement this support: (. .) "A left bracket...

@nielsAD Hope all is well... is there a way to mimic OnShutdown, or ExitProc. http://putka.upm.si/langref/turboPascal/0681.html When debugging a script that is running as an Apache Module, I would like to...