Re: [Lazarus] Asyncronous socket error lNet

2008-09-28 Thread Howard Page-Clark
Usuario Anónimo wrote >I get an asyncronous socket error. > > This is my code. > > procedure TForm1.Button1Click(Sender: TObject); > var > Item: string; > begin > System.Assign(DataModule1.ItemFile,'items.txt'); > System.Reset(DataModule1.ItemFile); > repeat >System.Read(DataModule1.ItemFi

[Lazarus] Asyncronous socket error lNet

2008-09-28 Thread Usuario Anónimo
I get an asyncronous socket error. This is my code. procedure TForm1.Button1Click(Sender: TObject); var Item: string; begin System.Assign(DataModule1.ItemFile,'items.txt'); System.Reset(DataModule1.ItemFile); repeat System.Read(DataModule1.ItemFile,Item); DataModule1.LTCPComponent1.S

Re: [Lazarus] Send stream whit sockets

2008-09-28 Thread Usuario Anónimo
I need that my program works under WinCe... Synapse isn´t supported. 2008/9/27 Luca Olivetti <[EMAIL PROTECTED]> > En/na Usuario Anónimo ha escrit: > > How I can to send a stream whit sockets? > > > > I want to port this Delphi code to Lazarus: > > It seems that your code uses an ad-hoc protocol

Re: [Lazarus] Enumerating resourcestring

2008-09-28 Thread Benito van der Zander
Hi, > Did you read the programmers manual: thanks, i didn't find this. However, it doesn't work: processlist.pas(240,50) Error: Identifier not found "ResourceStringTableCount" This seems to be the same problem as in http://www.lazarus.freepascal.org/pipermail/lazarus/2008-May/017347.html Is

[Lazarus] Dialogue box positions

2008-09-28 Thread Mark Morgan Lloyd
In the longer term, can anything be done to weight dialogue boxes away from the centre of the overall screen where they end up split on a multi-display setup? At the application level I'm able to weight message boxes to half way between the centre of the screen and the centre of the current for

[Lazarus] Tabbed controls

2008-09-28 Thread Mark Morgan Lloyd
I was playing around with dockable forms the other day after watching http://www.youtube.com/watch?v=Fa1SH4u2o3Y without, I'm sorry to say, getting very far. However that did raise an interesting question: is it possible to reliably hide the tab of e.g. a TPageControl if it doesn't contain mult

[Lazarus] Help viewer

2008-09-28 Thread Mark Morgan Lloyd
Looking at lazhelphtml.pas, I suggest it might be worth adding "seamonkey" immediately before "netscape". This is the integrated bundle of HTML viewer and mail client which supercedes Netscape. It's probably not necessary to add "iceape" and "iceweasel" which are rebrandings of Seamonkey and Fi

Re: [Lazarus] Using Skins with Lazarus

2008-09-28 Thread Michael Van Canneyt
On Sat, 27 Sep 2008, [EMAIL PROTECTED] wrote: > Hello List, > > What are the options to use skins with Lazarus at the moment? None, as far as I know. you'll have to do it all yourself. A good API would be welcome. Michael. ___ Lazarus mailing list

Re: [Lazarus] Showmodal trouble

2008-09-28 Thread Sebastian Kraft
Am Mittwoch, 17. September 2008 12:25:49 schrieb Sebastian Kraft: > Hello, > > have some trouble with Form.ShowModal... > > Form1:= TForm1.create; > Form1.ShowModal; > > Should bring Form1 to front, keep it on top of all other project forms and > stay there until it is closed. Is this right? > > Bu