[MSEide-MSEgui-talk] form caption gnome 3

2016-06-04 Thread amateur
Hello.
where hidden form caption? :)

screenshots:

1. http://s019.radikal.ru/i615/1606/48/4524d3da0437.png
2. http://s017.radikal.ru/i407/1606/c2/207a98d4f134.png


--
What NetFlow Analyzer can do for you? Monitors network bandwidth and traffic
patterns at an interface-level. Reveals which users, apps, and protocols are 
consuming the most bandwidth. Provides multi-vendor support for NetFlow, 
J-Flow, sFlow and other flows. Make informed decisions using capacity 
planning reports. https://ad.doubleclick.net/ddm/clk/305295220;132659582;e
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] how insert widget in fixrows twidgetgrid ?

2014-12-19 Thread amateur

It is supported at runtime?
--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] how insert widget in fixrows twidgetgrid ?

2014-12-19 Thread amateur
19.12.2014 10:46, Martin Schreiber пишет:
 On Friday 19 December 2014 09:06:35 amateur wrote:
 It is supported at runtime?
 
 grid.insertwidget(widget,position);
 

 Martin

procedure tmainfo.on_ins_col(const sender: TObject);
var
my_btn : tcalendardatetimeedit;
begin
   my_btn := tcalendardatetimeedit.create(self);
   with grid do
   begin
  insertwidget(my_btn);//work OK...
   end;
end;

{This code adds a new column...}

///
procedure tmainfo.on_ins_widget(const sender: TObject);
var
my_btn : tcalendardatetimeedit;
a_pos : pointty;
begin
   my_btn := tcalendardatetimeedit.create(self);
   a_pos := grid.pos;

///I can`t correctly determine the position
///how to insert a widget in the right column
///sample: fixrows[-1] and col 2

   with grid.fixrows[-1] do
   begin
  insertwidget(my_btn, a_pos); ///not work
   end;
end;



--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] how insert widget in fixrows twidgetgrid ?

2014-12-19 Thread amateur
19.12.2014 12:29, Martin Schreiber пишет:
 On Friday 19 December 2014 10:57:40 amateur wrote:

 procedure tmainfo.on_ins_widget(const sender: TObject);
 var
  my_btn : tcalendardatetimeedit;
  a_pos : pointty;
 begin
 my_btn := tcalendardatetimeedit.create(self);

  a_pos := addpoint(grid.paintpos,grid.cellrect(mgc(2,-1)).pos);
  insertwidget(my_btn, a_pos);

thanks...


 I'll make twidgetcol.setfixrowwidget() public.



if I understood correctly this function add widget in row...

sample:
setfixrowwidget(my_widget, a_row);

but if you need column
possible need a new function?

sample:
set_widget_grid(my_widget, a_row, a_col)

p.s
maybe i'm wrong...





--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] how insert widget in fixrows twidgetgrid ?

2014-12-19 Thread amateur
 in row of the colum. :-)



ups... twidgetcol...

{...col[i].setfixrowwidget(my_widget, row)}




--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] how insert widget in fixrows twidgetgrid ?

2014-12-19 Thread amateur
19.12.2014 15:21, Martin Schreiber пишет:
 On Friday 19 December 2014 11:29:21 Martin Schreiber wrote:
 On Friday 19 December 2014 10:57:40 amateur wrote:
 procedure tmainfo.on_ins_widget(const sender: TObject);
 var
  my_btn : tcalendardatetimeedit;
  a_pos : pointty;
 begin
 my_btn := tcalendardatetimeedit.create(self);

  a_pos := addpoint(grid.paintpos,grid.cellrect(mgc(2,-1)).pos);
  insertwidget(my_btn, a_pos);

 I'll make twidgetcol.setfixrowwidget() public.

 git master 6aeacaf71ed9f23c93541da269e38d2d54d3c1a2 has
 twidgetcol.fixrowwidgets.
 
   grid.datacols[2].fixrowwidgets[-1]:= my_btn;
 


I later seen... Thank you



--
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration  more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=164703151iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] my mistake with tstatfile ^)

2014-11-14 Thread amateur
 fdlg_open.statvarname must be set:

I looked at this property...

But i`m hesitated to use it :)

thanks...


--
Comprehensive Server Monitoring with Site24x7.
Monitor 10 servers for $9/Month.
Get alerted through email, SMS, voice calls or mobile push notifications.
Take corrective actions from your mobile device.
http://pubads.g.doubleclick.net/gampad/clk?id=154624111iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] my mistake with tstatfile ^)

2014-11-14 Thread amateur
 fdlg_open.statvarname must be set:

I looked at this property...

But i`m hesitated to use it :)

thanks...



--
Comprehensive Server Monitoring with Site24x7.
Monitor 10 servers for $9/Month.
Get alerted through email, SMS, voice calls or mobile push notifications.
Take corrective actions from your mobile device.
http://pubads.g.doubleclick.net/gampad/clk?id=154624111iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] DesktopCenter and ScreenCenter

2014-10-18 Thread amateur
10.10.2014 09:38, Martin Schreiber пишет:
 On Tuesday 07 October 2014 22:11:00 amateur wrote:
 I found fo_screencentered but don`t see desktop center...

 If you have two monitors are not correctly displayed position of the
 form (when using fo_screencentered)/

 Please try again with git master 18203c2b8fc2fb8b299ce773d77bfb50c5444c8b and
 report the results.

 Martin


I'm sorry, was busy...
In Linux operating normally.

In windows not tested.



--
Comprehensive Server Monitoring with Site24x7.
Monitor 10 servers for $9/Month.
Get alerted through email, SMS, voice calls or mobile push notifications.
Take corrective actions from your mobile device.
http://p.sf.net/sfu/Zoho
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] DesktopCenter and ScreenCenter

2014-10-08 Thread amateur
Sorry, was busy.
watch the video if a large screenshot :)

http://youtu.be/YqPkKwVWOt8


--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] DesktopCenter and ScreenCenter

2014-10-08 Thread amateur
08.10.2014 14:08, Martin Schreiber пишет:
 I ask again:

 Did you understand my previous mail?

again, blame the system?

Sorry. I'll check later.

p.s.
Although there is a difference between the center of the screen and the 
center of the monitor. I believe.


--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] DesktopCenter and ScreenCenter

2014-10-08 Thread amateur
08.10.2014 14:41, Martin Schreiber пишет:
 BTW, you still didn't answer the questions regarding debian testing gnome
 3.14 and mse:

i use no frame options in form like xelplayer...


--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] DesktopCenter and ScreenCenter

2014-10-08 Thread amateur
08.10.2014 14:41, Martin Schreiber пишет:
 I need your support because I can't reproduce the problem. Please make the
 recommended tests.


I just hooked up a second monitor.

Everything (dialogs and form) is displayed correctly. But as Desktop 
Center not screen center. Need Screen center...


--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] DesktopCenter and ScreenCenter

2014-10-08 Thread amateur
08.10.2014 14:57, Martin Schreiber пишет:
 That was not the question.;-)

A very interesting option to use no frame.

Write more. But there is a relative independence from the system.
Trying to simplify option and write a component (now use function).


--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] DesktopCenter and ScreenCenter

2014-10-07 Thread amateur
I found fo_screencentered but don`t see desktop center...

If you have two monitors are not correctly displayed position of the 
form (when using fo_screencentered)/


--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Wish list

2014-10-02 Thread amateur
02.10.2014 07:50, Martin Schreiber пишет:
 On Wednesday 01 October 2014 21:06:53 amateur wrote:
 01.10.2014 21:20, Martin Schreiber пишет:
 Select Component suports incremental search, please enter the first few
 characters of the name. There is also RightClick-'Select Childwidget'.

 Martin

 that meant (if possible)...

 I probably don't understand. Filtered by which attributes? If it is the
 component name simply type the first few characters (see attachment).


I dialed the pr. Result = list components show
who have ..pr... Not focused. Same time i have many components with pr.



--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Wish list

2014-10-02 Thread amateur
Maybe I'm wrong. And it is not necessary. But, I think it will be faster 
than the focus on necessary component.


--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Wish list

2014-10-02 Thread amateur
02.10.2014 16:28, Martin Schreiber пишет:
 You want to find appearances of the search characters at any position in the
 component name instad from start as it is now. I don't know if this search
 approach is an improvement for searching component names.

 Martin

perhaps the idea is not good. It must be the opinion of others. I know 
from experience that there are various convenient...



--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] debian testing gnome 3.14 and mse

2014-10-01 Thread amateur
01.10.2014 07:31, Martin Schreiber пишет:
 Back to the problem(s). Please write step by step what is wrong. I did not
 completely get it by viewing the video and I can not reproduce such effects.

hmm..
1. Debian GNU/Linux jessie/sid.
2. Make new project.
3. Ran.
4. Try maximise form.

Result = forgets to draw the form (my opinion, possible gnome).
When form focus changes all right.


--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] tparser in mseide

2014-10-01 Thread amateur
I found class tparser. But I can see it in two files:
mseparser and mseobjecttext.

What is the difference. And what is their functionality?


--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] Wish list

2014-10-01 Thread amateur
In form Select Component add filter...

Sometimes when many components, a long search for the relevant...  :oops:


--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] debian testing gnome 3.14 and mse

2014-10-01 Thread amateur
01.10.2014 20:48, Martin Schreiber пишет:
 What happens if you move another window above the not painted areas? Are the
 exposed areas correctely refreshed?

see video (1). When i move mouse down, form normalize. Helps to shift 
the focus to other applications, minimizing the window. It is only when 
maxmimize (when i move form on top form show normal).


--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] debian testing gnome 3.14 and mse

2014-10-01 Thread amateur
01.10.2014 21:15, Martin Schreiber пишет:
 Which graphic driver?

Mobile Intel® GM45 Express Chipset x86/MMX/SSE2


--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] debian testing gnome 3.14 and mse

2014-09-30 Thread amateur
http://youtu.be/1PGNNoZGpRY


Not a good idea... Why is it working?


--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] debian testing gnome 3.14 and mse

2014-09-30 Thread amateur
30.09.2014 12:01, Martin Schreiber пишет:
 I don't understand.

I, too...

I know that this is due to innovations in gnome. But do not understand 
how it is to win.

if use timer - form show (when maximize).
{
timer have only
   beginupdate and endupdate
}
if don`t use - form is bad.

But it is not correct...

p.s.


This is not only in mse applications. I see this effect it in other 
programs...



--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] debian testing gnome 3.14 and mse

2014-09-30 Thread amateur
30.09.2014 15:09, Martin Schreiber пишет:
 Ouch. The big benefits of modern windowmanagers.;-)
 They probably test with mainstream applications only. With Unity I fear that
 it is by intention in order to detain alien ( = not fully Unity integrated)
 applications.



this is just the beginning 

unity, gnome ... the next step - KDE. If I understand their way of 
development...

But it does not solve the problem of... Although the player from minoshi 
tells what to do... :)

Its solution (xelplayer and other) behaves normally.



--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] debian testing gnome 3.14 and mse

2014-09-30 Thread amateur
30.09.2014 16:59, Martin Schreiber пишет:
 BTW, how do you run an application if you don't know the exact name? Is there
 no thematically structured application menu anymore?

 Martin


Commonly used to 6 applications. They can be placed in the dock. And 
Shell is popular applications (~ 10) (It wont windows. The more the 
better applications...).

For work, enough terminal.


  I just tested MSEide with Gnome 3.10.1 on Opensuse 13.1, it works OK 
 for me,
  staticgravity seems to be OK too.
  What must be said is that the whole desktop is unusable slow for me. 
 Moving
  windows for example has a refresh rate of about 0.5 sec, right click 
 on the
  desktop almost a second until the popup is visible and so on...

Distributions sometimes added their vision. Therefore, there are 
problems of use (so I had to go to Debian from Ubuntu).

I looked different managers and stopped at the gnome (use for many 
years). KDE in a lot of settings, a lot of unnecessary movements.



--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] debian testing gnome 3.14 and mse

2014-09-30 Thread amateur
30.09.2014 18:36, Martin Schreiber пишет:
 I use KDE 3.5, it is still maintained in OpenSUSE, fast and convenient.
 For me Gnome is a joke. I just tried it on another computer, started xterm
 with top, gnome-shell eats 25% CPU load without doing anything. Moving the
 mouse - gnome-shell uses 50% CPU. Then I started additionally kwrite, it
 handles not more than about 1..2 keys per second, gnome-shell goes up to 95%
 CPU and remains at 80% after stop typing. A joke, really.


everyone has a choice...

For the speed I liked XFCE. Something in between - gnome. Only Debian 
version... Not Ubuntu or Fedora, or OpenSuse.

I don`t like PLAZMA in KDE (not nice idea). Very interesting 
implementation gnome 3 +. Poor implementation in ubuntu (unity have a 
lot of advertising in shell and many bags).

KDE 3.5 :) In those days, i worked with gnome compiz on a very steep 
computer - 256 Mb. And everything worked very quickly... Now, 4 
gigabytes of memory - a little :(.



--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] debian testing gnome 3.14 and mse

2014-09-30 Thread amateur
30.09.2014 18:36, Martin Schreiber пишет:
 I use KDE 3.5, it is still maintained in OpenSUSE, fast and convenient.
 For me Gnome is a joke. I just tried it on another computer, started xterm
 with top, gnome-shell eats 25% CPU load without doing anything. Moving the
 mouse - gnome-shell uses 50% CPU. Then I started additionally kwrite, it
 handles not more than about 1..2 keys per second, gnome-shell goes up to 95%
 CPU and remains at 80% after stop typing. A joke, really.


everyone has a choice...

For the speed I liked XFCE. Something in between - gnome. Only Debian 
version... Not Ubuntu or Fedora, or OpenSuse.

I don`t like PLAZMA in KDE (not nice idea). Very interesting 
implementation gnome 3 +. Poor implementation in ubuntu (unity have a 
lot of advertising in shell and many bags).

KDE 3.5 :) In those days, i worked with gnome compiz on a very steep 
computer - 256 Mb. And everything worked very quickly... Now, 4 
gigabytes of memory - a little :(.


--
Meet PCI DSS 3.0 Compliance Requirements with EventLog Analyzer
Achieve PCI DSS 3.0 Compliant Status with Out-of-the-box PCI DSS Reports
Are you Audit-Ready for PCI DSS 3.0 Compliance? Download White paper
Comply to PCI DSS 3.0 Requirement 10 and 11.5 with EventLog Analyzer
http://pubads.g.doubleclick.net/gampad/clk?id=154622311iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] debian testing gnome 3.14 and mse

2014-09-29 Thread amateur
http://youtu.be/WkvCTQ5_v2E


--
Slashdot TV.  Videos for Nerds.  Stuff that Matters.
http://pubads.g.doubleclick.net/gampad/clk?id=160591471iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] encoding with drag drop files

2014-07-24 Thread amateur
1. Run sample;
2. try drop file;
3. drop accepted but file not;
4. try drop again - file accepted...

But on same systems item 4 never happens. Only item 3.
I made a log and saw that the variable DATA is empty.

I test drop file to 5 computers with windows (3 - accepted in destdata 
(tstringgrid), 2 - no accepted file in destdata (tstringgrid)) ..

Only windows in linux OK...


--
Want fast and easy access to all the code in your enterprise? Index and
search up to 200,000 lines of code with a free copy of Black Duck
Code Sight - the same software that powers the world's largest code
search on Ohloh, the Black Duck Open Hub! Try it now.
http://p.sf.net/sfu/bds
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] encoding with drag drop files

2014-07-24 Thread amateur
... file manager


--
Want fast and easy access to all the code in your enterprise? Index and
search up to 200,000 lines of code with a free copy of Black Duck
Code Sight - the same software that powers the world's largest code
search on Ohloh, the Black Duck Open Hub! Try it now.
http://p.sf.net/sfu/bds
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] encoding with drag drop files

2014-07-24 Thread amateur
24.07.14 09:19, Martin Schreiber пишет:
 On Thursday 24 July 2014 08:13:10 amateur wrote:
 ... file manager

 Is dropping from the 'SOURCE' field working?

 Martin

When i drop from SOURCE on DESTINATION i have - file://... Not try 
this on windows.

I test drop from windows on DESTINATION.

p.s.
DESTINATION must accepted drop file, if I understand correctly?



--
Want fast and easy access to all the code in your enterprise? Index and
search up to 200,000 lines of code with a free copy of Black Duck
Code Sight - the same software that powers the world's largest code
search on Ohloh, the Black Duck Open Hub! Try it now.
http://p.sf.net/sfu/bds
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] encoding with drag drop files

2014-07-24 Thread amateur
 If it has the format of either text/uri-list or CF_HDROP it should be
 accepted. Dropping from Windows file explorer works well for me,

:) it work but not all windows.


...shows as empty string because of a leading zero.

interesting idea...

I did not see the size DATA. Only the value of...

Will continue test.



--
Want fast and easy access to all the code in your enterprise? Index and
search up to 200,000 lines of code with a free copy of Black Duck
Code Sight - the same software that powers the world's largest code
search on Ohloh, the Black Duck Open Hub! Try it now.
http://p.sf.net/sfu/bds
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] encoding with drag drop files

2014-07-23 Thread amateur
After test samples SYSDND i have same error (i while to try several 
versions of windows (7 and xp), test took place on five machines).

1. Some windows does not always work drags drop (return DATA empty).

2.Always works on windows drag the second time (after the first run the 
application - return DATA empty on first).

I can't understand why...



--
Want fast and easy access to all the code in your enterprise? Index and
search up to 200,000 lines of code with a free copy of Black Duck
Code Sight - the same software that powers the world's largest code
search on Ohloh, the Black Duck Open Hub! Try it now.
http://p.sf.net/sfu/bds
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] encoding with drag drop files

2014-07-21 Thread amateur
21.07.14 19:58, Martin Schreiber пишет:
 On Monday 21 July 2014 18:55:04 Martin Schreiber wrote:
 On Monday 21 July 2014 18:00:56 amateur wrote:
 which encoding is used in drug and drop in samples: SYSDND.
 I dropped files with cyrillic name and received... see foto.


 /home/amateur/Картинки/Безымянная папка 2 -samples...

 This probably x-special/gnome-icon-list with a html format. Try the other
 listed formats for example text/uri-list.

 It could be that it actually is text/uri-list.

 Martin


in source SYSDND already set:

const
  knownformats: array[0..1] of msestring = ('text/uri-list','CF_HDROP');

or I do not understand correctly?


--
Want fast and easy access to all the code in your enterprise? Index and
search up to 200,000 lines of code with a free copy of Black Duck
Code Sight - the same software that powers the world's largest code
search on Ohloh, the Black Duck Open Hub! Try it now.
http://p.sf.net/sfu/bds
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] encoding with drag drop files

2014-07-21 Thread amateur
ha-ha :)
url decode... if i use this function i have normal path...

// Convert URLEncoded string to utf8 string
function URLDecode(const s: String): String;
var
sAnsi: String;
sUtf8: String;
sWide: WideString;

i, len: Cardinal;
ESC: string[2];
CharCode: integer;
c: char;
begin
sAnsi := PChar(s);
SetLength(sUtf8, Length(sAnsi));
i := 1;
len := 1;
while (i = Cardinal(Length(sAnsi))) do begin
   if (sAnsi[i]  '%') then begin
  if (sAnsi[i] = '+') then begin
 c := ' ';
  end else begin
 c := sAnsi[i];
  end;
  sUtf8[len] := c;
  Inc(len);
   end else begin
  Inc(i);
  ESC := Copy(sAnsi, i, 2);
  Inc(i, 1);
  try
 CharCode := StrToInt('$' + ESC);
 c := Char(CharCode);
 sUtf8[len] := c;
 Inc(len);
  except end;
   end;
   Inc(i);
end;
Dec(len);
SetLength(sUtf8, len);

sWide := UTF8Decode(sUtf8);
len := Length(sWide);

Result := sWide;
end;


--
Want fast and easy access to all the code in your enterprise? Index and
search up to 200,000 lines of code with a free copy of Black Duck
Code Sight - the same software that powers the world's largest code
search on Ohloh, the Black Duck Open Hub! Try it now.
http://p.sf.net/sfu/bds
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] tdbwidgetgrid not focus row

2014-07-16 Thread amateur
16.07.14 21:45, amateur пишет:
 maybe I missed something...



I found the answer - used localdataset.
Or it is not correct?



--
Want fast and easy access to all the code in your enterprise? Index and
search up to 200,000 lines of code with a free copy of Black Duck
Code Sight - the same software that powers the world's largest code
search on Ohloh, the Black Duck Open Hub! Try it now.
http://p.sf.net/sfu/bds
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] simple listview from freepascal.ru :)

2014-07-14 Thread amateur
Ola -la... :)

I just checked how quickly can import unknown projects in mse, and test 
the behavior. Without much change.


--
Want fast and easy access to all the code in your enterprise? Index and
search up to 200,000 lines of code with a free copy of Black Duck#174;
Code Sight#153; - the same software that powers the world's largest code
search on Ohloh, the Black Duck Open Hub! Try it now.
http://p.sf.net/sfu/bds
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] simple listview from freepascal.ru :)

2014-07-14 Thread amateur
... and the base rate testing is needed more...



For example i test opening (and showing) large cvs table (~ 1 000 000 row).

All test in ubuntu and window (XP and 7). Used dbgrid and stringgrid...

MSE vs Lazarus.

MSE win.



I tried to optimize display in lazarus. But a lot of changes. A lot of 
time rework.

In mse not so. Many new and different functions and procedures, but not 
much bugs :)


--
Want fast and easy access to all the code in your enterprise? Index and
search up to 200,000 lines of code with a free copy of Black Duck#174;
Code Sight#153; - the same software that powers the world's largest code
search on Ohloh, the Black Duck Open Hub! Try it now.
http://p.sf.net/sfu/bds
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] strange behavior

2014-07-09 Thread amateur
1.
var
   st : TStringList;
   s, norms : string;
begin
   ...
   s := tfiledialog1.controller.filename;
   st.Loadfromfile(s);

in linux OK, in windows has error...
but if in windows use

   s := tfiledialog1.controller.filename;
   norms := Copy(s, 2, Length(s));

stringlist loadin..

2.
var
   st : tmsedbf;
   s : string;
begin
   ..
   s := tfiledialog1.controller.filename;
   st.TableName := s;

in linux OK, in windows has error...
but if use:
   With st do begin
 FilePath := ExtractFilePath(s);
 TableName := ExtractFileName(s);

Table load...




--
Open source business process management suite built on Java and Eclipse
Turn processes into business applications with Bonita BPM Community Edition
Quickly connect people, data, and systems into organized workflows
Winner of BOSSIE, CODIE, OW2 and Gartner awards
http://p.sf.net/sfu/Bonitasoft
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] strange behavior

2014-07-09 Thread amateur
09.07.14 19:44, amateur пишет:
 1.
 var
 st : TStringList;
 s, norms : string;
 begin
 ...
 s := tfiledialog1.controller.filename;
 st.Loadfromfile(s);

 in linux OK, in windows has error...
 but if in windows use

 s := tfiledialog1.controller.filename;
 norms := Copy(s, 2, Length(s));
ups
   st.Loadfromfile(norms);

 stringlist loadin..



--
Open source business process management suite built on Java and Eclipse
Turn processes into business applications with Bonita BPM Community Edition
Quickly connect people, data, and systems into organized workflows
Winner of BOSSIE, CODIE, OW2 and Gartner awards
http://p.sf.net/sfu/Bonitasoft
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] strange behavior

2014-07-09 Thread amateur
...tosysfilepath(...

...tmsestringdatalist


Hm, i did not know about it. Thank you.


--
Open source business process management suite built on Java and Eclipse
Turn processes into business applications with Bonita BPM Community Edition
Quickly connect people, data, and systems into organized workflows
Winner of BOSSIE, CODIE, OW2 and Gartner awards
http://p.sf.net/sfu/Bonitasoft
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] bug in ubuntu 14_04

2014-04-26 Thread amateur
Rescue of drowning handiwork of drowning... :)


At the moment is not so critical, but...


--
Start Your Social Network Today - Download eXo Platform
Build your Enterprise Intranet with eXo Platform Software
Java Based Open Source Intranet - Social, Extensible, Cloud Ready
Get Started Now And Turn Your Intranet Into A Collaboration Platform
http://p.sf.net/sfu/ExoPlatform
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] bug in ubuntu 14_04

2014-04-20 Thread amateur
By clicking in window frame buttons?

 When maximize and restore window (not only button)

This strange only in Unity...


--
Learn Graph Databases - Download FREE O'Reilly Book
Graph Databases is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/NeoTech
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] simple txt editor

2013-09-02 Thread amateur
02.09.2013 8:26, Martin Schreiber пишет:
 if page  nil then
 {
   actUndo.enabled := page.simpletext.canredo
 else
   actUndo.enabled := False;
 }
   actredo.enabled:= page.simpletext.canredo

Oh, missed it...

checked everything, but the code is not revised :(.

Thanks!


--
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] simple txt editor

2013-08-25 Thread amateur
and if

  if flines  nil then begin
   flines.clear;
   fgridintf.getcol.grid.rowcount:= 0; ///you have commented .? I 
uncommented. If i correct understood.  Sets the cursor to 0...



after that everything works. Thanks.


--
Introducing Performance Central, a new site from SourceForge and 
AppDynamics. Performance Central is your source for news, insights, 
analysis and resources for efficient Application Performance Management. 
Visit us today!
http://pubads.g.doubleclick.net/gampad/clk?id=48897511iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] simple txt editor

2013-08-25 Thread amateur
 
 tsyntaxedit1.loadfromfile(OpenFn);
 tsyntaxedit1.editpos:= nullcoord;
 

ups did not see. Sorry.



--
Introducing Performance Central, a new site from SourceForge and 
AppDynamics. Performance Central is your source for news, insights, 
analysis and resources for efficient Application Performance Management. 
Visit us today!
http://pubads.g.doubleclick.net/gampad/clk?id=48897511iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] simple txt editor

2013-08-24 Thread amateur
24.08.2013 22:02, amateur пишет:
 see test...

maybe it's not a mistake.
but then always need to use clean...



--
Introducing Performance Central, a new site from SourceForge and 
AppDynamics. Performance Central is your source for news, insights, 
analysis and resources for efficient Application Performance Management. 
Visit us today!
http://pubads.g.doubleclick.net/gampad/clk?id=48897511iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] simple txt editor

2013-08-22 Thread amateur
did not think to use anchors. Thanks.

tsimplewidget1.parentwidget

it is not a mistake but an interesting variation :)


--
Introducing Performance Central, a new site from SourceForge and 
AppDynamics. Performance Central is your source for news, insights, 
analysis and resources for efficient Application Performance Management. 
Visit us today!
http://pubads.g.doubleclick.net/gampad/clk?id=48897511iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] simple txt editor

2013-08-20 Thread amateur
20.08.2013 12:16, Martin Schreiber пишет:
 On Monday 19 August 2013 21:30:08 amateur wrote:
 user name - amateur666

 Thanks for pushing the editor demo. Because of the download size I think we
 should not store binaries and compiled units in the MSEuniverse git
 repository.

 Martin

changed, sorry...





--
Introducing Performance Central, a new site from SourceForge and 
AppDynamics. Performance Central is your source for news, insights, 
analysis and resources for efficient Application Performance Management. 
Visit us today!
http://pubads.g.doubleclick.net/gampad/clk?id=48897511iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] simple txt editor

2013-08-19 Thread amateur
19.08.2013 19:25, Martin Schreiber пишет:
 On Monday 19 August 2013 14:22:57 amateur wrote:
 What do you think about this example?

 Nice! :-)

 Suggestions:

 Activate simpletext.optionswidget ow1_autoscale in order to synchronize grid
 row height with font height, RightClick-'Sync. to Font Height' on simpletext
 at design time in order to adopt the current font height. There seeems to be
 a problem with og_rowheight and font height adoption, I need to investigate.

 
if simpletext.hasselection then
  actCopy.state := actCopy.state - [as_disabled]
  else
actCopy.state := actCopy.state + [as_disabled];
 
 can be simplified:
 
   actcopystate.enabled:= simpletext.hasselection;
 

thank's.

Yesterday I had huge problems with the rendering. Too bad the 
screenshots do not do it (very wanted to sleep :(). I'll do if repeated.

 If you plan to implement shortcuts use taction (tab Gui) instead
 of tnoguiaction, RightClick-'Show as Text' on the main form,
 replace tnoguiaction by taction, RightClick-'Show as Form'. In main.pas
 replace tnoguiaction by taction too.

I want to do differently. What's included - the standard for the editor. 
At this time I wish to search backlit words. And other little things :)

 Do you like to post the example to MSEuniverse?

as you wish...



--
Introducing Performance Central, a new site from SourceForge and 
AppDynamics. Performance Central is your source for news, insights, 
analysis and resources for efficient Application Performance Management. 
Visit us today!
http://pubads.g.doubleclick.net/gampad/clk?id=48897511iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] simple txt editor

2013-08-19 Thread amateur
I did not include transcoding, and search. I test it :)



--
Introducing Performance Central, a new site from SourceForge and 
AppDynamics. Performance Central is your source for news, insights, 
analysis and resources for efficient Application Performance Management. 
Visit us today!
http://pubads.g.doubleclick.net/gampad/clk?id=48897511iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] simple txt editor

2013-08-19 Thread amateur
user name - amateur666


--
Introducing Performance Central, a new site from SourceForge and 
AppDynamics. Performance Central is your source for news, insights, 
analysis and resources for efficient Application Performance Management. 
Visit us today!
http://pubads.g.doubleclick.net/gampad/clk?id=48897511iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Error: Malformed UTF-8 string

2013-08-17 Thread amateur
17.08.2013 8:06, Martin Schreiber пишет:
 On Friday 16 August 2013 21:36:37 amateur wrote:
 I get this error when I enter in the source editor Russian letters.

 simple:

 tstringdisp1.value := 'привет';

 Options editor have Encoding - utf8 and makeoptions - -l -Mobjfpc
 -Sh  -Fcutf8

 using Windows 7, MSE -2.9.9 (unstable). Where is my mistake?

 Which FPC version?

 Martin

 --
 Get 100% visibility into Java/.NET code with AppDynamics Lite!
 It's a free troubleshooting tool designed for production.
 Get down to code-level detail for bottlenecks, with 2% overhead.
 Download for free and get started troubleshooting in minutes.
 http://pubads.g.doubleclick.net/gampad/clk?id=48897031iu=/4140/ostg.clktrk
 ___
 mseide-msegui-talk mailing list
 mseide-msegui-talk@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

FPC 2.7.1.

It seems main.pas is not in utf8. I, too, shows the system code not utf8.


--
Get 100% visibility into Java/.NET code with AppDynamics Lite!
It's a free troubleshooting tool designed for production.
Get down to code-level detail for bottlenecks, with 2% overhead. 
Download for free and get started troubleshooting in minutes. 
http://pubads.g.doubleclick.net/gampad/clk?id=48897031iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] how to make wordbreak in twidgetgrid ?

2013-08-12 Thread amateur
12.08.2013 11:59, Martin Schreiber пишет:
 On Monday 12 August 2013 09:47:01 amateur wrote:

 Everything is fine but when i resize the window, i have a problem

 Please try again with git master d8e043c8ec19f0babe4eff8a20da59503640569d.

 Martin

thanks, seems fine :)



--
Get 100% visibility into Java/.NET code with AppDynamics Lite!
It's a free troubleshooting tool designed for production.
Get down to code-level detail for bottlenecks, with 2% overhead. 
Download for free and get started troubleshooting in minutes. 
http://pubads.g.doubleclick.net/gampad/clk?id=48897031iu=/4140/ostg.clktrk
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] trichstringdisp what is it?

2012-12-03 Thread amateur
Hi.
Tell me what a component if possible example.


--
Keep yourself connected to Go Parallel: 
BUILD Helping you discover the best ways to construct your parallel projects.
http://goparallel.sourceforge.net
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] trichstringdisp what is it?

2012-12-03 Thread amateur
Text formatting. Very interesting.



--
Keep yourself connected to Go Parallel: 
BUILD Helping you discover the best ways to construct your parallel projects.
http://goparallel.sourceforge.net
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] tpopupmenu1.show in Windows

2012-12-03 Thread amateur
Maybe not a bug. But in Linux menu disappears.



--
Keep yourself connected to Go Parallel: 
BUILD Helping you discover the best ways to construct your parallel projects.
http://goparallel.sourceforge.net
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] possible bug

2012-12-03 Thread amateur
Sometimes when you press the left mouse button in the cell text 
disappears too.


--
Keep yourself connected to Go Parallel: 
BUILD Helping you discover the best ways to construct your parallel projects.
http://goparallel.sourceforge.net
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] tpopupmenu1.show in Windows

2012-12-03 Thread amateur
03.12.2012 15:43, Martin Schreiber пишет:
 What is the problem? A popup menu window is not anchored in a widget.
 The atransientfor parameter is used for the initial position like
 right button click position.

When the window is resized or maximize window, popup menu must close.

In linux it good.

But in Windows located at the place where the click. Not closed popup.


--
Keep yourself connected to Go Parallel: 
BUILD Helping you discover the best ways to construct your parallel projects.
http://goparallel.sourceforge.net
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] possible bug

2012-12-03 Thread amateur
03.12.2012 14:40, Martin Schreiber пишет:
 tdbstringedit1.value does not provide the correct value for cell text and
 tdbstringedit1.value is utf-16 encoded anyways.
I later realized his mistake...

 Please don't use TDbf, it is deprecated and does not work well with the MSEgui
 Unicode system.
:)
I did not decide on the life Dbf...many very serious organizations use 
Dbf (3). And I do not choose the file encoding. :(

Please use tmsesqlquery and tsqlite3conection instead. If you
 want to use TDbf the tables either must be use the encoding of the current
 locale or utf-8, activate tmsedbf.controller. options dso_utf8 in latter
 case.
if you look at the source I tried use tmsedbf1-controller-fields 
(OnGetText). I wanted to see an empty field. But...

procedure tudmmo.OnNazGetText(Sender: TField; var aText: AnsiString; 
DisplayText: Boolean);
begin
   aText := ' ';
end;

 There is also TDbf.OnTranslate but currently not supported in FPC AFAIK.
I know about a bug TDbf.OnTranslate


--
Keep yourself connected to Go Parallel: 
BUILD Helping you discover the best ways to construct your parallel projects.
http://goparallel.sourceforge.net
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk