type TSomething = record name: string; value: integer; end; type TOtherSomething = record data: extended;
I\'m starting to play with FreePascal/Lazarus and there appears to be an Indy port available. Is this a recent port and is it stable enough to use in production use? (Standard HTTP post/get client typ
I try to install fpc on open solaris doing this: svn checkout http://svn.freepascal.org/svn/fpc/branches/fixes_2_4 fpcfixes2_4
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
I use TSynedit component in a program. I noticed when I use SynEdit1.Lines.SaveToFile(loadedfile)开发者_如何学Go;, then it is saved in utf8 encoding.
I need to write a SOAP service for Linux (CentOS). I need to do this using Laz开发者_如何学Goarus/FreePascal. The service needs to be a binary (daemon) that runs in the background.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
I\'m doing a little (or at least I\'m hoping it\'s开发者_开发百科 little) favor for a friend, but haven\'t used Delphi in 10 or so years... and my searches haven\'t been of much use
Program ConstTest; Const constVar = 1; Begin constVar := 3; WriteLn(constVar); End. It\'s pretty obvious that the above code will not compile, because it\'s not right to change the value of a consta
Currently, I\'m deploying a full python distribution (the original python 2.7 msi) with my app. Which is an embedded web server made with delphi.