etime. Freepascal always present to us some
pleasant surprisses.
2018-12-13 18:07 GMT-02:00, luciano de souza :
> Hello all,
> I'd like to convert this date "2017-01-11T17:47:22.2912317-02:00" to
> TDatetime.
> It seems probably it exists in Freepascal, but I don't know.
>
don't know
how to do it easily.
I thank you for any help.
Best Regards,
--
Luciano de Souza
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
maillist - fpc-pascal@lists.freepascal.org
> http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
--
Luciano de Souza
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
alize;
run;
finally
free;
end;
end;
END.
However, TTestRunner belongs to consoletestrunner, a non Freepascal unit.
I imagine there is a way to run tests only with Freepascal units. But
how to do this without consoletestrunner, a unit found in Lazarus?
Best regards,
--
Lucian
t; What exactly are you wanting to accomplish by mixing in Exchange and
> Outlook?
>
>
> --
> Bo Berglund
> Developer in Sweden
>
> ___
> fpc-pascal maillist - fpc-pascal@lists.freepascal.org
> http://lists.freepascal.org/cgi-bi
unit to handle with Exchange sending protocol?
Best Regards,
--
Luciano de Souza
Hello all,
From a Linux machine connected to a Windows machine by VPN, I’d like
to send e-mails programmatically using a Microsoft Exchange account.
Using Windows resources, I could call Outlook automation API to do
d anything else is needed!
Sorry for the unnecessary question!
2018-02-22 10:38 GMT-03:00, luciano de souza :
> Hello all,
> I'd like to replace some part of a string acording to a pattern.
> I know how to search and print the matches of a ER:
>
> program test;
> {$mode ob
dispite this, I was not able to understand how to do it.
--
Luciano de Souza
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
ements are positioned over elements, perhaps the screen reader read
incorrectly.
What you have shown is very simple! Thank you!
2016-12-01 15:04 GMT-02:00, Mattias Gaertner :
> On Thu, 1 Dec 2016 14:57:42 -0200
> luciano de souza wrote:
>
>> I am also blind and this topic really inter
s\i386-win32\lcl\widgetset
> C:\FPC\2.4.4\units\i386-win32\lcl\interfaces\win32
> Then click on the Include files tab.
> Add this directory:
> C:\FPC\2.4.4\units\i386-win32\lcl\include
> Now, you should be able to use the LCL.
>
>
> If the answers to my questions #1 & #2 are in the affirmative, and if the
> paths described in my question #3 can be added to the Windows search path or
> inserted into a *.ini file or somewhere else, perhaps I can give it a go.
>
> I apologize for such a lengthy message but, I didn't know how else to make
> clear my dilemma.
>
> Thanks,
>
> Bob
>
>
--
Luciano de Souza
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
found, but alerts to the fact that no tests were done in this
method of the Testcase.
2016-11-15 7:06 GMT-02:00, luciano de souza :
> Hello all,
> I am trying to run testcases.
> For testing the idea, I compile the example contained in:
>
> ./fpc-3.0.0/packages/fcl-fpcunit
>
>
commandline:
./testrunner -a --format=plain
However, the output produced was in XML.
What am I doing wrong.
See the output:
62
0
0
--
Luciano de Souza
The problem is solved. Actually, I didn't know that, in my Linux,
sharable libraries are only accessible from /usr/lib.
As I was trying to access a lib in another directory, Libreoffice was
not able to find it.
Regards,
Luciano
2015-12-11 17:15 GMT-02:00, luciano de souza :
> Hello al
vel(2;5)
And I got:
#value
I really don't know what to do. Seemlngly, VBA code is correct. I
don't know so much about DLLs, would be possible to have a mistake in
my Pascal code?
Does someone have any idea?
Best regards,
--
Luciano de Souza
library CE;
{$mode objfpc}
uses
S
, but when
compiling brokers.pas,
./Globals/Components/Brook/brookfclhttpappbroker.pas was not found.
Perhaps, it's better to have the work of declaring everything individually.
2015-12-05 9:52 GMT-02:00, Michael Van Canneyt :
>
>
> On Sat, 5 Dec 2015, luciano de souza wrote:
>
>>
subfolders
recursively with -Fu?
--
Luciano de Souza
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
VInput.free;
VOutput.free;
end;
END.
2015-12-01 17:57 GMT-02:00, luciano de souza :
> Hello all,
>
> What's wrong with this code?
>
> I try to cryptograph a file. The compiler doesn't raise errors, but
> after running the program, no results happen.
>
> program test;
IN
VMemory := TMemoryStream.create;
VMemory.LoadFromFile('origin.txt');
VCypher := TBlowfishEncryptStream.create('lazarus-br', VMemory);
try
VMemory.position := 0;
VCypher.write(VMemory.memory, VMemory.size);
VMemory.SaveToFile('output.bfe');
finally
VCypher.free;
VMemo
strong impression. Thank you!
2015-11-27 21:48 GMT-02:00, Marcos Douglas :
> On Fri, Nov 27, 2015 at 7:44 PM, luciano de souza
> wrote:
>> If I need to do "TAnimalFactory.create(atDog) as Tdog", perhaps, it
>> would be better not to use a factory, doing simply "TDog.crea
nimal.bark;
> finally
> animal.free;
> end;
> END.
>
>
> Mattias
> ___
> fpc-pascal maillist - fpc-pascal@lists.freepascal.org
> http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
>
--
Luciano d
;
{TAnimalFactory}
class function TAnimalFactory.create(AType: TAnimalType):TAnimal;
begin
case AType of
atDog: result := TDog.create;
atCat: result := TCat.create;
end;
end;
end.
Well, I am studying design patterns, but I really does not understand
how to solve t
Hello all,
There are several classes which manages lists. TCollection,
TObjectlist, TFPGObjectlist... Does someone know if one of then can be
saved as a file and reloaded again to an object?
Regards,
--
Luciano de Souza
___
fpc-pascal maillist
Thank you for the always rapid and gentile reply. Well, if there's no
way to avoid pchar, let's go to pchar!
2015-06-06 4:27 GMT-03:00, Michael Van Canneyt :
>
>
> On Sat, 6 Jun 2015, luciano de souza wrote:
>
>> Hello all,
>>
>> At work, I need to crea
function in Freepascal?
function concatenate(name: string): string; cdecl;
begin
result := 'Freepascal ' + name;
end;
--
Luciano de Souza
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
GMT-03:00, luciano de souza :
> Hello listers,
>
> Using Freepascal 2.6.4, I have a problem about generics. In short, I
> can't specialize a class with a subtype of a type declared with
> "public type". Let me try to explain.
>
> In dopf.pas, I have:
>
> type
ll, I think the problem is illustrated. The doubt is how can create
an instance of a public type, in my case, t2.Tentities inside my
specialized class?
Best regards,
--
Luciano de Souza
___
fpc-pascal maillist - fpc-pascal@lists.free
Thank you. Generics is one of the best features the compiler has
lately implemented. I am happy to use it freely!
2014-10-10 9:34 GMT-03:00, Sven Barth :
> Am 10.10.2014 12:52 schrieb "luciano de souza" :
>>
>> Hello all,
>>
>> Nowadays, using FPC 2.6.4, spe
solved? When the parent class has a long name, names chosen to child
class must be excessively short!
Regards,
--
Luciano de Souza
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
Yes, I use 2.6.4 version.
Well, the important is that work is being doing and the time will arrive.
2014-09-22 14:05 GMT-03:00, Sven Barth :
> Am 22.09.2014 15:53 schrieb "luciano de souza" :
>> Yes, it works, but why is it not possible to compile programs with
>> gener
General mailing list archive at Nabble.com.
> ___
> fpc-pascal maillist - fpc-pascal@lists.freepascal.org
> http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
>
--
Luciano de Souza
___
fpc-pascal maillist - fpc-pascal@lists.free
ascal.org
> http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
>
--
Luciano de Souza
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
ch are the easiest way to save records without
this limitation?
Is there something like a persistent list?
--
Luciano de Souza
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
piled with:
fpc progname.pp -B -Scghi -O1 -gw2 -godwarfsets -gl -vewnhi
Yes, it works, but why is it not possible to compile programs with
generics with the conventional method?
Regards,
--
Luciano de Souza
___
fpc-pascal maillist - fpc-p
dataset
to be shown and paginated. And by means of a text property, I can fill
the template with one of the presented engines.
2014-09-17 1:51 GMT-03:00, luciano de souza :
> Hello all,
>
> I Know two templating engines for Freepascal: FPTemplate e JTemplate.
> Both can be successfu
with support for logical structures?
Regards,
--
Luciano de Souza
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
of the same directory of the
executable.
What I want to know is: is there a commandline parameter to specify a
new name or, at least, a new directory to fpc.cfg file?
For example, in stead of placing fpc.cfg in ./, I want to place it in
./Settings.
I use fpc 2.6.4.
--
Luciano de Souza
the command
line and a text editor like Gedit, is it possible to add files as
resources in my executable?
--
Regards,
Luciano de Souza
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
.
My knowledge about Regular Expressions is small, so I really need to study more.
2014-04-10 4:16 GMT-03:00, Mattias Gaertner :
> On Thu, 10 Apr 2014 02:43:41 -0300
> luciano de souza wrote:
>
>>[...]
>> r.expression := '^(x\s+)*(\([A-E]\))*(\s*.*\.)+(\s+\+.*\b)*(\s+@.*\
".
It's true I am not have enough experience in Regular Expressions, but
the used one seems to be very logical for me. Would Someone have any
idea what is wrong?
Best regards,
--
Luciano de Souza
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
eg library. On debian it's provided by the
> libsmpeg0 package.
>
> https://packages.debian.org/wheezy/libsmpeg0
>
--
Luciano de Souza
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
wrong?
Regards,
--
Luciano de Souza
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal
:= TStringlist.create;
r := TJSONObject.create;
a := TJSONarray.create;
j := TJsonObject.create;
j.strings['name'] := 'Luciano de Souza';
j.integers['age'] := 38;
j.strings['city'] := 'Niterói';
j.strings['country'] := 'Brazil';
a.add(j.clon
d;
END.
Thank you! This class is really very easy to use.
2014/1/21, Flávio Etrusco :
> On Tue, Jan 21, 2014 at 10:45 PM, luciano de souza
> wrote:
>> Hello all,
>>
>> This code should add all the files of a directory in a tar file.
>>
>> program e01;
>> {
f the directory can't be opened.
What is wrong?
My second doubt is: I am running this program in Ubuntu 13.10. If I
run it in Windows, will a external library be necessary or all the
code is included in lib tar unit?
Regards,
--
Luciano de Souza
__
Yes, you are right. Now, I observe that we have two foldders: fpcunit
and fcl-fpcunit. The missing units were in the last one.
I don't know why I made this confusion. Sorry!
2013/10/18, Michael Van Canneyt :
>
>
> On Fri, 18 Oct 2013, luciano de souza wrote:
>
>> Hello
mple, so why not to try it?
What do you can say me about FPCUnit without Lazarus? Or more broadly,
which would be your strategy to automatize tests if Lazarus didn't
exist?
Regards,
--
Luciano de Souza
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal
I thank you for the tip. That's true I haven't tested it up to now.
The Windows was damaged by 194 infections. this large amount of virus
has blocked the browsers and, as a result, the web development was
suspensed for some time. It's really confortable to know Linux is safier.
the important is
I thank you for the tip. That's true I haven't tested it up to now.
The Windows was damaged by 194 infections. this large amount of virus
has blocked the browsers and, as a result, the web development was
suspensed for some time. It's really confortable to know Linux is safier.
the important is
hello all,
I want to compile a program with no visible screen, but at the same
time, with input and output enabled.
If I use $apptype gui, the screen is invisible, but there are not
input and output.
If I use the standard $apptype console, the input and output is
enabled, but the screen is visible.
t I think I was not able
> to implement it if it is already available.
> e Free Pascal - General mailing list archive at Nabble.com.
>
> __
>
> Hello.
> Im busy to implement ID3v2 tag in uos.
> Im nearly ready...
> https://github
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
> http://lists.freepascal.org/mailman/listinfo/fpc-pascal
>
--
Luciano de Souza
unit ID3v2;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils;
const
TAG_VERSION_2_2 = 2;
TAG_VERSION_2_3 = 3;
TAG_VERSION_2_4 = 4;
type
T
e;
try
with tagger do
begin
track := StrToInt64Def('12', 0);
title := 'O meu título';
artist := 'O meu artista';
album := 'O meu álbum';
year := '2013';
comment := 'O meu comentário';
genre := 'clássico
________
> fpc-pascal maillist - fpc-pascal@lists.freepascal.org
> http://lists.freepascal.org/mailman/listinfo/fpc-pascal
>
--
Luciano de Souza
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal
ninen :
> May I ask how were the hierarchy and dependency graps generated?
> Is there a tool that can do it?
>
> Juha
> ___
> fpc-pascal maillist - fpc-pascal@lists.freepascal.org
> http://lists.freepascal.org/mailman/listinfo/fpc
turday 15 December 2012 09:59:48 schrieb luciano de souza:
>> No, Brook works with any web server. Apache is only the an example and
>> the preference of the author.
>>
>> 2012/12/15, silvioprog :
>> > Hello all,
>> >
>> > More than 15,000 lin
I drive to João Moraes, who gave me valuable advices to
> decoupling the code. Thanks for Luciano de Souza, responsible for the
> documentation and the name of methods and properties. Thanks also for
> Marcos Douglas, the author of Greyhound, project wich started as an
> inspiration an
e an
> honor to participate in this fantastic project.
> Is the FPC team likes, I will exclude this project from Github since, in
> this case, it wouldn't make sense to stay there.
> But whatever is the will, here I offer my work and I hope
Unfortunately, I don't have enough knowledlge even to start a task like
that. But observing the firm journey of Freepascal, I am sure we will
have it soon.
Em 24-11-2012 06:52, Michael Van Canneyt escreveu:
On Fri, 23 Nov 2012, luciano de souza wrote:
Among its hundreds of units
l.org/mailman/listinfo/fpc-pascal
>>
>>
>> Yes, I said this because the original poster wrote he needed the very
>> little code to accomplish this.
>
> I implemented the class methods for all forms of Get/Post/Formpost, so now
> you can
, luciano de souza wrote:
Hello listers,
Using Synapse, the developer has very good features to deal with the
HTTP protocol. But imagine you want only to do a "get" in a URL and
take a string back. I imagine it can be done with the standard units
of Freepascal. Is it true? How could I do i
Hello listers,
Using Synapse, the developer has very good features to deal with the
HTTP protocol. But imagine you want only to do a "get" in a URL and
take a string back. I imagine it can be done with the standard units
of Freepascal. Is it true? How could I do it with FPC 2.7.1?
Best regards,
Luc
If I correctly understood, the flag field is to find arguments. If it
remains "nil", the argument was not found, otherwise, it's a pointer
to the short option.
2012/10/30, Henry Vermaak :
> On 30/10/12 10:05, luciano de souza wrote:
>> Hello listers,
>> Getopt
Michael,
Your example is very clear. I am not very good to understand source
codes. But this style seems to be very good and logical.
It's really wonderful: FPC owns units for everything!
Thank you.
On 27/7/2012 08:43, michael.vancann...@wisa.be wrote:
On Fri, 27 Jul 2012, luciano de
On 27/7/2012 08:51, leledumbo wrote:
try this:
type
TMyTemplate = class(TFPTemplate)
private
procedure ReplaceMyTags(Sender : TObject; Const TagString : String;
TagParams:TStringList; Out ReplaceText : String);
public
constructor Create;
end;
procedure TMyTemplate.ReplaceM
Hello all,
I am running some CGIs in localhost. When talking about web servers,
the name of Apache comes as natural. However, I would like to share
some zip files to show the results. For this purpose, Apache is not
the best because I need something not instalable.
I tried a small server
Hello all,
In order to enable UTF-8 characters, I tried to use it:
program dvcodepage;
{$codepage UTF8}
uses
Sysutils;
var
x: integer;
BEGIN
writeln('Digite um número');
readln(x);
writeln('O número digitado foi ', x);
END.
I really didn't expect errors, but I got the following output:
Free
tful!
Regarding the complexity, probably is's possible to do much more than
simply play a sound. In spite of that, it would be intersting to have
something easier.
The examples work with complex and for me, abstract structures. Which
kind of content, do I need to study to understand Openal or SDL?
Hello all,
Bass is a very good library for sound playing and recording. However,
it's not included as an standard feature of Freepascal. For whom wich
wants to work with standard components, are there other options: (1)
to play sounds and (2) to record sounds?
Regards,
Luciano
___
Hello all,
I want to execute FPC, but filtering the output in order to show only
the necessary information. The reason is I am blind, I use screen
reader and, in the console environment, it's not possible to read the
rows below without firstly read the rows above.
My intention is to use TProcess,
, placeable in code, allowing me to define a name for the
executable?
I am asking to myself: "Did I become crazy? Have I done the test
wrongly?" Yes, it can be. However, I did it several times with the
same result. I don't know what, but something misleading is wrong.
2012/5/17, l
hello all,
I am compiling CGI modules with Freepascal in commandline mode. if I do:
fpc test.pas
the result is "test.exe". But the source name needs to be different
from the executable name. For this reason:
fpc test.pas -oindex.cgi
This command should result in index.cgi, placed on the curren
Fortunately, my case is the simplest one. There will not quotes inside
quotes. Therefore, I believe TStringlists will sove the whole problem.
It's really amasing what we can do with a TStringlist.
Thank you for the precious tips!
2012/5/13, luciano de souza :
> Hello all,
>
> I t
Hello all,
I trying to build a very small interpreter. I can type commands like:
$ add "Luciano de Souza" luchya...@gmail.com
Somewhere in my code, I can have something like:
procedure parse(commandline: string; var params: array of string);
In this case, the commandline has the fo
ut of course, I may be wrong.
Em 26-02-2012 13:29, Michael Van Canneyt escreveu:
On Sun, 26 Feb 2012, Luciano de Souza wrote:
Hello all,
For desktop environments, there are mature projects on data
persistance. Press Objects, TiOPF... desktop developers can be proud
of the tools they have.
Hello all,
For desktop environments, there are mature projects on data persistance.
Press Objects, TiOPF... desktop developers can be proud of the tools
they have.
What about CGI environments? Is there something already developed? Yes,
we can use SQLDB. It's really a very good component. How
istake is
very high! But fortunately, I have a good friend who corrects me! One
bilion of corrections else and I will be perfect!
Thank you very much!
Em 01-02-2012 04:54, waldo kitty escreveu:
On 1/31/2012 22:23, Luciano de Souza wrote:
Hello listers,
A strange error came up when format
and galaxes!
Thank you very much!
Regards,
Luciano
Em 01/02/2012 04:54, waldo kitty escreveu:
On 1/31/2012 22:23, Luciano de Souza wrote:
Hello listers,
A strange error came up when formating a date. See this code:
writeln(formatdatetime('dd/mm/', now));
The answer should be: 31
Hello listers,
A strange error came up when formating a date. See this code:
writeln(formatdatetime('dd/mm/', now));
The answer should be: 31/01/2012
The answer was: 31-01-2012
I did one test else:
writeln(formatdatetime('dd$mm$', now));
The answer was: 31$01$2012
Yes, the problem se
e done, and you will not need Lazarus.
Michael.
On Sat, 7 Jan 2012, Luciano de Souza wrote:
Hello listers,
I have really appreciated the organized tests that FPCUnit allows.
It's really a very good feature, but for me, it hasn't been to
use it.
For some while, I have writen an
not impossible that I need FileUtils and Clipboard. But
When it comes, I will think about. Until there, FPC is complete for me.
Em 08-01-2012 10:06, Rainer Stratmann escreveu:
Am Sunday 08 January 2012 02:17:29 schrieb Luciano de Souza:
I have downloaded a Lazarus deb package compatible with F
Now, I understand. FPCUnit and FPCRegistry do not have LCL dependences.
What depends on LCL is the runner called Console Runner. This name make
me confused!
I ahve alredy read the documentation, but I could not understand.
Perhaps, perhaps my weak english... Well, the fact is that everything i
Hello listers,
I have really appreciated the organized tests that FPCUnit allows. It's
really a very good feature, but for me, it hasn't been to use it.
For some while, I have writen an e-mail saying I could not run some
example. The problem was that I don't use Lazarus, but only FPC. I
I have tested ptop with very good results. It does really what I want.
As it is possible to get the default cfg with '-g", we can change it and
call the changed cfg with '-c'. It's really a powerful and easy tool.
Em 02-01-2012 14:29, Marco van de Voort escreveu:
In our previous episode, mich
hello listers,
A blind programer doesn't matter whether a code is indented. That's my
case. For us, it's natural to disregard all code formatation.
In spite of that, the indentation is crucial. If my code is read by
sighted programers, they will be disturbed. So if it's possible, I
want to type
parameter, it receives a LPI file. However, lpi files are created in
Lazarus interface. The lack of accessibility of Lazarus is so big that
even this task I could not do at Lazarus interface.
If LPI files are really necessary, I must create then manually.
Em 17/12/2011 16:11, Mattias Gaertner e
which prints out the result.
Then add your test unit to this application.
If you run the console test application on the command-line,
specify options '--format=plain' and '--all'
The graphical application will show test results in a tree.
Michael.
On Sat, 17 Dec 2011, Luciano
program apptest;
{$mode objfpc}{$h+}
uses
test;
begin
end.
Em 16/12/2011 11:44, Michael Van Canneyt escreveu:
On Fri, 16 Dec 2011, Vincent Snijders wrote:
2011/12/16 luciano de souza :
Hello listers,
Navigating in FPC source codes, I found fpcunit. It's really
wonderful. With the tT
wrote:
2011/12/16 luciano de souza :
Hello listers,
Navigating in FPC source codes, I found fpcunit. It's really
wonderful. With the tTestCase class, we can generate a report with
the success or the failure of our tests.
Is there documentation on the usage of fpcunit? What is the best w
Hello listers,
Navigating in FPC source codes, I found fpcunit. It's really
wonderful. With the tTestCase class, we can generate a report with
the success or the failure of our tests.
However, only observing the source code, it's not easy to comprehend
how it works. I found a single parcial exam
Yes, the unit seems to be very complete. I will study it and I am sure
good results will come up!
Thank you!
Em 11/12/2011 18:18, Martin Schreiber escreveu:
On 12/11/2011 09:10 PM, Luciano de Souza wrote:
Hello listers,
I want to sort an open unidimensional array of integers from the
k you in advance!
Luciano
--
Luciano de Souza
___
fpc-pascal maillist - fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal
Hello listers,
I would like to create some templates. Suppose the following example:
%s
%s
%s
%s
I can certainly use format to link %s to the respective variables.
However, if the number of %s is big, probabily, the reading would be
less clearer.
But, suppose I have $title in stead of
Hello listers,
I am trying to understand how to create some code using Custcgi.
However, the following peace is not clear for me concerning to
"getnextpathinfo". Let's see:
program cgiproject1;
{$mode objfpc}{$H+}
uses
HTTPDefs, custweb, custcgi, main;
type
{ TMyCGIHandler }
TMyCGI
Everything is solved with a magic: "sudo apt-get install libsqlite3-dev".
I tested the same example and the executable was generated.
Thank you. Your reply helped me a lot!
Em 31-10-2011 08:45, Jonas Maebe escreveu:
On 31 Oct 2011, at 11:27, Luciano de Souza wrote:
The executab
Hi listers,
I have installed FPC 2.4.4 using the following package:
http://mirrors.iwi.me/lazarus/snapshots/fpc-2.4.4-1.i386.deb.tar
Having unpacked it in a folder, I did:
sudo dpkg -i *.deb
The instalation was seemingly successful since I could compile some
sources. However, compiling the attac
Hello listers,
I am trying to use CGI with Pascal. I don't have background in web
development, but principles of CGI seems to be simple.
The first way could be FPWeb. However, I prefer another solution even if
it is the best bet. It requires complex compilations and configurations
since it's
Hi listers,
I tried to translate a C header with:
h2pas -e -d -p iupkey.h
I got the following error:
at line 21 error : syntax error
at line 41 error : syntax error
Illegal character in line 45
"#define K_at '@' /* 64 */"
Illegal character in line 73
"#define K_backslash '\\' /*
97 matches
Mail list logo