Re: [MSEide-MSEgui-talk] The PODPISKA: refeditionviewform.dbsdlbCompany doesn't display data which are actually present

2012-01-02 Thread Martin Schreiber
On Sunday 01 January 2012 17.55:57 IvankoB for-mse wrote: > Which state of a local dataset after calling Append() to it ? > dsinsert. -- Ridiculously easy VDI. With Citrix VDI-in-a-Box, you don't need a complex infrastruct

Re: [MSEide-MSEgui-talk] The PODPISKA: refeditionviewform.dbsdlbCompany doesn't display data which are actually present

2012-01-02 Thread IvankoB for-mse
After appending fully formed (not empty) record too ? As designed ? 2012/1/2, Martin Schreiber : > On Sunday 01 January 2012 17.55:57 IvankoB for-mse wrote: >> Which state of a local dataset after calling Append() to it ? >> > dsinsert. > >

Re: [MSEide-MSEgui-talk] The PODPISKA: refeditionviewform.dbsdlbCompany doesn't display data which are actually present

2012-01-02 Thread Martin Schreiber
On Monday 02 January 2012 11.25:56 IvankoB for-mse wrote: > After appending fully formed (not empty) record too ? As designed ? > Until calling Post(), Cancel() or Close(). CheckBrowseMode() calls Post() if the record has been changed or Cancel() without changes. " Procedure TDataset.CheckBrowseM

Re: [MSEide-MSEgui-talk] The PODPISKA: refeditionviewform.dbsdlbCompany doesn't display data which are actually present

2012-01-02 Thread IvankoB for-mse
Me mean AppendRecord([]) most probably repeated as many times as needed to append many records. For this procedure, optional autopost parameter would be appreciate. 2012/1/2, Martin Schreiber : > On Monday 02 January 2012 11.25:56 IvankoB for-mse wrote: >> After appending fully formed (not empty)

Re: [MSEide-MSEgui-talk] The PODPISKA: refeditionviewform.dbsdlbCompany doesn't display data which are actually present

2012-01-02 Thread Martin Schreiber
On Monday 02 January 2012 12:50:41 IvankoB for-mse wrote: > Me mean AppendRecord([]) most probably repeated as many times as > needed to append many records. For this procedure, optional autopost > parameter would be appreciate. > appendrecord([]) calls Append()->CheckBrowseMode()->Post(). Post mus

[MSEide-MSEgui-talk] text file

2012-01-02 Thread Patrick
What do you use to read a text file? Is there an example? Thank you. -- Ridiculously easy VDI. With Citrix VDI-in-a-Box, you don't need a complex infrastructure or vast IT resources to deliver seamless, secure access to

Re: [MSEide-MSEgui-talk] text file

2012-01-02 Thread Martin Schreiber
On Monday 02 January 2012 16.03:17 Patrick wrote: > What do you use to read a text file? > Please have a look to lib/common/kernel/msestream.pas. > Is there an example? > We don't know enough about your task, sorry. Martin -

Re: [MSEide-MSEgui-talk] text file

2012-01-02 Thread Patrick
I'll look at the msestream.pas source. What I want is a basic open the file repeat read a text line process the line until eof close the file Is the msestream object on the palette somewhere? -- Ridiculously eas

Re: [MSEide-MSEgui-talk] The PODPISKA: refeditionviewform.dbsdlbCompany doesn't display data which are actually present

2012-01-02 Thread IvankoB for-mse
Post must be called one time after last appendrecord() if there is no CheckBrowseMode() later. = Why, if "appendrecord([]) calls Append()->CheckBrowseMode()->Post()" ? 2012/1/2, Martin Schreiber : > On Monday 02 January 2012 12:50:41 IvankoB for-mse wrote: >> Me mean AppendReco

Re: [MSEide-MSEgui-talk] text file

2012-01-02 Thread Martin Schreiber
On Monday 02 January 2012 19.40:46 Patrick wrote: > I'll look at the msestream.pas source. > > What I want is a basic > > open the file > repeat >read a text line >process the line > until eof > close the file > Use ttextstream, ttextdatastream or Pascal text functions. http://www.freepasca

Re: [MSEide-MSEgui-talk] The PODPISKA: refeditionviewform.dbsdlbCompany doesn't display data which are actually present

2012-01-02 Thread Martin Schreiber
On Monday 02 January 2012 21.28:19 IvankoB for-mse wrote: > Post must be > called one time after last appendrecord() if there is no CheckBrowseMode() > later. > = > Why, if "appendrecord([]) calls Append()->CheckBrowseMode()->Post()" ? > appendrecord([]) calls Append(), Append()

[MSEide-MSEgui-talk] UTF8 Linux

2012-01-02 Thread wahono sri
My application have been succesfully translated to Chinese and Arabic (experimental). But only in Windows, in Linux arabic and chinese is broken. But in LibreOffice, I can write chinese and arabic normally. What is libraries used by MSEgui to display UTF8 string? Thanks -

Re: [MSEide-MSEgui-talk] UTF8 Linux

2012-01-02 Thread IvankoB for-mse
But only in Windows, in Linux arabic and chinese is broken. But in LibreOffice == A usual deal for pure (default) LINUX installations. You'll probably need to set up FONTCONFIG properly - to install fonts which MSEgui fonts are mapped to, to adjust their aliases. Also, for proper

Re: [MSEide-MSEgui-talk] UTF8 Linux

2012-01-02 Thread IvankoB for-mse
Some comments: # Script "do_xft.sh" : 1) obtains list of all fonts available via Freetype library 2) analyzes Freetype fonts configuration ( /etc/fonts/fonts.conf ) 3) based on 1) and 2) builds file "./Fontmap.GS.xft" which can then be added to "Fontmap.GS" file ( Gh

Re: [MSEide-MSEgui-talk] The PODPISKA: refeditionviewform.dbsdlbCompany doesn't display data which are actually present

2012-01-02 Thread IvankoB for-mse
Feels like unexpected behavior since its result differs in case of multiple calls against a single call ( same procedure! ). Don't You consider a (hint) parameter to AppendRecord just to let users (like me) know that there's the POST issue ? 2012/1/3, Martin Schreiber : > On Monday 02 January 2