Re: [Lazarus] Creating SDK like system

2011-04-13 Thread Daniel Franzini
Maybe you should start making your program customizable using DLLs with GUI resources (strings, bitmaps). That's the initial approach I would take if I had to design such a thing. Another thing one may use is to embed some sort of scripting languague interpreter and exposing GUI behavior through

Re: [Lazarus] Lazarus errors -- DVD procedure identifiers.

2011-04-07 Thread Daniel Franzini
It seems that these functions and constants you are using are from Windows unit. Did you tried to include it in your uses clause? 2011/4/7 Peter Williams pewilliams2...@live.com Hi All, I have a legacy Delphi 7 project which works fine in D7, but it gives these errors in Lazarus 0.9.31.

Re: [Lazarus] Lazarus errors -- DVD procedure identifiers.

2011-04-07 Thread Daniel Franzini
2011/4/7 Peter Williams pewilliams2...@live.com Hi Daniel, -- Date: Thu, 7 Apr 2011 17:20:51 -0300 From: daniel.franz...@gmail.com To: lazarus@lists.lazarus.freepascal.org Subject: Re: [Lazarus] Lazarus errors -- DVD procedure identifiers. It seems that

Re: [Lazarus] MDI implementation

2011-04-03 Thread Daniel Franzini
Thank you, Peter. I already tried in Delphi and it works fine. I wanted to do this in Lazarus because I intended it to work in Linux too. But thanks anyway for the tip and the code. 2011/4/2 Peter Williams pewilliams2...@live.com Hi Daniel, -- Date: Sat, 2 Apr

Re: [Lazarus] MDI implementation

2011-04-03 Thread Daniel Franzini
Hi Peter. I found this version to be newer. http://www.oocities.org/br/hipernetjr/lmdi/index_en.html It seems to work well, but needs further testing. 2011/4/3 Peter Williams pewilliams2...@live.com Hi Daniel, -- Date: Sun, 3 Apr 2011 10:28:07 -0300 From:

[Lazarus] MDI implementation

2011-04-02 Thread Daniel Franzini
Hi there. I'm trying to write a MDI application in Lazarus (Win32/Vista, Lazarus 0.9.31). I created the main form and set its FormStyle property to fsMDIForm. Then I created the child form and set its FormsStyle to fsMDIChild. I also created a menu where I can start a new form. I moved the