Re: [Lazarus] Wiki Search

2010-01-15 Thread JoshyFun
Hello Lazarus-List, Friday, January 15, 2010, 8:32:09 PM, you wrote: >> Well, no, only text information (not needed the InnoDB table) and the >> needed fields to catch the URL to point to that page. An export of >> that tables, even partially to test is enoght. VS> Maybe you can use: VS> http://w

Re: [Lazarus] [OT] Mantis, just send emails for my opened tickets

2010-01-15 Thread Eugen Bolz
Am 15.01.2010 12:34, schrieb Marc Weustink: Original Message Am 15.01.2010 00:24, schrieb Marc Weustink: Eugen Bolz wrote: Hey, is there an option that will only send me emails to my updated / changed tickets, which I have created? By default you get an email on tickets

Re: [Lazarus] How do I Show Dynamically Created Visual Components?

2010-01-15 Thread Juha Manninen
> For some reason, I was thinking that the TEdit.Create(Form1) > established Form1 as parent. It sets Owner which deals with memory management. Parent is the visual container. Regards, Juha Manninen -- ___ Lazarus mailing list Lazarus@lists.lazarus.fre

Re: [Lazarus] [OT] Mantis, just send emails for my opened, tickets

2010-01-15 Thread Benito van der Zander
By default you get an email on tickets you entered. So Uncheck all Email on But than you don't get emails for comments on the tickets you created! There is even a bug report for that: http://bugs.freepascal.org/view.php?id=8803 Benito -- ___ Lazaru

Re: [Lazarus] How do I Show Dynamically Created Visual Components?

2010-01-15 Thread Dennis M. Linton
Thanks, IK and also to Andew Brunner who also replied. For some reason, I was thinking that the TEdit.Create(Form1) established Form1 as parent. Anyhow, I set the parent and life is good again. Many thanks. Best regards, Dennis On Fri, 2010-01-15 at 21:22 +0200, ik wrote: > What about addi

Re: [Lazarus] How do I Show Dynamically Created Visual Components?

2010-01-15 Thread Andrew Brunner
You have to set the parent of the component before you will be able to see it. SetParent(Form1) or Parent:=Form1 should do. 2010/1/15 Dennis M. Linton > I am having trouble figuring out how to show visual components created > programmatically. I seem to be able to, for example, do this: > >

Re: [Lazarus] How do I Show Dynamically Created Visual Components?

2010-01-15 Thread ik
What about adding position of left and top and also Form1 as parent ? with TEdit.Create(Form1) do begin Visible:=True; Enabled:=True; Name:='TestEdit"+IntToStr(i); /// Left := 50; top := 100; Parent := Form1;

Re: [Lazarus] Wiki Search

2010-01-15 Thread dmitry boyarintsev
On Fri, Jan 15, 2010 at 9:56 PM, Vincent Snijders wrote: > What should it be without user information? Hmm... can the sensitive data be ...modified... on making the dump. i.e. user_password and user_email in users table?! thanks, dmitry -- ___ Lazarus

[Lazarus] How do I Show Dynamically Created Visual Components?

2010-01-15 Thread Dennis M. Linton
I am having trouble figuring out how to show visual components created programmatically. I seem to be able to, for example, do this: An integer, i, is declared in the public section. with TEdit.Create(Form1) do begin Visible:=True; ` Enabled:=True; Name:='TestEdit"+I

Re: [Lazarus] Wiki Search

2010-01-15 Thread JoshyFun
Hello Lazarus-List, Friday, January 15, 2010, 7:00:34 PM, you wrote: VS> If you mean a dump of the current mysql db, then no, that is not VS> possible, because it contains users, email addresses, passwords too. Well, no, only text information (not needed the InnoDB table) and the needed fields t

Re: [Lazarus] Wiki Search

2010-01-15 Thread ik
On Fri, Jan 15, 2010 at 20:56, Vincent Snijders wrote: > dmitry boyarintsev schreef: > > On Fri, Jan 15, 2010 at 9:00 PM, Vincent Snijders >> wrote: >> >>> If you mean a dump of the current mysql db, then no, that is not >>> possible, >>> because it contains users, email addresses, passwords too

Re: [Lazarus] Wiki Search

2010-01-15 Thread Vincent Snijders
dmitry boyarintsev schreef: On Fri, Jan 15, 2010 at 9:00 PM, Vincent Snijders wrote: If you mean a dump of the current mysql db, then no, that is not possible, because it contains users, email addresses, passwords too. Isn't it possible to make a dump without user information? I don't know.

Re: [Lazarus] Wiki Search

2010-01-15 Thread dmitry boyarintsev
On Fri, Jan 15, 2010 at 9:00 PM, Vincent Snijders wrote: > If you mean a dump of the current mysql db, then no, that is not possible, > because it contains users, email addresses, passwords too. Isn't it possible to make a dump without user information? thanks, dmitry -- ___

Re: [Lazarus] Wiki Search

2010-01-15 Thread Vincent Snijders
JoshyFun schreef: Hello Lazarus-List, Is there any possibility to get a copy of the current wiki database in order to test some indexing engines that may be added as another search procedure for the wiki ? If you mean a dump of the current mysql db, then no, that is not possible, because it c

Re: [Lazarus] tchart repaint on mouseclick

2010-01-15 Thread Andrea Mauri
Il 15/01/2010 14.28, Alexander Klenin ha scritto: On Fri, Jan 15, 2010 at 19:59, Andrea Mauri wrote: Il 15/01/2010 6.28, Alexander Klenin ha scritto: why if I left click on a TChart the series on that TChart are repainted also if I do not do anything else then click on the chart? You can set

[Lazarus] Wiki Search

2010-01-15 Thread JoshyFun
Hello Lazarus-List, Usually I have a lot of problems to find something valuable using the search engine of the wiki page at http://wiki.lazarus.freepascal.org and usually I get much better results using google to report the results from the wiki. So I had written (well, in fact modified) a firefox

Re: [Lazarus] tchart repaint on mouseclick

2010-01-15 Thread Alexander Klenin
On Fri, Jan 15, 2010 at 19:59, Andrea Mauri wrote: > Il 15/01/2010 6.28, Alexander Klenin ha scritto: >>> why if I left click on a TChart the series on that TChart are repainted also >>> if I do not do anything else then click on the chart? >> >> You can set AllowZoom property to false to avoid th

Re: [Lazarus] Problematic usage of TClipboard in shared library

2010-01-15 Thread Roland Turcan
<<< 15.01.2010 13:54 - Roland Turcan "k...@rotursoft.sk" >>> RT> Hello Lazarus mailing list! RT> I have written a simple tunnel library to communicate an old RT> application with the clipboard on modern linux. RT> When I use my functions from test application called directly, then RT> everything w

[Lazarus] Problematic usage of TClipboard in shared library

2010-01-15 Thread Roland Turcan
Hello Lazarus mailing list! I have written a simple tunnel library to communicate an old application with the clipboard on modern linux. When I use my functions from test application called directly, then everything works fine. When I use those function as external dynamic functions from shared li

Re: [Lazarus] Lazarus website is down

2010-01-15 Thread Graeme Geldenhuys
Giuliano Colla wrote: > > I've solved a number of similar problems by setting up our own DNS, All is okay - it was working again this morning. Regards, - Graeme - -- fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal http://opensoft.homeip.net/fpgui/ -- _

Re: [Lazarus] Lazarus website is down

2010-01-15 Thread Giuliano Colla
Graeme Geldenhuys ha scritto: Hi, The URL: http://www.lazarus.freepascal.org/ is currently down - at least from South Africa. I just thought I would let you know. I've solved a number of similar problems by setting up our own DNS, instead of relying on our provider's one. It's fairly straig

Re: [Lazarus] [OT] Mantis, just send emails for my opened tickets

2010-01-15 Thread Marc Weustink
Original Message On Fri, Jan 15, 2010 at 1:24 AM, Marc Weustink wrote: Eugen Bolz wrote: Hey, is there an option that will only send me emails to my updated / changed tickets, which I have created? By default you get an email on tickets you entered. So Uncheck all Emai

Re: [Lazarus] [OT] Mantis, just send emails for my opened tickets

2010-01-15 Thread Marc Weustink
Original Message Am 15.01.2010 00:24, schrieb Marc Weustink: Eugen Bolz wrote: Hey, is there an option that will only send me emails to my updated / changed tickets, which I have created? By default you get an email on tickets you entered. So Uncheck all Email on XXX in

Re: [Lazarus] Google API / Anyone got connected up via Lazarus/FPC?

2010-01-15 Thread Massimo Fazzolari
Great! I'm going to download it! 2010/1/15 Michael Van Canneyt > > > On Fri, 15 Jan 2010, Massimo Fazzolari wrote: > > Thank you Michael. >> >> Does synapse support mac os? Is there any lib that support it? >> > > Yes, synapse works on Mac OS. > > Michael. > > > >> Max. >> >> 2010/1/15 Michael

Re: [Lazarus] Google API / Anyone got connected up via Lazarus/FPC?

2010-01-15 Thread Michael Van Canneyt
On Fri, 15 Jan 2010, Massimo Fazzolari wrote: Thank you Michael. Does synapse support mac os? Is there any lib that support it? Yes, synapse works on Mac OS. Michael. Max. 2010/1/15 Michael Van Canneyt On Fri, 15 Jan 2010, Massimo Fazzolari wrote: What is the best

Re: [Lazarus] Google API / Anyone got connected up via Lazarus/FPC?

2010-01-15 Thread Massimo Fazzolari
Thank you Michael. Does synapse support mac os? Is there any lib that support it? Max. 2010/1/15 Michael Van Canneyt > > > On Fri, 15 Jan 2010, Massimo Fazzolari wrote: > > What is the best solution synapse, Inet or Indy? I need to connect to a >> web service. >> > > I use synapse, because it

Re: [Lazarus] tchart repaint on mouseclick

2010-01-15 Thread Andrea Mauri
Il 15/01/2010 6.28, Alexander Klenin ha scritto: On Thu, Jan 14, 2010 at 23:32, Andrea Mauri wrote: why if I left click on a TChart the series on that TChart are repainted also if I do not do anything else then click on the chart? You can set AllowZoom property to false to avoid this. dear

Re: [Lazarus] Google API / Anyone got connected up via Lazarus/FPC?

2010-01-15 Thread Michael Van Canneyt
On Fri, 15 Jan 2010, Massimo Fazzolari wrote: What is the best solution synapse, Inet or Indy? I need to connect to a web service. I use synapse, because it offers the simplest API and is very stable. Michael. Thanks Best Regards Max 2010/1/15 Michael Van Canneyt On Thu, 14 Ja

Re: [Lazarus] Google API / Anyone got connected up via Lazarus/FPC?

2010-01-15 Thread Massimo Fazzolari
What is the best solution synapse, Inet or Indy? I need to connect to a web service. Thanks Best Regards Max 2010/1/15 Michael Van Canneyt > > > On Thu, 14 Jan 2010, Michael Joyner ᏩᏯ wrote: > > >> >>> 2010/1/13 Michael Joyner : >>> >>> Google API / Anyone got connected up via Lazarus/FPC? >>>

Re: [Lazarus] [OT] Mantis, just send emails for my opened tickets

2010-01-15 Thread Luca Olivetti
En/na Marc Weustink ha escrit: Eugen Bolz wrote: Hey, is there an option that will only send me emails to my updated / changed tickets, which I have created? By default you get an email on tickets you entered. So Uncheck all Email on XXX in your preferences. Is there a way to make it send

Re: [Lazarus] Google API / Anyone got connected up via Lazarus/FPC?

2010-01-15 Thread Michael Van Canneyt
On Thu, 14 Jan 2010, Michael Joyner ᏩᏯ wrote: 2010/1/13 Michael Joyner : Google API / Anyone got connected up via Lazarus/FPC? Zaher Dirkey wrote: As i remember Google API it is a URL, any component connect to HTTP can use it, or with a WebBrowser. It is some sort of XML thingy sort o