Re: [MSEide-MSEgui-talk] windows

2018-06-23 Thread Martin Schreiber
On Saturday 23 June 2018 12:16:30 fredvs wrote: > > IIRC as long there is a frame there also is a close button on allwindow > > managers I know. > > There is a window without any frame in fpGUI. > In MSEgui too, use optionswindow wo_noframe or wo_popup or another window kind without frame

Re: [MSEide-MSEgui-talk] windows

2018-06-23 Thread fredvs
> There is a window without any frame in fpGUI. -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/ -- Check out the vibrant tech

Re: [MSEide-MSEgui-talk] windows

2018-06-23 Thread fredvs
> IIRC as long there is a frame there also is a close button on allwindow managers I know. There is a window without any frame in fpGUI. -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/ -- Check out the

Re: [MSEide-MSEgui-talk] windows

2018-06-22 Thread Martin Schreiber
On Friday 22 June 2018 20:11:18 mohamed hamza wrote: > Hi Martin, > > > How to create windows without system menu ( no Max,Min,Close) and > using Ide? > Probably not possible. What you can do is to set tform.optionswindow wo_noframe. IIRC as long there is a frame there also is a close button

[MSEide-MSEgui-talk] windows

2018-06-22 Thread mohamed hamza
Hi Martin, How to create windows without system menu ( no Max,Min,Close) and using Ide? Best Regards. -- Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org!

Re: [MSEide-MSEgui-talk] Windows Compatible ?

2014-12-13 Thread Fred van Stappen
Thanks Martin for answers. Correct, MSEgui uses unified style on all platforms. All MSEgui filename properties and parameters of type filenamety use this format, have a look to lib/common/kernel/msefileutils.pas. Filename edit copy/paste to/from clipboard automatically converts to/from

Re: [MSEide-MSEgui-talk] Windows Compatible ?

2014-12-13 Thread Martin Schreiber
On Saturday 13 December 2014 14:56:28 Fred van Stappen wrote: Ha, ok. I use that to communicate with other progams = Windows_filename := tosysfilepath(filepath(trim(MSE_filename,fk_file,true)); It works but is it the good way ? Windows_filename:= tosysfilepath(MSE_filename); The

Re: [MSEide-MSEgui-talk] Windows Compatible ?

2014-12-13 Thread Fred van Stappen
Windows_filename := tosysfilepath(filepath(trim(MSE_filename,fk_file,true)); It works but is it the good way ? Windows_filename:= tosysfilepath(MSE_filename); Ok, perfect ;-) Activate controller.options fdo_sysfilename (not recommended). Why not recommended ? Because

Re: [MSEide-MSEgui-talk] Windows Compatible ?

2014-12-13 Thread Fred van Stappen
Activate controller.options fdo_sysfilename (not recommended). Hum, do you agree if i use it as option in ideU ? Fred. -- Download BIRT iHub F-Type - The Free Enterprise-Grade

Re: [MSEide-MSEgui-talk] Windows Compatible ?

2014-12-13 Thread Martin Schreiber
On Saturday 13 December 2014 16:10:22 Fred van Stappen wrote: Activate controller.options fdo_sysfilename (not recommended). Hum, do you agree if i use it as option in ideU ? That is up to you. :-) Martin --

Re: [MSEide-MSEgui-talk] Windows Compatible ?

2014-12-13 Thread Fred van Stappen
That is up to you. :-) Super ;-) PS: MSE is really WoW... Terta thanks. Fre;D -- Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly

[MSEide-MSEgui-talk] Windows Compatible ?

2014-12-12 Thread Fred van Stappen
Hello Martin. I have some trouble trying MSE in Windows. All the path shown in directory/filename edit are in Unix-style = /C:/blabla/bla/ How to show all in Windows way (C:\blabla\bla) ? And how to change the icon of main application ? Thanks. Fred.

Re: [MSEide-MSEgui-talk] Windows Compatible ?

2014-12-12 Thread Martin Schreiber
On Friday 12 December 2014 21:52:51 Fred van Stappen wrote: Hello Martin. I have some trouble trying MSE in Windows. All the path shown in directory/filename edit are in Unix-style = /C:/blabla/bla/ Correct, MSEgui uses unified style on all platforms. All MSEgui filename properties and

Re: [MSEide-MSEgui-talk] Windows Service Application support

2014-10-02 Thread Graeme Geldenhuys
On 2014-10-02 06:25, Martin Schreiber wrote: MSEgui supports event driven non-GUI applications. Thanks, but I need an actual Windows Service Application that registers with the Windows Service Manager (a client requirement for this program). I'll go with the classes introduced in FPC. Regards,

Re: [MSEide-MSEgui-talk] Windows Service Application support

2014-10-02 Thread Michael Schnell
On 10/02/2014 08:59 AM, Graeme Geldenhuys wrote: Thanks, but I need an actual Windows Service Application The Windows Service and Linux Daemon Applications would greatly benefit from being Event Driven. This could easily be done by basing them on NoGUI. -Michael

Re: [MSEide-MSEgui-talk] Windows Service Application support

2014-10-02 Thread Michael Schnell
On 10/02/2014 07:25 AM, Martin Schreiber wrote: MSEgui supports event driven non-GUI applications. We have been discussing this since years ;-) . The (strictly closed) TThread implementation in the fpc RTL prevents an (easy) implementation of this (i.e. without creating a second Event Queue

Re: [MSEide-MSEgui-talk] Windows Service Application support

2014-10-02 Thread Martin Schreiber
On Thursday 02 October 2014 11:04:08 Michael Schnell wrote: (Does mse support Event Queues for worker threads ? ) Yes, teventthread supports it. Martin -- Meet PCI DSS 3.0 Compliance Requirements with EventLog

[MSEide-MSEgui-talk] Windows Service Application support

2014-10-01 Thread Graeme Geldenhuys
Hi, Does MSEgui have some Unix Daemon or Windows Service Application support? Or is it best to simply use the standard classes (eg: TCustomDaemon) included with FPC? Regards, - Graeme - -- fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal http://fpgui.sourceforge.net/

Re: [MSEide-MSEgui-talk] Windows Service Application support

2014-10-01 Thread Martin Schreiber
On Thursday 02 October 2014 00:16:23 Graeme Geldenhuys wrote: Hi, Does MSEgui have some Unix Daemon or Windows Service Application support? Or is it best to simply use the standard classes (eg: TCustomDaemon) included with FPC? MSEgui supports event driven non-GUI applications. Instead of

Re: [MSEide-MSEgui-talk] windows management

2014-05-15 Thread Martin Schreiber
On Saturday 10 May 2014 18:03:05 Med Hamza wrote: Hi Martin, I think there is an other bug when we want to maximize and restore window. Linux Puppy ver 5.7 system distro. Please see attachments Git master 44128f57dbd2b61b08f75f85f9d998470e44877d has a workaround, start with

Re: [MSEide-MSEgui-talk] windows management

2014-05-11 Thread Med Hamza
I am just using Puppy linux ver 5.7 system distro and MSEIDE-MSEGUI that's all. 2014-05-11 5:39 GMT+01:00 Martin Schreiber mse00...@gmail.com: On Saturday 10 May 2014 20:20:38 Med Hamza wrote: Here it is as attachments. Please write what window manager you use. Thanks, Martin

Re: [MSEide-MSEgui-talk] windows management

2014-05-11 Thread Martin Schreiber
On Sunday 11 May 2014 08:44:33 Med Hamza wrote: I am just using Puppy linux ver 5.7 system distro and MSEIDE-MSEGUI that's all. I don't know Puppy Linux. What window manager does Puppy Linux use by default? Martin --

Re: [MSEide-MSEgui-talk] windows management

2014-05-11 Thread Martin Schreiber
On Saturday 10 May 2014 18:03:05 Med Hamza wrote: Hi Martin, I think there is an other bug when we want to maximize and restore window. Linux Puppy ver 5.7 system distro. https://github.com/joewing/jwm/issues/115 https://github.com/joewing/jwm/issues/116

Re: [MSEide-MSEgui-talk] windows management

2014-05-11 Thread Med Hamza
It's OK with IceWM Manager. Thank you. 2014-05-11 13:54 GMT+01:00 Martin Schreiber mse00...@gmail.com: On Saturday 10 May 2014 18:03:05 Med Hamza wrote: Hi Martin, I think there is an other bug when we want to maximize and restore window. Linux Puppy ver 5.7 system distro.

Re: [MSEide-MSEgui-talk] windows management

2014-05-10 Thread Martin Schreiber
On Saturday 10 May 2014 18:03:05 Med Hamza wrote: Hi Martin, I think there is an other bug when we want to maximize and restore window. Linux Puppy ver 5.7 system distro. Please see attachments All designtime? Which window manager? Can you send the test project? Martin

Re: [MSEide-MSEgui-talk] windows management

2014-05-10 Thread Martin Schreiber
On Saturday 10 May 2014 20:20:38 Med Hamza wrote: Here it is as attachments. Please write what window manager you use. Thanks, Martin -- Is your legacy SCM system holding you back? Join Perforce May 7 to find out:

Re: [MSEide-MSEgui-talk] windows 64 bit

2013-02-12 Thread Graeme Geldenhuys
On 2013-02-12 15:42, Patrick Goupell wrote: How do you compile mseide projects for 64 bit windows? As far as I know 64-bit (any platform) is not officially supported. I have successfully run 64-bit Linux versions of MSEide, but it didn't start off without troubles. I assume it should take

Re: [MSEide-MSEgui-talk] windows 64 bit

2013-02-12 Thread Patrick Goupell
On 02/12/2013 11:01 AM, Graeme Geldenhuys wrote: On 2013-02-12 15:42, Patrick Goupell wrote: How do you compile mseide projects for 64 bit windows? As far as I know 64-bit (any platform) is not officially supported. I have successfully run 64-bit Linux versions of MSEide, but it didn't

Re: [MSEide-MSEgui-talk] windows 64 bit

2013-02-12 Thread Martin Schreiber
On Tuesday 12 February 2013 16:42:55 Patrick Goupell wrote: Hello How do you compile mseide projects for 64 bit windows? I have a project that runs on windows 32 bit ok but fails on someone else's 64 bit windows 7 computer. There is no win64 target for MSEgui at the moment, the win32 target

Re: [MSEide-MSEgui-talk] windows 64 bit

2013-02-12 Thread Martin Schreiber
On Tuesday 12 February 2013 17:01:35 Graeme Geldenhuys wrote: As far as I know 64-bit (any platform) is not officially supported. I have successfully run 64-bit Linux versions of MSEide, but it didn't start off without troubles. Linux 64 bit is supported but not used much. I assume it

Re: [MSEide-MSEgui-talk] windows 64 bit

2013-02-12 Thread Patrick Goupell
On 02/12/2013 12:17 PM, Martin Schreiber wrote: On Tuesday 12 February 2013 17:01:35 Graeme Geldenhuys wrote: As far as I know 64-bit (any platform) is not officially supported. I have successfully run 64-bit Linux versions of MSEide, but it didn't start off without troubles. Linux 64 bit

Re: [MSEide-MSEgui-talk] windows 64 bit

2013-02-12 Thread Graeme Geldenhuys
On 2013-02-12 16:33, Patrick Goupell wrote: The program is compiled as a 32 bit windows program. Will it run on 64 bit? It should run okay. If not, how do I / we develop for 64 bit windows environments? You might be able to run Win32 apps under Win64, but you can't target Win64 directly. No

Re: [MSEide-MSEgui-talk] windows 64 bit

2013-02-12 Thread Graeme Geldenhuys
On 2013-02-12 17:17, Martin Schreiber wrote: Soon I'll be looking at getting MSEide to compile under 64-bit FreeBSD - my OS of choice these days. I haven't attempted it yet, but will let you know how it goes when I do. I am curious. :-) As expected, the msesysintf.pas unit gave errors. I

Re: [MSEide-MSEgui-talk] windows 64 bit

2013-02-12 Thread Sieghard
Hallo Martin, Du schriebst am Tue, 12 Feb 2013 18:17:33 +0100: On Tuesday 12 February 2013 17:33:28 Patrick Goupell wrote: On 02/12/2013 11:01 AM, Graeme Geldenhuys wrote: On 2013-02-12 15:42, Patrick Goupell wrote: How do you compile mseide projects for 64 bit windows? As far as

Re: [MSEide-MSEgui-talk] windows 64 bit

2013-02-12 Thread Graeme Geldenhuys
On 2013-02-12 21:54, Martin Schreiber wrote: Where is tthreadid for freebsd defined? I could not find it in rtl. [ rtl/bsd/sysosh.inc ] type { fd are int in C also for 64bit targets (x86_64) } THandle = Longint; TThreadRec = record end; TThreadID =

Re: [MSEide-MSEgui-talk] windows 64 bit

2013-02-12 Thread Ivanko B
64bit support will anyway be needed for smooth running 2G+ (with swap, sure) memory-usage apps. Because of huge CPU memory requirements of modern movie-like PC-games, Windows7 64bit has been the current win-32 mainstream :)