Re: [MSEide-MSEgui-talk] The evil that is mfm

2020-02-14 Thread Patrick Goupell


On 2/14/20 1:51 PM, fredvs wrote:

Right click on a file in the file list (right
side of editor window) and click on "Show as form"

This is enabled only if the 3 files are present.
The same for "Touch form", if a .mfm or _mfm.pas is missing.

By the way, do you know what is the goal of "Touch form" ?

Fre;D



In the past I would occassionaly get a corrupeted formfile.pas.

Reading the error message that displayed I would correct whatever was 
wrong in the formile.pas source.  Right clickong the file name would 
then show "Show as form" and the form would display.



Where do you see "Touch form"?


Patrick




___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] The evil that is mfm

2020-02-14 Thread Patrick Goupell


On 2/13/20 8:34 PM, fredvs wrote:

Afaik, the *_mfm.pas are not necessary.
You may delete them, there are given only for convenience (?) when you do
a
"touch form".

Fake news!

*_mfm.pas ARE necessary.

So, sorry, I dont know the purpose of the objdata: record size: integer;
data: array
that is in *_mfm.pas.

(But I would be happy to know).

Fre;D




From what I remember the *_mfm.pas files are used to display the source 
file's underlying form.  Right click on a file in the file list (right 
side of editor window) and click on "Show as form"



I would guess that the array of integers is some type of bitmap for the 
form image.  But just a guess.



Patrick



___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] APACHE MOD

2019-06-10 Thread Patrick Goupell


On 6/10/19 12:54 PM, mohamed hamza wrote:

Hi,

   Is It possible to develop a module extension for Apache that 
support Mse PAS same as Apache supports PHPs.  Any Ideas ?


Med



Do you mean as a CGI module?


Pascal can be used to compile cgi modules so I would assume you could 
compile an mse project as long as you follow cgi programming standards.



Do a search for apache cgi pascal module and see what you get.


The lazarus project has some web programming examples as well.


Patrick

___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Compilation error with FPC 3.2.0

2019-04-25 Thread Patrick Goupell


On 4/24/19 10:06 PM, Fred van Stappen wrote:


>The source for FPC can be downloaded from the www.freepascal.org 
 site.
> Follow the Download link on the right side of the screen.

Thanks Patrick.

But it seems that only source of official release fpc 3.0.4 can be 
downloaded on that site.


Fre;D



near the bottom of the page is a link to the development page

Or farther down under Coding is a Develoment link also.


These links may or may not get you what you want.

___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Compilation error with FPC 3.2.0

2019-04-24 Thread Patrick Goupell


On 4/24/19 3:00 PM, fredvs wrote:

Re-hello Graeme.

Your script is perfect but... it need to install svn to download source of
fpc 3.2.0 (and I do not find the courage).

;-(

(Things would be so much easier with GitHub).

Anyway, thanks to Sternas and his out-of-the-box CodeTyphon, I did install
fpc 3.3.1.
I will see what appends with msegui and fpc > 3.0.x asap.
  
Fre;D


The source for FPC can be downloaded from the www.freepascal.org site.  
Follow the Download link on the right side of the screen.



___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Feature Request: double click select word in editor

2019-04-22 Thread Patrick Goupell


On 4/22/19 4:59 PM, Fred van Stappen wrote:

Hello Patrick.

> But don't try to do it all in one fix.  Break it down into individualchanges 
if possible.

Not sure to understand, the fix was to change in sourcepage.pas, line 
1255:


if edit.isdblclicked(info.mouseeventinfopo^) and
 (info.mouseeventinfopo^.shiftstate*[ss_double,ss_shift,ss_left] =
       [ss_double,ss_shift,ss_left]) then begin

With that:

if edit.isdblclicked(info.mouseeventinfopo^) then begin

How to do this in individual changes?

Fre;D

I meant if there were other non standard key combinations (like the 
double-click on a word) Martin used.


If there are no others then nothing else to worry about.

___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Feature Request: double click select word in editor

2019-04-22 Thread Patrick Goupell


On 4/22/19 3:39 PM, Graeme Geldenhuys wrote:

On 22/04/2019 20:09, fredvs wrote:

So ok to change code?
With or without {ifdef noshiftforselect}?

I personally think the code and behaviour should change to conform with
the standard behaviour seen in all other development tools and
programmer editors. I wouldn't bother with IFDEFs as that will simply
confuse the code more than anything else.



I would agree.

Standardize to what all other editors do.  Try to identify any other non 
standard actions Martin has.


But don't try to do it all in one fix.  Break it down into individual 
changes if possible.


Patrick




___
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 use mse tree/node ?

2019-03-23 Thread Patrick Goupell


On 3/21/19 7:45 PM, Fred van Stappen wrote:

Hello.

Does it exist demo-examples how to use mse tree/node component by code?

Thanks.



There is a simple example in 
mseuniverse/attic/msedocumenting/mse/trunk/help/tutorials/widgets/treeview/simple



Patrick

___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Destiny of Martin's projects

2019-02-17 Thread Patrick Goupell

Hello Fred,

Is there any documentation on how to set up the mselang environment / 
what steps are needed to use it?


Thank you

Patrick


___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] MseUniverse

2019-02-04 Thread Patrick Goupell


On 2/4/19 1:09 PM, mohamed hamza wrote:
Extending is the problem did you notice that the unit baseeditpageform 
is used by basetabsform.





NO, I did not look at the entire program.


You asked a question and I tried to answer it.


Are you doing this for yourself?  As a learning experience? Something else?


What is the purpose of your question?

___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] MseUniverse

2019-02-04 Thread Patrick Goupell


On 2/4/19 6:09 AM, mohamed hamza wrote:

Yes. We can write something like

procedure tpageeditfo.onenter(..)

begin
dataso.dataset:=tdbwidgetgrid(sender).datalink.datasource.dataset;
end;

But the units ( BaseEditForm, BaseTabsForm) will not be aware of this 
change)


dataso in BaseEditForm will not be set.



Expand the onenter event to set the dataso in BaseEditForm as well.


Patrick

___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] MseUniverse

2019-02-03 Thread Patrick Goupell


On 2/3/19 1:19 PM, mohamed hamza wrote:

MseUniverse/samples/forms/formintabpage

Med




If I understand you correctly you want a second, third or more grids on 
one of the tabpages.



When on that tabpage you change from grid 1 to grid 2.


IF this is correct then you would have to set an event (possibly onenter 
or some other event) handler that would then set the datasource just as 
the basetabsform does in its event handler tbasetabsfo.initsubformev.



Patrick

___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] MseUniverse

2019-02-03 Thread Patrick Goupell


On 2/3/19 6:02 AM, mohamed hamza wrote:
This Martin's project  show us  how to play with tabwidget and 
switching datasource each time  tab changes ( see 
tbasetabsfo.initsubformev).


I  want to enhance it.

Suppose we have more grids in tabpage and each grid with a different 
datasource.


Then the chalange is : To switch datasource every time we change the 
grid via onenter event?


Med



Which project are you referring to?


Please give the full path name starting with mseuniverse/...


Thank you.


Patrick

___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] MseUniverse

2019-02-02 Thread Patrick Goupell


On 2/2/19 3:34 PM, mohamed hamza wrote:

Hi there,

    I did the enhancements to  the Prj ( forms and *.pas ) but the  
result is  not what expected. If somebody can help, I can explain ?


Med


Can you tell us what your problem is.  Be specific.
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Destiny of Martin's projects

2019-01-31 Thread Patrick Goupell




fpc 3.0.4 works fine , the problem is with fpc 3.3.1




SO why use something that does not work?

Patrick



___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Destiny of Martin's projects

2019-01-31 Thread Patrick Goupell



On 1/31/19 7:25 AM, fredvs wrote:

did you try compile msegui/ide with fpc trunk ?

AFAIK, msegui/ide can be compiled with fpc <= 3.0.4.

I did try to compile some msegui projects with fpc 3.1.1..

It was ok for Windows but fails for Unix.



I run fpc 3.0.4 on 64 bit linux, debian stretch with no problems.

I download and compile it from source as I compile for both 32 and 64 
bit for linux and windows


Patrick



___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Destiny of Martin's projects

2019-01-28 Thread Patrick Goupell


On 1/27/19 7:11 AM, fredvs wrote:


Like you know, I am volunteer to help (but terrorized by git).



Hello All,

I sent a contact message to gitlab as follows:

-

Hello,

The owner of the project at https://gitlab.com/mseide-msegui, set up by 
Martin Schreiber (msei1) died Nov 29, 2018.


We, the users of this project, want to know how we can get a new owner / 
developer assigned to this account.


JPlease let us know what we need to do to accomplish this.

Thank you,

Patrick Goupell




I got the following response:

--

Hello Patrick,

Thank you for reaching out to GitLab.com support. I'm so sorry for your 
loss and understand this must be a difficult time. We would like to 
assist in moving your project forward but also need to respect the 
security and privacy standards we have in place.


While we cannot make account changes without legal intervention in lieu 
of a request by the account owner, you can however fork the project(s) 
into a new namespace since they are public. This will be the quickest 
and easiest way forward.


Please let us know if you have any additional questions.

Thanks,

Amanda Rueda
GitLab, Inc.

---


Fred,

Was there a message from Martin's family that they had found some login 
usernames / passwords for the ms projects?


Do we want to fork the project or try some other solution?

Patrick

___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] regression bug identified, how do we get it fixed.

2019-01-28 Thread Patrick Goupell


On 1/27/19 7:00 AM, fredvs wrote:

Hello Pat.

Huh, I am (terribly) curious, is it possible to give code of the problem?



My test project works.  The main project does not work.

It has multiple forms and datamodules and is rather large.

I will continue to try it out from time to time.  But for now it works.



___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Destiny of Martin's projects

2019-01-26 Thread Patrick Goupell


On 1/24/19 7:33 AM, fredvs wrote:

Hello Alexey.

Thanks to take care about MSE projects.

Like I explained before, I am volunteer to help the maximum I can.

But, sadly, I am not a Git guru and have difficult access to Internet.

My science about GitHub resume to 3 commands:

$ git add --all
$ git commit --all
$ git push --all

For me the simpler would be that a git-guru take control of Martin site and,
like I do for other project, when I have something to propose, from my
cloned GitHub site I do a "Pull Request".

But, like I said, I am not a Git-guru so I am totally open for all
propositions/trick.



Fred,

Do you hve login username / password info for the accounts at giylab - 
https://gitlab.com/mseide-msegui, sourceforge - 
https://mseide-msegui.sourceforge.io/ and the mailing list?


We should have more than one person with access to the accounts.

I am willing to volunteer for that.  If a third or fourth person wants 
to also be a keeper of the keys speak up.


This is not meant that you would be a maintainer of the software.  It is 
just to prevent us from getting locked out of the accounts if only one 
person has login access.


Patrick





___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] regression bug identified, how do we get it fixed.

2019-01-26 Thread Patrick Goupell



On 1/25/19 4:45 PM, fredvs wrote:

Hello Pat.

Did you get it ?

Fre;D




No, I havn't found the problem yet.

The problem only happens with component objects created in code. If the 
.value property is no set the error occurs.


The created objects are string displays so I set the .value property to 
a blank space and that fixed the problem.


Will try to find it as time goes on.



___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] MseUniverse

2019-01-25 Thread Patrick Goupell


On 1/25/19 5:48 AM, mohamed hamza wrote:

Hi Patrick,

Showing it as form gives ' Unresolved in teditpage1fo   to mainmo.ds1
Do you wish to search .. ?'

This message is followed by an other : unresolved references to mainmo.ds1

In Fact there is not ds1 in mainmo.pas  ?

Med




Did y9u see my follow up post with the open *.pas files and *.mfm show 
as form?


___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] MseUniverse

2019-01-24 Thread Patrick Goupell


On 1/24/19 1:20 PM, mohamed hamza wrote:

Hi all,

   I found a sample prj  written by Martin:

mseuniverse -- /samples/forms/formintabpage.  This project works ( of 
couse).


I wanted to  add some enhancements but I can not open the 
editpage1form.mfm.


I want to know if you have the same problem?


Open the project


right click and open the foloowing files:


main.pas, baseeditform.pas, basetabsform.pas, editform.pas, click cancel 
for any popup messages



In the right panel of the editor form you should now see the just opened 
files.  Expand the panel if you cannot see the full file name.



right click on the *.mfm files and select show as form.


That should get you going.

___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] MseUniverse

2019-01-24 Thread Patrick Goupell


On 1/24/19 1:20 PM, mohamed hamza wrote:

Hi all,

   I found a sample prj  written by Martin:

mseuniverse -- /samples/forms/formintabpage.  This project works ( of 
couse).


I wanted to  add some enhancements but I can not open the 
editpage1form.mfm.


I want to know if you have the same problem?

In what way can you not open the mfm file?  Cany you do a right click 
and select show as form?



Patrick

___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Destiny of Martin's projects

2019-01-02 Thread Patrick Goupell


On 1/2/19 4:02 AM, Alexey Loginov wrote:


Needs to copy http://www.msegui.com/ first or to have a control on
domain, hosting


msegui.com is my domain.  I host it on one of my servers.

Patrick



___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] regression bug identified, how do we get it fixed.

2018-12-31 Thread Patrick Goupell

On 12/31/18 6:18 AM, fredvs wrote:

Did you explore git-commits to find after what commit it appended?

I will try to work thru the commit history to find when the problem 
started.



___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] regression bug identified, how do we get it fixed.

2018-12-30 Thread Patrick Goupell

Hello All,

I have an application last compiled a couple of years ago.  It worked fine.

Recompiled it recently. It gets a segmentation fault error now.

I have traced the problem to the kernel/msegui.pas:constructor 
twidget.createandinit procedure.


The segmentation fault occurs when the component is to be displayed.  if 
the created component has the .value  property set it does NOT segment 
fault.  If the component .value property is NOT set (is null) it DOES 
segment fault.


I have a test project that shows this behavior.  The stack trace shows 
multiple calls to paint, then dopaint, then dopaintforegroud  All these 
calls show a value for the this= parameter.


the dopaintforeground calls getglyphheight with a this= parameter value 
of 0x0.  Obviously not correct.


At some point Martin must have changed the way the msegui unit works.  I 
don't have the skill level to solve this problem.  Can someone help?


Thank you

Patrick


___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Destiny of Martin's projects

2018-12-28 Thread Patrick Goupell


On 12/28/18 9:16 AM, Graeme Geldenhuys wrote:


I don't mind contacting Gitlab and explaining the situation and asking
for access to the account. Then when somebody else steps up to take the
lead role in MSEide+MSEgui, I'll hand over the Gitlab account. If all in
agreement, I'll go ahead with this in a day or two.



I agree.  Perhaps a second person on the account also.

Patrick



___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Destiny of Martin's projects

2018-12-28 Thread Patrick Goupell



On 12/28/18 8:40 AM, Graeme Geldenhuys wrote:


@Fred:
Do you have commit access to the core MSEide+MSEgui project? Or only to
MSEUniverse?  Does anybody else have commit access to the MSEide+MSEgui
core project?



I doubt if anyone other than Martin had commit acces.

Perhaps someone could ask Martin's family if anyone has enough computer 
knowledge to log onto his coputer and hopefully access the gitlab 
account and add some new people to the account.


Patrick



___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Destiny of Martin's projects

2018-12-28 Thread Patrick Goupell


On 12/28/18 6:54 AM, fredvs wrote:

Hello.

I see that Patrick Goupell, Mohamed Hamza and me are members of MSE project.

Do you agree to lead MSE project?

Of course if somebody else want to join us, he is more than welcome.

And all advices are also welcome.

Fre;D



-


I am a low / intermediate level programmer and do not have the skill set 
required.  So I don't think I would be a good choice.


Unfortunagely I think the project will sit as is unless someone outside 
of our group comes forward.  After all, if we had the time / skills / 
temperament to work / lead the project we would have volunteered to help 
Martin in the past.


I don't really recall anyone offering to heflp maintain mseide+msegui.  
Unless they did volunteer but Martin declined the offer.


Patrick



___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] To Martin family.

2018-12-26 Thread Patrick Goupell



Does anyone know how old Martin Was?



___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Need Help

2018-12-26 Thread Patrick Goupell



On 12/26/18 6:03 AM, fredvs wrote:

Last week I did sent a message to his private email.

Bu no answer (and it's not his habit).

I hope everything is ok.

Does he have a facebook or other social media account that could be 
checked for activity?




___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Need Help

2018-12-25 Thread Patrick Goupell

On 12/25/18 2:55 PM, Krzysztof wrote:

I'm also worrying about him



The drawback of a single developer project.



___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] Need Help

2018-12-24 Thread Patrick Goupell

Hello Martin,

Are you here?

I need some help.

Patrick



___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] stringgrid multi select how to?

2018-12-23 Thread Patrick Goupell

What I want is the user viewing the string grid dowes a left click on a row.

Then the user presses and holds (either) the shift key or the control key.

And then left clicks on one (shift key held) or more (control key held) 
row(s) to get a range (shift) of rows or disjoint (control) row(s) selected.


The user would then rigth click on any selected row to get a popup menu 
of available actions.


This would be similar to a file/directory list and selecting different 
files to copy / delete from a folder / directory.


Patrick



___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] stringgrid multi select how to?

2018-12-22 Thread Patrick Goupell

I am trying to get a string grid to multiselect rows.

I cannot find the correect optinos to set to do it.

What options / flags do I need to set / unset for a multiselect row 
stringgrid?


How do I know if the stringgrid is multiselected or only one row is 
selected?


Thank you

Patrick




___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] ossible regression, mseimplicitedit.pas, function poschanged

2018-12-21 Thread Patrick Goupell


On 12/21/18 6:49 AM, fredvs wrote:

Hello.

Did you try with a old fpc version (like 2.6.4) ? --->

ftp://www.hu.freepascal.org/pub/fpc/dist/2.6.4/

No news of Martin ?



I used fpc version 2.6.4, but that doe s not explain why there were no 
*.pas files in the fpccompatibility folder.


Anyway, I have changed the program, replacing all tcomponent.create with 
tcomponent.createandinit.  That seems to have fixed that problem.


But I have a new problem now.  So consider this problem closed and if I 
cannot solve the new problem I will send a new post.


Martin seems to be missing in action.

Patrick



___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] ossible regression, mseimplicitedit.pas, function poschanged

2018-12-20 Thread Patrick Goupell





I guess I can pull some of the old git code and see if I can determine
when/where it started to occur.


trying to figure this problem out.

Got a clone of the mseide-msegui source.

Did a git checkout 2_8_6 branch as I think this compiled my project in the past.

When I try to compile / build my test project there is an error for a missing 
mclasses unit in fpccompatibility.

When I check the source folder mseide-msegui/lib/common/fpccompatibility ther 
are only *.o *.ppu files.  NO *.pas files.

There are *.pas files in the other folders, so why not in the fpccompatibility 
folder?

I was under the impression that the different branches contained the full souce 
of a project at a specific point in time.

Suggestions?



___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] ossible regression, mseimplicitedit.pas, function poschanged

2018-12-17 Thread Patrick Goupell



On 12/17/18 3:42 PM, fredvs wrote:

It seems to get creaetd, but where is it?

Huh, indeed strange...

Do you absolutely need to dynamically create the component ?



The components are created as needed and vary based upon what functions 
the user selects.


As I said, this used to work.

I guess I can pull some of the old git code and see if I can determine 
when/where it started to occur.




___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] ossible regression, mseimplicitedit.pas, function poschanged

2018-12-17 Thread Patrick Goupell

On 12/17/18 10:51 AM, fredvs wrote:


makes this:


Fre;D




Almost, but not exact.

There should be a stringedit component in the contacts tab page.

It seems to get creaetd, but where is it?

Still need to do some more testing.

The project used to work.  Lst compiled a couple of years ago.



___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] ossible regression, mseimplicitedit.pas, function poschanged

2018-12-13 Thread Patrick Goupell

Hello Martin,

Did you get my test project I sent on 2018-12-04?

Have you had a chance to examine it?

Thank you

Patrick

___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] ossible regression, mseimplicitedit.pas, function poschanged

2018-12-04 Thread Patrick Goupell

Finally got a test project to reproduce the problem.

Tried to attached a zip file but it got rejected.

How do I get the test project to you?

Patrick



___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] ossible regression, mseimplicitedit.pas, function poschanged

2018-11-28 Thread Patrick Goupell

Hello Martin,

rebuilding a project last compiled 1 or 2 years ago.

Getting a segmentation fault in mseimplicitedit.pas, function 
poschanged, line 2381 of version 4.7  This was probably last compiled 
under version 3.8 or maybe 4.0 (or earlier, I don't really know when)


This is occurring during program startup in the form oncreated event.  
The widget being created is not visisble at this time.



--
Patrick Goupell

Are you free?  Find out at http://www.sedm.org/
Income taxes?  Find out at http://www.whatistaxed.com



___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Tabs

2018-10-22 Thread Patrick Goupell


On 10/22/18 1:27 PM, mohamed hamza wrote:

How to show the first page just after creating tabwidget?

I tried :

procedure tbasetabsfo.Oncreated(const sender: TObject);
begin
ttabwidget1.ActivePageIndex:=0;
ttabwidget1[0].show();
//  >>ttabwidget[0].activate()  no success?
end;

Med.

Ps  :Sorry if this has been covered before but is is difficult to search
inside text of threads?


___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


in the object inspector click on the ttabwidget, press F11, set the 
activepageindex to 0
or in the oncreated event set the ttabwidget.activepageindex := 0;

should do it.

___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] stringgrid / fixcols

2018-08-21 Thread Patrick Goupell

Ignore, I figured it out.


On 08/21/2018 08:05 PM, Patrick Goupell wrote:
in a stringgrid I can set datacols by coding "sgFix.datacols [i][j] := 
'some text;"


I cannot figure out how to set a value into the "fixcols" data cell.

What would be the correct pascal coding to set a text value into fixed 
column 1 at datacols row 5?


Thank you.




--
Patrick Goupell

Are you free?  Find out at http://www.sedm.org/
Income taxes?  Find out at http://www.whatistaxed.com


--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] stringgrid / fixcols

2018-08-21 Thread Patrick Goupell
in a stringgrid I can set datacols by coding "sgFix.datacols [i][j] := 
'some text;"


I cannot figure out how to set a value into the "fixcols" data cell.

What would be the correct pascal coding to set a text value into fixed 
column 1 at datacols row 5?


Thank you.


--
Patrick Goupell

Are you free?  Find out at http://www.sedm.org/
Income taxes?  Find out at http://www.whatistaxed.com


--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] tstringgird individual cell color

2018-08-10 Thread Patrick Goupell




On 08/10/2018 01:41 AM, Martin Schreiber wrote:


It is possible to set a color to a specific row by setting
.rowcolors[].
An other option is to set [][].selected which shows
[].colorselect.
Individual cell colors must be set in
.datacols[].onbeforedrawcell().
"
procedure tmainfo.befdrawcellev(const sender: tcol; const canvas: tcanvas;
var cellinfo: cellinfoty; var processed: Boolean);
begin
  if cellinfo.cell.row = 2 then begin
   cellinfo.color:= cl_green;
  end;
end;
"
Martin

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


using sgLog.rowcolors [i] := cl_green gives error "List index (0) out of 
bounds."


The grid has one row and i is 0;

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] tstringgird individual cell color

2018-08-09 Thread Patrick Goupell
I can set a column of a stringgrid to a specific color using 
tstringgrid.datacols.cols [n].color := cl_green;


Is it possible to set a specific column/row only to a color?  What is 
the correct pascal coding to do it (I haven't been able to get it right 
yet)?



--
Patrick Goupell

Are you free?  Find out at http://www.sedm.org/
Income taxes?  Find out at http://www.whatistaxed.com


--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] tdbenumedit*

2018-07-18 Thread Patrick Goupell

use component.visible := true/false




On 07/18/2018 11:33 AM, mohamed hamza wrote:


Is there any option to make button of tdbenumedit* visible or not ?


I want to  make it visible only when the datasource is in edit, 
insert  or filter mode.



Regards.


Med



--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot


___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


--
Patrick Goupell

Are you free?  Find out at http://www.sedm.org/
Income taxes?  Find out at http://www.whatistaxed.com

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] compile

2018-04-13 Thread Patrick Goupell



On 04/13/2018 09:12 AM, Martin Schreiber wrote:


You need to install the devel packages. On Debian afaik build-essential.

Martin



On Debian Stretch I installed the following:
sudo apt-get install build-essential libx11-dev gdb

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] dateutils missing

2018-03-10 Thread Patrick Goupell

Did a fresh clone of mseide-msegui

git clone https://gitlab.com/mseide-msegui/mseide-msegui.git
Cloning into 'mseide-msegui'...
remote: Counting objects: 80807, done.
remote: Compressing objects: 100% (59/59), done.
remote: Total 80807 (delta 29), reused 0 (delta 0)
Receiving objects: 100% (80807/80807), 31.85 MiB | 403.00 KiB/s, done.
Resolving deltas: 100% (61896/61896), done.
Checking connectivity... done.

then a compile and got an error

cd mseide-msegui
fpc -B -Fulib/common/* -Fulib/common/kernel/linux apps/ide/mseide.pas
msesysintf1.pas(69,2) Fatal: Can't find unit dateutils used by msesysintf1
Fatal: Compilation aborted
Error: /usr/bin/ppc386 returned an error exitcode

--
Patrick Goupell

Are you free?  Find out at http://www.sedm.org/
Income taxes?  Find out at http://www.whatistaxed.com


--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] mseuniverse -> docs -. fpdoc -> msegui-docs-project.xml

2017-11-23 Thread Patrick Goupell

Hello Graeme (and others),

I am trying to do some fpdoc files.  This is my first attempt at using 
fpdoc.


I created a new project.xml file using your msegui-docs-project.xml as a 
base.


I removed all  entries and created a new one.  The only 
 entry is this:




 (which 
contains)





Class definitions for mseide-msegui
mclasses.pas is a fork of FPC classes.pas where only internal 
things have been  changed. The fork was necessary because the FPC team 
didn't allow access to private fields and procedures. The API is the 
same as the http://www.freepascal.org/docs-html/rtl/classes/index.html 
original.




base class for all object
base class for all objects



Destroy the object
Destroy the object



the base for all components
the base for all components



Create the component
Create the component








When I generate the project documentation is created for tpersistent and 
tcompnent.  However, the tpersistent.Destroy element does NOT have the 
"Destroy the object" and tcomponent.Create does NOT have the "Create the 
Component" for their descriptions.


If I change my project file to have "tpersistent.Destroy" and 
"tcomponent.Create" then the Destroy/Create descriptions show.


Is there a way for the Destroy element descriptions to show up for both 
the tpersistent and tcomponent elements or do I have to create separate 
entries (tpersistent.Destroy and tcomponent.create).


Seems like a lot of duplication as tpersistent is an ancestor of tcomponent.

Or is my understanding about fpdoc wrong?

Patrick


--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] msegit classtype tdispo not found

2017-11-09 Thread Patrick Goupell

created a mseuniverse folder and did a git init

pulled the mseuniverse and tried to open the msegit project.

Got error messages:  classtype tdispo not found.  also message about 
branchform.mfm not accessable.


running mseide version 4.4.1

--
Patrick Goupell

Are you free?  Find out at http://www.sedm.org/
Income taxes?  Find out at http://www.whatistaxed.com


--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] display images

2017-11-01 Thread Patrick Goupell

I see this message finally showed up.

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] display images

2017-11-01 Thread Patrick Goupell



On 11/01/2017 09:45 AM, fredvs wrote:

PS: If somebody has already deal with id3v3 image tag, any advice is more
than welcome.

Fre;D



Do you mean ID3 versino 2.3.0?

I use ID3Lib from this web site: www.muetze1.de.

It is in free pascal.  I have ported a version that runs under linux.

Patrick



--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] display images

2017-11-01 Thread Patrick Goupell


On 11/01/2017 09:45 AM, fredvs wrote:


PS: If somebody has already deal with id3v3 image tag, any advice is more
than welcome.

Fre;D



Do you mean id3 version 2.3.0?

I use id3list from this website:  www.muetze1.de.

It is in free pascal.  I have ported it to run under linux.  I use it 
for tag editing my music library.


Patrick

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] test for lost message

2017-11-01 Thread Patrick Goupell

I sent a reply to list but it did not show up there.

So I am sending this test message to see if it arrives safely.

Patrick



--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] tlayouter on Linux Mint

2017-08-02 Thread Patrick Goupell



It also works on Mint 18.2-MATE.

Again the the question: can anybody reproduce the problem?

Martin



What video chip / card / driver is being used?  I hve had problems with 
nvidea chips in  the past and it was always the driver.


--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
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 regression? Mysql

2017-02-22 Thread Patrick Goupell
fixed, thank you.


On 02/22/2017 12:38 PM, Martin Schreiber wrote:
> On Wednesday 22 February 2017 16:32:11 Patrick Goupell wrote:
>> running debian jessie, 64 bit, fpc 3.0.0, mseide 4.4.1
>>
>> Tried to compile an old project for mysql database.
>>
>> When trying to connect to the database the databasename property gets
>> truncated to a single (leftmost) character.  Somewhere in the ide  code,
>> not the database objectr itself.
>>
> Please try again with git master 07536f9c79711cba64d83b1051739fec436063e6.
>
> Martin
>
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, SlashDot.org! http://sdm.link/slashdot
> ___
> mseide-msegui-talk mailing list
> mseide-msegui-talk@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk
>

-- 
Patrick Goupell

Are you free?  Find out at http://www.sedm.org/
Income taxes?  Find out at http://www.whatistaxed.com


--
Check out the vibrant tech community on one of the world's most
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] Possible regression? Mysql

2017-02-22 Thread Patrick Goupell
running debian jessie, 64 bit, fpc 3.0.0, mseide 4.4.1

Tried to compile an old project for mysql database.

When trying to connect to the database the databasename property gets 
truncated to a single (leftmost) character.  Somewhere in the ide  code, 
not the database objectr itself.

Tried a different mysql project.  Same result


-- 
Patrick Goupell

Are you free?  Find out at http://www.sedm.org/
Income taxes?  Find out at http://www.whatistaxed.com


--
Check out the vibrant tech community on one of the world's most
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] file copy to clipboard for cut/copy/paste

2016-12-03 Thread Patrick Goupell
Hello,

Does an mseide-msegui application support a file copy/cut to clipboard 
and then a non mseide-msegui (file manager) application paste from 
clipboard?

If so, briefly expain.

Thank you.

Patrick

--
Check out the vibrant tech community on one of the world's most 
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] popup menu

2016-12-03 Thread Patrick Goupell

On 12/03/2016 09:18 AM, Martin Schreiber wrote:
>
> There is no code. Simply select the popup-menu component in
> objectinspector into tstringgrid.popupmenu property. Please do not use
> onpopup event.
>

So that is where I was going wrong.  It usre is simple once you see it 
in action.

--
Check out the vibrant tech community on one of the world's most 
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] popup menu

2016-12-02 Thread Patrick Goupell
Is ther a popup menu demo in mseuniverse I cannot find one)?

Could someone provide a simple right click popup menu example?

Thank you.

Patrick



--
Check out the vibrant tech community on one of the world's most 
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] tlistview scrolling

2016-11-26 Thread Patrick Goupell


On 11/26/2016 11:45 AM, Martin Schreiber wrote:
>
> Please set tlistview.options lvo_horz. The listitems then will be placed
> horizontally row by row instead vertically column by column.
>

Perfect.  Thank you.

--
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] tlistview scrolling

2016-11-26 Thread Patrick Goupell
Hello,

Can the tlistview scrolling be changed from horizontal (left/right) to 
verticle (up/down)?

Thank you.

Patrick


--
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] tstringgrid editor popup disable

2016-11-14 Thread Patrick Goupell

On 11/14/2016 10:47 AM, Martin Schreiber wrote:
>
> Please try again with git master ac9590541cfbcb1e8e7791340bf4f753a8b9868a.
> tcustomstringcol.optionsedit1 oe1_autopopupmenu was broken.
>

Fixed.  Thank you.

--
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] tstringgrid editor popup disable

2016-11-14 Thread Patrick Goupell
I guess I did not figure it outm so I need some help with this.


Patrick

--
Developer Access Program for Intel Xeon Phi Processors
Access to Intel Xeon Phi processor-based developer platforms.
With one year of Intel Parallel Studio XE.
Training and support from Colfax.
Order your platform today. http://sdm.link/xeonphi
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] tstringgrid editor popup disable

2016-11-14 Thread Patrick Goupell
Ignore, I figured it out.


On 11/14/2016 09:18 AM, Patrick Goupell wrote:
> Hello,
>
> I set an onpopup event for a tstringgrid.
>
> The handler workks and I get my popup but after I exit my onpopup code
> the stringgrid default editor popup menus shows.
>
> How can I disable the default stringgrid editor popup for a specific
> stringgrid component?  I tried the *_autopopupmenu option set to false
> but still get the unwanted popup.
>

-- 
Patrick Goupell

Are you free?  Find out at http://www.sedm.org/
Income taxes?  Find out at http://www.whatistaxed.com


--
Developer Access Program for Intel Xeon Phi Processors
Access to Intel Xeon Phi processor-based developer platforms.
With one year of Intel Parallel Studio XE.
Training and support from Colfax.
Order your platform today. http://sdm.link/xeonphi
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] tstringgrid editor popup disable

2016-11-14 Thread Patrick Goupell
Hello,

I set an onpopup event for a tstringgrid.

The handler workks and I get my popup but after I exit my onpopup code 
the stringgrid default editor popup menus shows.

How can I disable the default stringgrid editor popup for a specific 
stringgrid component?  I tried the *_autopopupmenu option set to false 
but still get the unwanted popup.

-- 
Patrick Goupell

Are you free?  Find out at http://www.sedm.org/
Income taxes?  Find out at http://www.whatistaxed.com


--
Developer Access Program for Intel Xeon Phi Processors
Access to Intel Xeon Phi processor-based developer platforms.
With one year of Intel Parallel Studio XE.
Training and support from Colfax.
Order your platform today. http://sdm.link/xeonphi
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] TtabWidget

2016-10-15 Thread Patrick Goupell

On 10/15/2016 02:57 PM, mohamed hamza wrote:
> I mean ttabpage.enabled:=false;
>
> In fact,  I do not want  the user select a forbiden  ttabpage, But I can do 
> it by code for example ttabpage.activepageindex:=n;  ( where n is the 
> forbiden page)?
> 
What are you trying to accomplish with a forbidden page?

Is it information that the user needs to constantly see?  Or just for 
certain conditions / uses?

If you do not want the user to select a "forbidden" page then set the 
invisible property to true?  That way the user does not see the 
"forbidden" page and cannot select it.

When the condition(s) are present to show the page then the program code 
can make the page visible again: ttabpage.invisible := false;

--
Check out the vibrant tech community on one of the world's most 
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] TtabWidget

2016-10-15 Thread Patrick Goupell

On 10/15/2016 01:32 PM, mohamed hamza wrote:
> But what happened if ttappage.taborder - 1 is diabled;
>
> 

By "diabled" are you referring to the invisible and visible properties?

If you are doing this in code then the program must know if it is valid 
to make the page visible.

If it is valid in program code to show the tabpage then set the 
ttabpage.visible := true and ttabpage.invisible := false
before setting the ttabwidget.activepageindex := ttabpage.taborder - 1;

Patrick

--
Check out the vibrant tech community on one of the world's most 
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] TtabWidget

2016-10-15 Thread Patrick Goupell

On 10/15/2016 01:03 PM, mohamed hamza wrote:
> Hi Martin,
>
>  I know that we can disable forbiden ttabpage to be selected . But 
> sometimes we want to change the active page by code,for example, by setting 
> activePageIndex?
> Is it possible?
>

I have done the following to select a new active page:

ttabwidget.activepageindex := ttappage.taborder - 1;

--
Check out the vibrant tech community on one of the world's most 
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] stringgrid behavior

2016-10-03 Thread Patrick Goupell

On 10/03/2016 10:07 AM, Patrick Goupell wrote:
>
> Thanks for the explanation.
>
> I will modifiy the program a little to remove focus from teh stringgrid
> and watch the result.
>

By removing focus from the stringgrid before calling the load procedure 
it loads without the blank row.

Sometimes there are just too many component options to keep track of.

--
Check out the vibrant tech community on one of the world's most 
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] stringgrid behavior

2016-10-03 Thread Patrick Goupell

On 10/03/2016 10:09 AM, Martin Schreiber wrote:
>
> Looks as designed. og_autofirstrow adds an empty row to an empty grid if it
> gets focused. If it looses focus the empty row will be removed. The purpose
> is to allow editing an empty grid without the necessity to manually add a row
> first. The options og_autoappend and og_appendempty belong to the same group.
>

Thanks for the explanation.

I will modifiy the program a little to remove focus from teh stringgrid 
and watch the result.

--
Check out the vibrant tech community on one of the world's most 
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] stringgrid behavior

2016-10-03 Thread Patrick Goupell

On 10/03/2016 09:48 AM, Martin Schreiber wrote:
>
> Please explain. There should be no randomness.
>
> Martin
>

I use this procedure to load the stringgrid (see end of post)

It is called in the form oncreated event handler.

There is no blank first row.

If the following sequence is performed then there is a blank row in the 
stringgrid.

a row is clicked for selection.
a delete button is pressed to delete the selected row.
the record is deleted from the database.
the DolbLookupsTypesOnChange procedure is called.  A blank row is shown 
in the stringgrid.



---


procedure tmainfo.DolbLookupsTypesOnChange(const sender: TObject;
 const Connect : boolean);
var
 s : array [0..1] of msestring;
 sType : string;
 sQuery : msestring;

begin
 sType := lbLookupsTypes.value;
 sQuery := 'Select * from lookups where lupType = '''
 + sType + '''  order by lupValue';

 with commonmo.qryReadOnly
 do begin
 sql.clear;
 params.clear;
 sql.add (sQuery);
 end;

 if Connect = true
 then commonmo.dbAppointments.connected := true;
 commonmo.qryReadOnly.active := true;

 // load string grid
 sgLookupsValues.rowcount := 0;
 sgLookupsValues.beginupdate;

 while commonmo.qryReadOnly.eof = false
 do begin
 with commonmo.qryReadOnly
 do begin
 s [0] := fieldbyname ('lupValue').asstring;
 s [1] := fieldbyname ('lupId').asstring;
 sgLookupsValues.appendrow (s);
 next;
 end;
 end;

 sgLookupsValues.endupdate;

 commonmo.qryReadOnly.active := false;
 if Connect = true
 then commonmo.dbAppointments.connected := false;

 sgLookupsValues.row := 0;
 seLookupsValue.value := sgLookupsValues.datacols [0] [0];
end;

--
Check out the vibrant tech community on one of the world's most 
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] stringgrid behavior

2016-10-03 Thread Patrick Goupell

On 10/03/2016 09:12 AM, Martin Schreiber wrote:
>
> I can not extract the test program:
> "
> tar: This does not look like a tar archive
> "
> I assume that t*grid.optionsgrid og_autofirstrow is set and the grid is
> focused?
>
> Martin
>
I see the option now.

Sometimes there is an  auto first row and sometimes not.

I will turn the option off.

--
Check out the vibrant tech community on one of the world's most 
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] stringgrid behavior

2016-10-03 Thread Patrick Goupell

Hello Martin,

When I add a stringgrid object to my form and do not populate it it 
shows a blank row after  the form is created.


If I set the rowcount := 0 the stringgrid still show 1 blank row,

Is this the norrmal expected behavior?

Running mseide/msegui 4.2.1 on 64 bit debian jessie.

Attached is a test program.

--
Patrick Goupell

Are you free?  Find out at http://www.sedm.org/
Income taxes?  Find out at http://www.whatistaxed.com



stringgrid.tar
Description: Unix tar archive
--
Check out the vibrant tech community on one of the world's most 
engaging tech sites, SlashDot.org! http://sdm.link/slashdot___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] key_ definitinos

2016-09-25 Thread Patrick Goupell
Where are the key_??? defined?  ie key_pageup, key_pagedown


-- 
Patrick Goupell

Are you free?  Find out at http://www.sedm.org/
Income taxes?  Find out at http://www.whatistaxed.com


--
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] calendardatetimeedit

2016-09-04 Thread Patrick Goupell

On 09/02/2016 01:38 PM, Patrick Goupell wrote:
> Hello,
>
> I want a time edit on a form.  I am trying the tcalendardatetimeedit and
> setting the kind property to dtk_time.
>
> How do I get a time (clock) display instad of a calendar?
>
Anyone useing the tcalendardatetime control for a time only edit?

--
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] calendardatetimeedit

2016-09-03 Thread Patrick Goupell
Hello,

I want a time edit on a form.  I am trying the tcalendardatetimeedit and 
setting the kind property to dtk_time.

How do I get a time (clock) dissplay instad of a calendar?

Patrick


--
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] First mysql windows client to linux mysql server

2016-09-02 Thread Patrick Goupell

On 09/02/2016 11:36 AM, Martin Schreiber wrote:
>
> AFAIK libmysql.dll.
>

Thanks,

All connected and working.

--
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] First mysql windows client to linux mysql server

2016-09-02 Thread Patrick Goupell
Hello All,

The subject line says it.

What do I need to install on the windows client computer to connect to a 
linux mysql server?

I see various packages on the mysql website 
(http://dev.mysql.com/downloads/) for download.  Would the mysql 
connector be the correct package to install?

Do I use a tmsemysqlconnecton just as I would for a linux client?

Is there anything else I should be aware of?

Patrick


--
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] version 4.2.1 cross compile to windows

2016-08-31 Thread Patrick Goupell


On 08/31/2016 10:22 AM, Martin Schreiber wrote:
> On Wednesday 31 August 2016 15:36:30 Patrick Goupell wrote:

Yes, I develop on linux and cross compile for windows.

Patrick

--
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] version 4.2.1 cross compile to windows

2016-08-31 Thread Patrick Goupell


On 08/31/2016 01:43 AM, Martin Schreiber wrote:
> On Wednesday 31 August 2016 01:22:46 Patrick Goupell wrote:
>> Hello Martin,
>>
>> Application builds ok for linux 32 and 64 bit.
>>
>> If I try to cross compile for windows 64 bit I get this error:
>>
>> mselibc.pas(5,14) Fatal: Can't find unit initc used by mselibc
>>
>> If I try to cross compile the same program for windows 32 bit I get
>> these errors:
>>
>> mselibc.pas(1112,1) Error: Forward type not resolved "Ino_t"
>> mselibc.pas(1112,1) Error: Forward type not resolved "Gid_t"
>> mselibc.pas(1112,1) Error: Forward type not resolved "Mode_t"
>> mselibc.pas(1112,1) Error: Forward type not resolved "Uid_t"
>> mselibc.pas(1112,1) Error: Forward type not resolved "Blksize_t"
>> mselibc.pas(1112,1) Error: Forward type not resolved "Blkcnt_t"
>>
> Unit mselibc can not be used on Windows. Why do you need it?
>
> Martin
>
I assume it was included for when I compile to linux.

Should the mselibc include have a compiler directive to check for 
linux/windows target?

--
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] version 4.2.1 cross compile to windows

2016-08-30 Thread Patrick Goupell
Hello Martin,

Application builds ok for linux 32 and 64 bit.

If I try to cross compile for windows 64 bit I get this error:

mselibc.pas(5,14) Fatal: Can't find unit initc used by mselibc

If I try to cross compile the same program for windows 32 bit I get 
these errors:

mselibc.pas(1112,1) Error: Forward type not resolved "Ino_t"
mselibc.pas(1112,1) Error: Forward type not resolved "Gid_t"
mselibc.pas(1112,1) Error: Forward type not resolved "Mode_t"
mselibc.pas(1112,1) Error: Forward type not resolved "Uid_t"
mselibc.pas(1112,1) Error: Forward type not resolved "Blksize_t"
mselibc.pas(1112,1) Error: Forward type not resolved "Blkcnt_t"


Patrick

--
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] findtagwidget

2016-08-30 Thread Patrick Goupell
Hello Martin,

I have an application I developed under version 4.0.

I tried to recompile it under version 4.2.1 and I get the following error:

common.pas(1678,30) Error: identifier idents no member "findtagwidget"

ffor a ttabpage widget.

Did it move or get renamed?

Patrick

--
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] debugger question

2016-08-28 Thread Patrick Goupell
I am developing an app that requires command line parameters.

is there a way to pass the parameters thru the debugger to the program?

Thank youio.

Patrick



--
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] database questions

2016-08-25 Thread Patrick Goupell
On 08/25/2016 01:09 AM, Martin Schreiber wrote:
>
>> tsqlresult
>>
> Used to encapsulate a SQL statemend which returns a result set, normally a
> SELECT statement. With less overhead than TmseSQLQuery. Use it if you merely
> need to fetch the data.
>

After I set the tsqlresult.active to true how do I access the returned 
database columns?

The sqlquery and sqlstatement have a fieldbyname('column').astype 
function but the sqlresult does not (aat least when I try to com ile on 
mseide  version 4.2).

--
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] database questions

2016-08-24 Thread Patrick Goupell
Hello Martin,

Could you give a brief explanation of when to use the following database 
components - benefits, advantages, disadvantages

tmsesqlquery
tsqlstatement
tsqlresult

Thank you

Patrick


--
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] tenumeditdb

2016-08-20 Thread Patrick Goupell



On 08/20/2016 07:06 AM, mohamed hamza wrote:

Hi Martin,
http://news.gmane.org/gmane.comp.ide.mseide.user was a good guide to 
mseide-msegui.  It's a pity to lost it ?


Martin,

Did the news reader archive ink change?

The link I had no longer works.

*http://news.gmane.org/gmane.comp.ide.mseide.user*

*Patrick*
--
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] excel spreadsheet read library

2016-07-16 Thread Patrick Goupell
Would it need any Lazarus components to run I guess what I meant to ask.

I want it for a non gui application so I will  give it a try.

On 07/16/2016 05:10 AM, Graeme Geldenhuys wrote:
> On 2016-07-15 18:24, Patrick Goupell wrote:
>> I found FPSpreadsheet which is a Lazarus library.
> Patrick, you seem to be a bit confused. Lazarus uses Free Pascal as the
> compiler. The language Lazarus is written in, and all components are in
> Object Pascal - the language the Free Pascal Compiler implements.
>
> Anyway, the FPSpreadSheet - the FP prefix suggests - "Free Pascal". ;-)
> The core of FPSpreadSheet is a non-GUI component as far as I know, so
> that can be used by any Free Pascal based application. Only the visual
> displaying of a spreadsheet is LCL (thus Lazarus) dependant.
>


--
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.http://sdm.link/zohodev2dev
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] excel spreadsheet read library

2016-07-15 Thread Patrick Goupell
Looking for a library to read an excel spreadsheet in free pascal.

I found FPSpreadsheet which is a Lazarus library.

Will this work in free pacal?

can it be ported easily?

Anybody know of a similar library for free pascal?

Thanks.

Patrick

--
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.http://sdm.link/zohodev2dev
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] stringgrid fixrow/datacols autowidth

2016-05-24 Thread Patrick Goupell


On 05/24/2016 09:43 AM, Martin Schreiber wrote:
>
> git master 1a882ecce13db8e155083d5c6c4db55f4afef725 has co1_autoheaderwidth
> and dco_noautowidth, please test.
>
> Martin
>
>

Success, looks great.  Thank you.

Patrick

--
Mobile security can be enabling, not merely restricting. Employees who
bring their own devices (BYOD) to work are irked by the imposition of MDM
restrictions. Mobile Device Manager Plus allows you to control only the
apps on BYO-devices by containerizing them, leaving personal data untouched!
https://ad.doubleclick.net/ddm/clk/304595813;131938128;j
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] stringgrid fixrow/datacols autowidth

2016-05-24 Thread Patrick Goupell

On 05/24/2016 09:07 AM, Martin Schreiber wrote:
>
> The problem is that captions are elements of fixrows not of datacols and there
> can be several fixrows. Maybe we can add co1_autoheaderwidth and individual
> overrides in Fixrows[n].Captions[m].Options.
>
> Martin

I will let you think about it for a while.

In teh meantime I will continue as it is now.

Patrick

--
Mobile security can be enabling, not merely restricting. Employees who
bring their own devices (BYOD) to work are irked by the imposition of MDM
restrictions. Mobile Device Manager Plus allows you to control only the
apps on BYO-devices by containerizing them, leaving personal data untouched!
https://ad.doubleclick.net/ddm/clk/304595813;131938128;j
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] stringgrid fixrow/datacols autowidth

2016-05-24 Thread Patrick Goupell
So I have to set the option on all fixrow items?  My app changes teh 
datacols.count during program execution.

Can it be at a hight level like the datacols.options1.co1_autocolwidth?



On 05/24/2016 03:36 AM, Martin Schreiber wrote:
> On Monday 23 May 2016 16:36:47 Martin Schreiber wrote:
>> On Monday 23 May 2016 14:38:37 Patrick Goupell wrote:
>>> I have a stringgrid that aautomatically sets the width to the cells data
>>> item width.
>>>
>>> If the fixrow caption is longer than the data width it gets cut off.
>>>
>>> Is there a way to have teh stringgrid use the greater of the 2, the
>>> fixrow caption width versus the datacols width?
>> Currently not, added to wishlist.
> git master 7f7110e37eee11480124b4cf8bbc4cd21c77c399 has
> T*Grid.FixRows[n].Captions[m].Options dco_autowidth, experimental, please
> test.
>
> Martin
>
> --
> Mobile security can be enabling, not merely restricting. Employees who
> bring their own devices (BYOD) to work are irked by the imposition of MDM
> restrictions. Mobile Device Manager Plus allows you to control only the
> apps on BYO-devices by containerizing them, leaving personal data untouched!
> https://ad.doubleclick.net/ddm/clk/304595813;131938128;j
> ___
> mseide-msegui-talk mailing list
> mseide-msegui-talk@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk
>

-- 
Patrick Goupell

Are you free?  Find out at http://www.sedm.org/
Income taxes?  Find out at http://www.whatistaxed.com


--
Mobile security can be enabling, not merely restricting. Employees who
bring their own devices (BYOD) to work are irked by the imposition of MDM
restrictions. Mobile Device Manager Plus allows you to control only the
apps on BYO-devices by containerizing them, leaving personal data untouched!
https://ad.doubleclick.net/ddm/clk/304595813;131938128;j
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] stringgrid fixrow/datacols autowidth

2016-05-23 Thread Patrick Goupell
I have a stringgrid that aautomatically sets the width to the cells data 
item width.

If the fixrow caption is longer than the data width it gets cut off.

Is there a way to have teh stringgrid use the greater of the 2, the 
fixrow caption width versus the datacols width?

If it is possible what options need to be set?

Thank you.

Patrick


--
Mobile security can be enabling, not merely restricting. Employees who
bring their own devices (BYOD) to work are irked by the imposition of MDM
restrictions. Mobile Device Manager Plus allows you to control only the
apps on BYO-devices by containerizing them, leaving personal data untouched!
https://ad.doubleclick.net/ddm/clk/304595813;131938128;j
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] TDrawgrid sort

2016-04-27 Thread Patrick Goupell


On 04/27/2016 08:56 AM, Krzysztof wrote:
>
>> Not supported. Is another flag necessary? ;-)
> That would be handy :)
>
>
Couldn't you use a column onclick event to call the header sort event?

Patrick

--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] TShellDirectoryView ?

2016-04-11 Thread Patrick Goupell
Sorry, I did not create such a thing.

On 04/11/2016 02:01 AM, Martin Schreiber wrote:
> On Friday 08 April 2016 23:26:16 Krzysztof wrote:
>> Hi,
>>
>> Is there control for showing directories tree (with custom folder
>> icon)? I'm looking at tfilelistview but I'm not sure if this is right
>> control. A lot of settings, maybe I missed something.
>>
> I now vaguely remember that Patrick made such a thing. Patrick, can you give a
> link please? I could not find it on msegui.com.
>
> Thanks Martin
>
> --
> Find and fix application performance issues faster with Applications Manager
> Applications Manager provides deep performance insights into multiple tiers of
> your business applications. It resolves application problems quickly and
> reduces your MTTR. Get your free trial! http://pubads.g.doubleclick.net/
> gampad/clk?id=1444514301=/ca-pub-7940484522588532
> ___
> mseide-msegui-talk mailing list
> mseide-msegui-talk@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk
>

-- 
Patrick Goupell

Are you free?  Find out at http://www.sedm.org/
Income taxes?  Find out at http://www.whatistaxed.com


--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial! http://pubads.g.doubleclick.net/
gampad/clk?id=1444514301=/ca-pub-7940484522588532
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] TShellDirectoryView ?

2016-04-08 Thread Patrick Goupell

Please post your question to the MSEgui forum on  the webstie.

Click on the Forum link.


On 04/08/2016 05:26 PM, Krzysztof wrote:
> Hi,
>
> Is there control for showing directories tree (with custom folder
> icon)? I'm looking at tfilelistview but I'm not sure if this is right
> control. A lot of settings, maybe I missed something.
>
> Regards
>
> --
> Find and fix application performance issues faster with Applications Manager
> Applications Manager provides deep performance insights into multiple tiers of
> your business applications. It resolves application problems quickly and
> reduces your MTTR. Get your free trial! http://pubads.g.doubleclick.net/
> gampad/clk?id=1444514301=/ca-pub-7940484522588532
> ___
> mseide-msegui-talk mailing list
> mseide-msegui-talk@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk
>

-- 
Patrick Goupell

Are you free?  Find out at http://www.sedm.org/
Income taxes?  Find out at http://www.whatistaxed.com


--
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial! http://pubads.g.doubleclick.net/
gampad/clk?id=1444514301=/ca-pub-7940484522588532
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Flat TRichButton - how to change "on mouse" frame?

2016-04-01 Thread Patrick Goupell



On 04/01/2016 05:52 PM, Krzysztof wrote:

BTW: Is there official full documentation for MSEgui classes?
Especialy for enums: options, optionsskin, optionswidget,
optionswidget1, state, localprops, localprops1 and all similar
properties in frame.* and face*. A lot of enums, if I want something
then it is just hit and miss choice :P

Regards

Try  the Documentatino page on msegui.com

Especially the Free Pascal wiki MSEgui Reference

Patrick

--
Transform Data into Opportunity.
Accelerate data analysis in your applications with
Intel Data Analytics Acceleration Library.
Click to learn more.
http://pubads.g.doubleclick.net/gampad/clk?id=278785471=/4140___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] form maximized / minimized

2016-01-30 Thread Patrick Goupell
Is it possible to capture when the user clicks the form maximize / 
minimize buttons in the upper right corner of the form?

-- 
Patrick Goupell

Are you free?  Find out at http://www.sedm.org/
Income taxes?  Find out at http://www.whatistaxed.com


--
Site24x7 APM Insight: Get Deep Visibility into Application Performance
APM + Mobile APM + RUM: Monitor 3 App instances at just $35/Month
Monitor end-to-end web transactions and take corrective actions now
Troubleshoot faster and improve end-user experience. Signup Now!
http://pubads.g.doubleclick.net/gampad/clk?id=267308311=/4140
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


  1   2   3   4   5   >