RE: [lazarus] Problem with lazreport

2007-07-23 Thread German C. Basisty
Be cool, i’ts a cheetah, don’t worry!

I have the 32 bits version of lazarus running on Windows vista 64 bits.
Perhaps it is a OS incompatibility issue, because on a virtual machine with
xp 32 bits, the same lazarus works properly.

Regards

 

Germán C. Basisty

Estudio Informático Patagónico

Consultor 

tel. +54 (2942) 15 472 223

[EMAIL PROTECTED]

 <http://www.eipsistemas.ath.cx/> http://www.eipsistemas.ath.cx

 

De: Swen Heinig [mailto:[EMAIL PROTECTED] 
Enviado el: lunes, 23 de julio de 2007 06:33 p.m.
Para: lazarus@miraclec.com
Asunto: Re: [lazarus] Problem with lazreport

 

If a tiger appears you have a real problem. Then the Lazarus cheetah has run
away. ;-) 
Currently it's not possible to use lazreport (and some other packages) with
the win64 version of Lazarus. You can alternatively install the win32
version.

Best regards,
Swen


German C. Basisty schrieb: 

Hi!


I’m trying to install lazreport package. Under my Linux box, it Works OK but
under my Windows box there is no way to make it work. After rebuilding
lazarus (no errors) the tiger appears, and then nothing happens. Lazarus
never starts. The only strange thing I noticed, is the size of the new
lazarus.exe: allmost 33MB against the 9MB of the oldest one.

I work with Windows vista 64 bits, lazarus 0.9.22 beta fcp 2.0.4

Any idea??

 

Bests regards

 

Germán C. Basisty

Estudio Informático Patagónico

Consultor 

tel. +54 (2942) 15 472 223

[EMAIL PROTECTED]

http://www.eipsistemas.ath.cx <http://www.eipsistemas.ath.cx/> 

 



[lazarus] Problem with lazreport

2007-07-23 Thread German C. Basisty
Hi!


I’m trying to install lazreport package. Under my Linux box, it Works OK but
under my Windows box there is no way to make it work. After rebuilding
lazarus (no errors) the tiger appears, and then nothing happens. Lazarus
never starts. The only strange thing I noticed, is the size of the new
lazarus.exe: allmost 33MB against the 9MB of the oldest one.

I work with Windows vista 64 bits, lazarus 0.9.22 beta fcp 2.0.4

Any idea??

 

Bests regards

 

Germán C. Basisty

Estudio Informático Patagónico

Consultor 

tel. +54 (2942) 15 472 223

[EMAIL PROTECTED]

http://www.eipsistemas.ath.cx  

 



RE: [lazarus] Initialize a DBGrid

2007-07-18 Thread German C. Basisty
Thank you all for your help!

 

Regards, 

 

German

 

De: Darmawan Sugiarto [mailto:[EMAIL PROTECTED] 
Enviado el: miércoles, 18 de julio de 2007 11:05 p.m.
Para: lazarus@miraclec.com
Asunto: Re: [lazarus] Initialize a DBGrid

 



"German C. Basisty" <[EMAIL PROTECTED]> wrote:

Hi!

Here goes another question:

 

I have a form. This form contains a DBGrid. The DBGrid retrives information
via an SQL connection from a PostgreSQL Database. How do I do to initialize
parameters (like DBGrid1.Columns[1].Width := 20) when the form is shown
(when the form appears)?

 

Best Regards ,

 

German


You can init this OnShow event or OnActive or Oncreate it's depend from your
application. 
If you want to init when form show - Form.Show  -> OnShow
If you want to init when form change from Z-windows -> OnActive
or if just once initialization when form created -> OnCreate;

You can choose...

Thanks sorry for my english


=INTOSOFT
ALEXIO CHAOS
[EMAIL PROTECTED] 
Yahoo Messager
=

  

  _  

Looking for a deal? Find
<http://us.rd.yahoo.com/evt=47094/*http:/farechase.yahoo.com/;_ylc=X3oDMTFic
DJoNDllBF9TAzk3NDA3NTg5BHBvcwMxMwRzZWMDZ3JvdXBzBHNsawNlbWFpbC1uY20->  great
prices on flights and hotels with Yahoo! FareChase.



[lazarus] files: I give up

2007-07-17 Thread German C. Basisty
Now I really dont know whats wrong, please help me.

 

The writting code:

 



procedure TForm1.Button1Click(Sender: TObject);

var

  archivo: File of String;

  cadena: String;

  

begin

  cadena := Edit1.Text;

  ShowMessage(cadena);

  System.Assign(archivo, 'archivo.dat');

  System.Rewrite(archivo);

  Write(archivo, cadena);

  System.Close(archivo);

end;



 

The Reading code (Another app):

 



procedure TForm1.Button1Click(Sender: TObject);

var

  archivo: file of string;

  cadena: string;

 

begin

  System.Assign(archivo, 'archivo.dat');

  System.Reset(archivo);

  read(archivo, cadena);

  System.Close(archivo);

  

  Edit1.Text := cadena;

 

end;  



 

When I run the writting app, it seems to work, the archivo.dat file is
created. But when I run the Reading app, and press the read button, it
apperas an error message who say something about Access violation.

 

Please help! Have mercy

 

Regards, 

 

German



RE: [lazarus] Problem with file

2007-07-17 Thread German C. Basisty
Thank you!!
Regards

-Mensaje original-
De: Mattias Gaertner [mailto:[EMAIL PROTECTED] 
Enviado el: martes, 17 de julio de 2007 07:07 p.m.
Para: lazarus@miraclec.com
Asunto: Re: [lazarus] Problem with file

On Tue, 17 Jul 2007 18:49:35 -0300
"German C. Basisty" <[EMAIL PROTECTED]> wrote:

> Hello again!
> 
>  
> 
> I wrote this simple program in pascal on my Linux box:
> 
>  
> 
> ==
> 
> program exists;
> 
>  
> 
> var
> 
> f: file of string;
> 
> IOR: integer;
> 
>  
> 
> begin
> 
> assign(f, 'test.txt');
> 
> {$I-}
> 
> reset(f);
> 
> {$I+}
> 
> IOR := IOResult;
> 
> if IOR = 2 then
> 
> writeln('exists')
> 
> else if IOR = 0 then
> 
> writeln('it does not exists')
> 
> else if IOR <> 0 then
> 
> halt;
> 
> close(f);
> 
> end.
> 
> ==
> 
>  
> 
> # fpc exists.pas
> 
>  
> 
> It Works fine. Now I'm writting an app with lazarus, and the same code
> (inside a procedure) does not work. An error message appears when
> compiling:
> 
>  
> 
> Unit1.pas(50,30) Error: Wrong number of parameters specified
> 
>  
> 
> Should I handle files with lazarus in a diferent way tan with fpc?

No. Lazarus uses plain FPC. It does not mangle your code.
But 'assign' and 'close' are methods of your TForm, and they expect
other parameters.
You can see this yourself, by using the 'find declaration'feature of
lazarus.
The 'assign' you want to use is in the 'system' unit, so
you can write 'System.Assign' and 'System.Close' to tell the compiler
to use the right function.

Or you can use the FileExists and/or FileIsReadable function of the
FileUtil unit.


Mattias

_
 To unsubscribe: mail [EMAIL PROTECTED] with
"unsubscribe" as the Subject
   archives at http://www.lazarus.freepascal.org/mailarchives

_
 To unsubscribe: mail [EMAIL PROTECTED] with
"unsubscribe" as the Subject
   archives at http://www.lazarus.freepascal.org/mailarchives


[lazarus] Problem with file

2007-07-17 Thread German C. Basisty
Hello again!

 

I wrote this simple program in pascal on my Linux box:

 

==

program exists;

 

var

f: file of string;

IOR: integer;

 

begin

assign(f, 'test.txt');

{$I-}

reset(f);

{$I+}

IOR := IOResult;

if IOR = 2 then

writeln('exists')

else if IOR = 0 then

writeln('it does not exists')

else if IOR <> 0 then

halt;

close(f);

end.

==

 

# fpc exists.pas

 

It Works fine. Now I'm writting an app with lazarus, and the same code
(inside a procedure) does not work. An error message appears when compiling:

 

Unit1.pas(50,30) Error: Wrong number of parameters specified

 

Should I handle files with lazarus in a diferent way tan with fpc?

 

Regards,

 

German

 

 

 

 



[lazarus] Initialize a DBGrid

2007-07-17 Thread German C. Basisty
Hi!

Here goes another question:

 

I have a form. This form contains a DBGrid. The DBGrid retrives information
via an SQL connection from a PostgreSQL Database. How do I do to initialize
parameters (like DBGrid1.Columns[1].Width := 20) when the form is shown
(when the form appears)?

 

Best Regards ,

 

German



[lazarus] Menu

2007-07-17 Thread German C. Basisty
Good people:

 

Does anybody know where can I find documentation about creating and managing
menu? I mean, like a standard Windows app main menu or something. 

Best regards

 

German

  



RE: [lazarus] Another little help with databases

2007-07-17 Thread German C. Basisty
Thank you all for your usefull help.
Best regards,

German

-Mensaje original-
De: Bram Kuijvenhoven [mailto:[EMAIL PROTECTED] 
Enviado el: martes, 17 de julio de 2007 03:34 a.m.
Para: lazarus@miraclec.com
Asunto: Re: [lazarus] Another little help with databases

German C. Basisty wrote:
> I have now a form with a working TPQConnection, a TSQLTransaction, a 
> TSQLQuery with a  'select * from product' as SQL, a TDatasource, an a 
> TDBGrid, everithing is working fine and every product is shown on the 
> DBGrid as expected. Now I want to add an TEdit to make posible searching 
> products by name, for example, so when the user writes something on the 
> Edit, the SQLQuery1.SQL should become something like 'select * from 
> product where name = ' + Edit1.Text + '

I assume you don't want to create an SQL injection bug, so you should either
properly escape Edit1.Text, or use query parameters instead; see e.g.
http://wiki.freepascal.org/Secure_programming#Injection. I recommend using
query parameters.

Regards,

Bram

_
 To unsubscribe: mail [EMAIL PROTECTED] with
"unsubscribe" as the Subject
   archives at http://www.lazarus.freepascal.org/mailarchives

_
 To unsubscribe: mail [EMAIL PROTECTED] with
"unsubscribe" as the Subject
   archives at http://www.lazarus.freepascal.org/mailarchives


[lazarus] Another little help with databases

2007-07-16 Thread German C. Basisty
My mail server was not working fine, if there is any, please resend me the
answers to this mail. Thank you

 

Hi again! 

 

Well, I'm still learning.

 

I have now a form with a working TPQConnection, a TSQLTransaction, a
TSQLQuery with a  'select * from product' as SQL, a TDatasource, an a
TDBGrid, everithing is working fine and every product is shown on the DBGrid
as expected. Now I want to add an TEdit to make posible searching products
by name, for example, so when the user writes something on the Edit, the
SQLQuery1.SQL should become something like 'select * from product where name
= ' + Edit1.Text + '

 

Now my questions:

 

-  How do I write in pascal a " ' " inside a " ' "? I mean, in C++ I
use " as string container, but in pascal I should use ', so, how do I do it?


-  How can I do an update after I change the SQLQuery1.SQL property?
I mean, if at the beginning the DBGrid shows all products, then I change the
SQLQuery1.SQL property, how do I do to make the DBGrid show the new filtered
content

 

Best regards,

 

German



[lazarus] Another little help with databases

2007-07-16 Thread German C. Basisty
Hi again!

 

Well, I'm still learning.

 

I have now a form with a working TPQConnection, a TSQLTransaction, a
TSQLQuery with a  'select * from product' as SQL, a TDatasource, an a
TDBGrid, everithing is working fine and every product is shown on the DBGrid
as expected. Now I want to add an TEdit to make posible searching products
by name, for example, so when the user writes something on the Edit, the
SQLQuery1.SQL should become something like 'select * from product where name
= ' + Edit1.Text + '

 

Now my questions:

 

-  How do I write in pascal a " ' " inside a " ' "? I mean, in C++ I
use " as string container, but in pascal I should use ', so, how do I do it?


-  How can I do an update after I change the SQLQuery1.SQL property?
I mean, if at the beginning the DBGrid shows all products, then I change the
SQLQuery1.SQL property, how do I do to make the DBGrid show the new filtered
content

 

Best regards,

 

German



RE: [lazarus] PostgreSQL

2007-07-16 Thread German C. Basisty
Thank you for your answer. What do you recomend me to do? Should I downgrade
Lazarus 64 bits on my Windows Vista 64 bits to a 32 bits version of Lazarus?
Isn’t there a way to use just the 32 bits postgresql client on the 64 bits
lazarus?

 

Bests regards,

 

German

 

De: Swen Heinig [mailto:[EMAIL PROTECTED] 
Enviado el: sábado, 14 de julio de 2007 06:24 p.m.
Para: lazarus@miraclec.com
Asunto: Re: [lazarus] PostgreSQL

 

The sqldb package currently doesn't support all databases under Windows x64.
That's why some components are deactivated. In case of PostgreSQL that's not
a big problem, because there is no 64 bit client library available which you
would need for your 64 bit application.

Best regards,
Swen


German C. Basisty schrieb: 

Hi!

 

Im running a postgreSQL database on a Linux box and Windows vista x86_64 on
another one. On the Linux box when I run lazarus I can see the TPQconnection
on the SQLdb tab, but not on the windows version of lazarus. I tryed already
to rebuild the component by open package file menu, but it is still missing.

Any Idea?? 

 

On windows: lazarus 0.9.23 beta 64 bits

 

Best regards



[lazarus] PostgreSQL

2007-07-14 Thread German C. Basisty
Hi!

 

Im running a postgreSQL database on a Linux box and Windows vista x86_64 on
another one. On the Linux box when I run lazarus I can see the TPQconnection
on the SQLdb tab, but not on the windows version of lazarus. I tryed already
to rebuild the component by open package file menu, but it is still missing.

Any Idea?? 

 

On windows: lazarus 0.9.23 beta 64 bits

 

Best regards



RE: [lazarus] Call a form from another form

2007-07-14 Thread German C. Basisty
I found the answer by myself, in a post in the fórum. I says something about
moving in one unit the other unit reference from the uses clause to the
implementation section, for example:

 

(UNIT 2)

Implementation

  uses Unit1;

 

Now I tryed writting both uses on implementation section and also works
well. Whats the diference between uses clause and implementation clause? 

 

Regards 

De: German C. Basisty [mailto:[EMAIL PROTECTED] 
Enviado el: sábado, 14 de julio de 2007 04:55 p.m.
Para: lazarus@miraclec.com
Asunto: RE: [lazarus] Call a form from another form

 

Hi, me again!

 

How do I do to avoid a circular unit reference? What If after form2 shows
up, I want a button to make it disappear and show form1 again? I tryed
adding Unit1 to the uses clause of Unit2, but it doesnt compile showin an
error about circular unit reference.

 

Rest regards

 

De: Charl van Jaarsveldt [mailto:[EMAIL PROTECTED] 
Enviado el: sábado, 14 de julio de 2007 04:41 p.m.
Para: lazarus@miraclec.com
Asunto: Re: [lazarus] Call a form from another form

 

You should have a unit for form1 called unit1 (if not haven't changed the
name), and another unit, called unit2 for form2.
If you look at unit1 in the editor, you will see that it starts like:

unit Unit1; 

{$mode objfpc}{$H+}

interface

uses
  Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs,
StdCtrls;

Now, add unit2 to the uses list so that it is:
uses
  Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs,
StdCtrls, unit2;

This is assuming you haven't changed the names yet. :-)

Basically, the uses clause tells the compiler which units, or source files,
you are using in the one you are busy with, so for every unit you use, you
need to specify it in the uses clause. 

Hope it helps,
Charl

On 7/14/07, German C. Basisty <[EMAIL PROTECTED] > wrote:

It does not compile, sorry. I think I forgot to add the unit of form2. I
really dont know hot to do that, may you please send me an example? J 

Regards

 

De: Charl van Jaarsveldt [mailto:[EMAIL PROTECTED] 
Enviado el: sábado, 14 de julio de 2007 03:59 p.m.
Para: lazarus@miraclec.com
Asunto: Re: [lazarus] Call a form from another form

 

Hello,

When you say it doesn't work, what do you mean? It does not compile, or it
does not work the way you expected?

If compiling is a problem, it could be that you forgot to add the unit of
form2 in the uses clause for the unit of form1. 

Charl

On 7/14/07, German C. Basisty <[EMAIL PROTECTED]> wrote: 

Hi!

 

This is a very newby question, but you have to understand I'm a Linux c++
(console) developer, not familiar with Delphi.

I could install Lazarus, tryed a few examples, and now I'm trying to call a
form from another form. So I designed a form (Form1) with a button and a
second form, but it starts on a diferent unit or something. I want to make
the button on form1 call form2, but it seems this button does not know form2
exist. The statement I used was something like

 

procedure TForm1.Button1Click(Sender: TObject);

begin

  Form1.Hide;

  Form2.Show;

end;

 

This does not work J

 

Can someone tell me where to start reading?? 

 

Best regards  




-- 
"I love deadlines. I especially love the whooshing sound they make as they
fly by." - Douglas Adams 




-- 
"I love deadlines. I especially love the whooshing sound they make as they
fly by." - Douglas Adams 



RE: [lazarus] Call a form from another form

2007-07-14 Thread German C. Basisty
Hi, me again!

 

How do I do to avoid a circular unit reference? What If after form2 shows
up, I want a button to make it disappear and show form1 again? I tryed
adding Unit1 to the uses clause of Unit2, but it doesnt compile showin an
error about circular unit reference.

 

Rest regards

 

De: Charl van Jaarsveldt [mailto:[EMAIL PROTECTED] 
Enviado el: sábado, 14 de julio de 2007 04:41 p.m.
Para: lazarus@miraclec.com
Asunto: Re: [lazarus] Call a form from another form

 

You should have a unit for form1 called unit1 (if not haven't changed the
name), and another unit, called unit2 for form2.
If you look at unit1 in the editor, you will see that it starts like:

unit Unit1; 

{$mode objfpc}{$H+}

interface

uses
  Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs,
StdCtrls;

Now, add unit2 to the uses list so that it is:
uses
  Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs,
StdCtrls, unit2;

This is assuming you haven't changed the names yet. :-)

Basically, the uses clause tells the compiler which units, or source files,
you are using in the one you are busy with, so for every unit you use, you
need to specify it in the uses clause. 

Hope it helps,
Charl

On 7/14/07, German C. Basisty <[EMAIL PROTECTED] > wrote:

It does not compile, sorry. I think I forgot to add the unit of form2. I
really dont know hot to do that, may you please send me an example? J 

Regards

 

De: Charl van Jaarsveldt [mailto:[EMAIL PROTECTED] 
Enviado el: sábado, 14 de julio de 2007 03:59 p.m.
Para: lazarus@miraclec.com
Asunto: Re: [lazarus] Call a form from another form

 

Hello,

When you say it doesn't work, what do you mean? It does not compile, or it
does not work the way you expected?

If compiling is a problem, it could be that you forgot to add the unit of
form2 in the uses clause for the unit of form1. 

Charl

On 7/14/07, German C. Basisty <[EMAIL PROTECTED]> wrote: 

Hi!

 

This is a very newby question, but you have to understand I'm a Linux c++
(console) developer, not familiar with Delphi.

I could install Lazarus, tryed a few examples, and now I'm trying to call a
form from another form. So I designed a form (Form1) with a button and a
second form, but it starts on a diferent unit or something. I want to make
the button on form1 call form2, but it seems this button does not know form2
exist. The statement I used was something like

 

procedure TForm1.Button1Click(Sender: TObject);

begin

  Form1.Hide;

  Form2.Show;

end;

 

This does not work J

 

Can someone tell me where to start reading?? 

 

Best regards  




-- 
"I love deadlines. I especially love the whooshing sound they make as they
fly by." - Douglas Adams 




-- 
"I love deadlines. I especially love the whooshing sound they make as they
fly by." - Douglas Adams 



RE: [lazarus] Call a form from another form

2007-07-14 Thread German C. Basisty
Thank you very much for your patience! That is what I need to know!

Regards,

 

german

 

De: Charl van Jaarsveldt [mailto:[EMAIL PROTECTED] 
Enviado el: sábado, 14 de julio de 2007 04:41 p.m.
Para: lazarus@miraclec.com
Asunto: Re: [lazarus] Call a form from another form

 

You should have a unit for form1 called unit1 (if not haven't changed the
name), and another unit, called unit2 for form2.
If you look at unit1 in the editor, you will see that it starts like:

unit Unit1; 

{$mode objfpc}{$H+}

interface

uses
  Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs,
StdCtrls;

Now, add unit2 to the uses list so that it is:
uses
  Classes, SysUtils, LResources, Forms, Controls, Graphics, Dialogs,
StdCtrls, unit2;

This is assuming you haven't changed the names yet. :-)

Basically, the uses clause tells the compiler which units, or source files,
you are using in the one you are busy with, so for every unit you use, you
need to specify it in the uses clause. 

Hope it helps,
Charl

On 7/14/07, German C. Basisty <[EMAIL PROTECTED] > wrote:

It does not compile, sorry. I think I forgot to add the unit of form2. I
really dont know hot to do that, may you please send me an example? J 

Regards

 

De: Charl van Jaarsveldt [mailto:[EMAIL PROTECTED] 
Enviado el: sábado, 14 de julio de 2007 03:59 p.m.
Para: lazarus@miraclec.com
Asunto: Re: [lazarus] Call a form from another form

 

Hello,

When you say it doesn't work, what do you mean? It does not compile, or it
does not work the way you expected?

If compiling is a problem, it could be that you forgot to add the unit of
form2 in the uses clause for the unit of form1. 

Charl

On 7/14/07, German C. Basisty <[EMAIL PROTECTED]> wrote: 

Hi!

 

This is a very newby question, but you have to understand I'm a Linux c++
(console) developer, not familiar with Delphi.

I could install Lazarus, tryed a few examples, and now I'm trying to call a
form from another form. So I designed a form (Form1) with a button and a
second form, but it starts on a diferent unit or something. I want to make
the button on form1 call form2, but it seems this button does not know form2
exist. The statement I used was something like

 

procedure TForm1.Button1Click(Sender: TObject);

begin

  Form1.Hide;

  Form2.Show;

end;

 

This does not work J

 

Can someone tell me where to start reading?? 

 

Best regards  




-- 
"I love deadlines. I especially love the whooshing sound they make as they
fly by." - Douglas Adams 




-- 
"I love deadlines. I especially love the whooshing sound they make as they
fly by." - Douglas Adams 



RE: [lazarus] Call a form from another form

2007-07-14 Thread German C. Basisty
It does not compile, sorry. I think I forgot to add the unit of form2. I
really dont know hot to do that, may you please send me an example? J 

Regards

 

De: Charl van Jaarsveldt [mailto:[EMAIL PROTECTED] 
Enviado el: sábado, 14 de julio de 2007 03:59 p.m.
Para: lazarus@miraclec.com
Asunto: Re: [lazarus] Call a form from another form

 

Hello,

When you say it doesn't work, what do you mean? It does not compile, or it
does not work the way you expected?

If compiling is a problem, it could be that you forgot to add the unit of
form2 in the uses clause for the unit of form1. 

Charl

On 7/14/07, German C. Basisty <[EMAIL PROTECTED]> wrote: 

Hi!

 

This is a very newby question, but you have to understand I'm a Linux c++
(console) developer, not familiar with Delphi.

I could install Lazarus, tryed a few examples, and now I'm trying to call a
form from another form. So I designed a form (Form1) with a button and a
second form, but it starts on a diferent unit or something. I want to make
the button on form1 call form2, but it seems this button does not know form2
exist. The statement I used was something like

 

procedure TForm1.Button1Click(Sender: TObject);

begin

  Form1.Hide;

  Form2.Show;

end;

 

This does not work J

 

Can someone tell me where to start reading?? 

 

Best regards  




-- 
"I love deadlines. I especially love the whooshing sound they make as they
fly by." - Douglas Adams 



[lazarus] Call a form from another form

2007-07-14 Thread German C. Basisty
Hi!

 

This is a very newby question, but you have to understand I'm a Linux c++
(console) developer, not familiar with Delphi.

I could install Lazarus, tryed a few examples, and now I'm trying to call a
form from another form. So I designed a form (Form1) with a button and a
second form, but it starts on a diferent unit or something. I want to make
the button on form1 call form2, but it seems this button does not know form2
exist. The statement I used was something like

 

procedure TForm1.Button1Click(Sender: TObject);

begin

  Form1.Hide;

  Form2.Show;

end;

 

This does not work J

 

Can someone tell me where to start reading?? 

 

Best regards  



RE: [lazarus] Lazarus + Fedora 7 x86_64

2007-07-14 Thread German C. Basisty
Thank you all!

The problema was a couple of missing rpm's.
Here goes a small list of things I have had to install before running
lazarus, just in case someone else is having the same problem:

- fpc
- fpc-src
- gdk-pixbuf
- gdk-pixbuf-devel
- glib
- glib-devel
- gtk+
- gtk+-devel
- lazarus :)

Regards

-Mensaje original-
De: Felipe Monteiro de Carvalho [mailto:[EMAIL PROTECTED] 
Enviado el: viernes, 13 de julio de 2007 04:17 p.m.
Para: lazarus@miraclec.com
Asunto: Re: [lazarus] Lazarus + Fedora 7 x86_64

On 7/13/07, German C. Basisty <[EMAIL PROTECTED]> wrote:
> Any ideas??

Just a wild guess, but may you installed a lazarus rpm for x86 instead
of for x86_64?

-- 
Felipe Monteiro de Carvalho

_
 To unsubscribe: mail [EMAIL PROTECTED] with
"unsubscribe" as the Subject
   archives at http://www.lazarus.freepascal.org/mailarchives

_
 To unsubscribe: mail [EMAIL PROTECTED] with
"unsubscribe" as the Subject
   archives at http://www.lazarus.freepascal.org/mailarchives


[lazarus] Lazarus + Fedora 7 x86_64

2007-07-13 Thread German C. Basisty
Hi!

 

My name is German Basisty, I'm new to pascal, also new to Lazarus. I'm
trying to make Lazarus work on my Linux box, who runs fedora 7 x86_64.

I downloaded the rpm's (fpc, fpc-sr from yum; lazarus from the website) and
everithing seems to work ok, but when I start lazarus, generate some example
code and try to compile, the message window says something like I have an
incompatible version of glib or something like that. Any ideas??

 

Best regards,

 

German