Re: [MSEide-MSEgui-talk] MSE and ./configure

2018-03-07 Thread fredvs
> Yes, the quality of the sound is not yet the best, I have to explore how to tune it. OK, the sound quality is perfect now. Update Sine-Wave demo with format integer 16, integer 32 and float 32 bit. https://github.com/fredvs/pcaudiolib_pas Fre;D -- Sent from: http://mseide-msegui-t

Re: [MSEide-MSEgui-talk] MSE and ./configure

2018-03-07 Thread fredvs
Re-hello. Huh, Martin, do you have a Windows compiled-binary of your extended pcaudiolib.dll ? (Yes, I do not have lot of courage to try to compile it with Visual studio). This to do some Pascal test. Thanks. Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/

Re: [MSEide-MSEgui-talk] MSE pcaudio.

2018-04-04 Thread fredvs
Hello. After some exporations, here the notes: This one is very promising: https://github.com/festvox/flite To get the shared libraries too, just do: ./configure --enable-shared In attachment, the binary of executable (all data in the exe!) for Linux 64 bit. flite.bz2

Re: [MSEide-MSEgui-talk] compile

2018-04-14 Thread fredvs
> What is your opinion? If you are **very** patient, maybe one day fpc will fix that boring bug... https://bugs.freepascal.org/view.php?id=32367 Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/ --

Re: [MSEide-MSEgui-talk] MSE pcaudio.

2018-03-30 Thread fredvs
> Which license problems? Please explain. If you use eSpeakNG as executable (to not have licence problems) but change code of Pcaudiolib, it will have license problems. > . I would expect that synthesizer parameters have much more impact than > the sample format. I do not talk about sample

Re: [MSEide-MSEgui-talk] MSE pcaudio.

2018-03-30 Thread fredvs
> You don't want to publish your changes? Why? Yes, no problems to publish the changes of Pcaudiolib. > It is enough if you host your pcaudiolib version on your GitHub account. Ha, no need to show all the source of the application that use the "updated" Pcaudiolib ? > What other problems? A

Re: [MSEide-MSEgui-talk] MSE pcaudio.

2018-03-29 Thread fredvs
Are you really sure that original eSpeak is dead ? https://sourceforge.net/projects/espeak/ Last Update: 2017-12-06 And the creator is still active in his forum. Sorry, but I will stay with original eSpeak (and his better quality for my ears). Fre;D -- Sent from:

Re: [MSEide-MSEgui-talk] MSE pcaudio.

2018-03-29 Thread fredvs
Pf, so much easier to close things... https://github.com/rhdunn/pcaudiolib/issues/14 -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/ -- Check out the vibrant tech community on one of the world's

Re: [MSEide-MSEgui-talk] MSE pcaudio.

2018-03-24 Thread fredvs
Hello Martin. Now that the pcaudiolib trip has ended, if you agree, i will give my sentiments (if not, just do not read what follows). Jonathan Duddington, the creator of eSpeak did choose GPL license for his eSpeak code. I did ask him if he had plan to make it it LGPL, but no, this was not in

Re: [MSEide-MSEgui-talk] MSE pcaudio.

2018-04-03 Thread fredvs
Hello Martin. I think that I will give my next energy for one of those LGPL (or licence-free) projects: http://festvox.org http://voce.sourceforge.net https://github.com/kaldi-asr/kaldi http://hts.sp.nitech.ac.jp https://github.com/marytts/marytts (pure Java but why not) Fre;D -- Sent

Re: [MSEide-MSEgui-talk] MSE pcaudio.

2018-03-16 Thread fredvs
> It does better, see attached alsadrop2.c. $ gcc -oalsadrop2 -lasound -lpthread -g alsadrop2.c alsadrop2.c: In function ‘threadexe’: alsadrop2.c:35:3: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘snd_pcm_sframes_t’ [-Wformat=] printf("%d %p

Re: [MSEide-MSEgui-talk] MSE pcaudio.

2018-03-18 Thread fredvs
> Suggestion: use a compile or make script. Yes, of course, if a configure or make script is provided, I use it. > C is not foreseen to be compiled with a simple commandline. Yes, but many things can be done with a complicated commandline: ---> https://github.com/fredvs/ideU About

Re: [MSEide-MSEgui-talk] MSE pcaudio.

2018-03-16 Thread fredvs
Not yet... $ gcc -oalsadrop2 -lasound -lpthread -g alsadrop2.c `pkg-config --cflags --libs alsa` alsadrop2.c: In function ‘threadexe’: alsadrop2.c:38:3: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘snd_pcm_sframes_t’ [-Wformat=] printf("%d %p

Re: [MSEide-MSEgui-talk] MSE pcaudio.

2018-03-16 Thread fredvs
Ok, I get it: $ gcc -oalsadrop2 -lasound -pthread -g alsadrop2.c `pkg-config --cflags --libs alsa` alsadrop2.c: In function ‘threadexe’: alsadrop2.c:38:3: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘snd_pcm_sframes_t’ [-Wformat=] printf("%d %p

Re: [MSEide-MSEgui-talk] MSE pcaudio.

2018-03-19 Thread fredvs
>> I think that I will stay happy with your workaround on pcaudiolib > Which workaround? int alsa_object_flush(struct audio_object *object) { struct alsa_object *self = to_alsa_object(object); if (self && self->handle){ snd_pcm_drop(self->handle); }

Re: [MSEide-MSEgui-talk] MSE pcaudio.

2018-03-20 Thread fredvs
> can't help here because I don't know anything about Alsa. Ha, ok, so was I. ( But dont you name me in alsa-dev-mailing-list to try to find the bug ?). Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/

Re: [MSEide-MSEgui-talk] MSE pcaudio.

2018-03-20 Thread fredvs
Re-hello Martin. Re-about libasound.so (alsa library) and pulse. I did try, (to see what appends) to remove libasound.so from my system. Then reboot. Huh, pulse did not load and no sound, even with application that use "pure" pulse... Then re-add libasound.so in system + reboot. Now pulse

Re: [MSEide-MSEgui-talk] MSE pcaudio.

2018-03-20 Thread fredvs
Hello Martin. Could it be that you did not understand what I try to demonstrate ? In ALSA code, snd_pcm_drop(pcm) does nothing more than stop the timer of the alsa object. snd_pcm_drop(pcm) ===> snd_timer_hw_stop(snd_timer). But, sadly, snd_timer_hw_stop(snd_timer) does not work ;-(. Here

Re: [MSEide-MSEgui-talk] MSE pcaudio.

2018-03-20 Thread fredvs
> IRC you wrote one should not use Pulseaudio but Alsa and you prefer Alsa over > Pulseaudio because of its superior architecture since a long time? Huh, more or less... I did wrote that on some distros, Pulseaudio is not installed but only Alsa and it would be good that Pcaudio library could

Re: [MSEide-MSEgui-talk] MSE pcaudio.

2018-03-19 Thread fredvs
> > Doesn't this crash a running write operatipns in another thread? In my system, with uos, if using 2 threads with "pure" alsa ---> no crash, both can play and if one stop, no crash. But if using 1 running thread with "pure" alsa and then loading a other thread with pulse --> the pulse thread

Re: [MSEide-MSEgui-talk] MSE pcaudio.

2018-03-19 Thread fredvs
Hello Martin. > That means you first call snd_pcm_drop() and then you close and reopen the > audio object? With your workaround ? Yes, it call snd_pcm_drop() but it is like doing nothing. Did you read/study mt post from Mar 18, 2018; 5:20pm? You will see that snd_pcm_drop() call, in fine,

Re: [MSEide-MSEgui-talk] MSE pcaudio.

2018-03-23 Thread fredvs
Hello. Added Input device + audio_object_openrec() + audio_object_read(). It is implemented (and perfectly working) for Pulse and "pure" ALSA. https://github.com/fredvs/pcaudiolib_io Added too Pascal demos of SimpleRecorder + ConsoleRec demos. https://github.com/fredvs/pcau

Re: [MSEide-MSEgui-talk] MSE pcaudio.

2018-03-23 Thread fredvs
> Fred, you are aware that pcaudiolib is GPL? Huh, I am not a layer... What is not premised, will I go to jail? > Maybe it is better if you make an independent sound library. Yes, why not. But the code of pcaudiolib is working good. > Maybe the library could be written in Free Pascal. With

Re: [MSEide-MSEgui-talk] MSE pcaudio.

2018-03-23 Thread fredvs
Hello. I did add a topic. https://github.com/rhdunn/pcaudiolib/issues/14 Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/ -- Check out the vibrant tech community on one of the world's most engaging

Re: [MSEide-MSEgui-talk] MSE pcaudio.

2018-03-17 Thread fredvs
Hello Martin. Thanks for explanations. Ok, I will jump into alsa code (that I have to discover). Other thing. I am busy to make ideU compatible with C for compiling and debugging. It works perfectly (like for Pascal, Python and Java). But with C (and Java too) it could be that parameters are

Re: [MSEide-MSEgui-talk] MSE pcaudio.

2018-03-24 Thread fredvs
> Nobody can use it in combination with closed source elements. Aaargh. OK, I will take the positive of that story: I went deep inside ALSA and Pulseaudio code and no more secret for me about those libs. By the way, if you decide to have your own MSE audio lib, I will test-help it with force.

Re: [MSEide-MSEgui-talk] MSE and ./configure

2018-03-01 Thread fredvs
> pcaudiolib calls portaudio if requested. What do you mean ? -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/ -- Check out the vibrant tech community on one of the world's most engaging tech sites,

Re: [MSEide-MSEgui-talk] MSE and ./configure

2018-03-01 Thread fredvs
> pcaudiolib calls portaudio if requested. Are you sure ? In README.md, line 187: Audio Output Configuration The following `configure` options control which audio interfaces to use: | Option | Audio Interfaces | Default | |-|--|-|

Re: [MSEide-MSEgui-talk] MSE and ./configure

2018-03-05 Thread fredvs
Hello Martin. > You are right... ;) In attachment, Pascal dynamic-loading header of audio.h. Included also a Pascal demo of a sine-wave produced by libpcaudio.so.0. (binary for Linux 64 incuded) Yes, the quality of the sound is not yet the best, I have to explore how to tune it. But it

Re: [MSEide-MSEgui-talk] MSE and ./configure

2018-03-01 Thread fredvs
> Your Ubuntu installation or your repository setup seems to be broken. Maybe ;( Did you try with a up-to-date Debian OS ? : sudo apt-get install espeak-ng Does it install espeak-ng ? > Suggestion: build and install it from source. Yes, I did it already. And after (lot of) tips,

Re: [MSEide-MSEgui-talk] MSE and ./configure

2018-03-01 Thread fredvs
Oooops, a invasion of my same message, sorry for this... >pcaudiolib is a small library which provides cross platform audio support like portaudio https://github.com/espeak-ng/espeak-ng/issues/413 Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/

Re: [MSEide-MSEgui-talk] How to use form-scrollbars ?

2018-06-20 Thread fredvs
> Done, git master f98ccf1516ab16ff6812991424d80fbcc55b006b. Thanks but I get same "only once" behaviour with this last commit. Maybe I miss something. Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/

[MSEide-MSEgui-talk] Layout with last commits.

2018-09-27 Thread fredvs
Hello Martin. Since the commits about forms + trayicons (enable tray icon if panel-host is not main form), loading a layout that contend extra panel-form is not ok, for example in MSEide the message-form is not show.. The trick is to first load a layout without any extra-panel then re-load the

Re: [MSEide-MSEgui-talk] Layout with last commits.

2018-09-27 Thread fredvs
Re-hello. Re-deeply tested with ideU before MSEgui-ide commit cdf1233feab2bc2b149561f20022bbd31b0a9ac0 of 14 septembre. All layout are ok, so the problem comes from those commits. Of course any light where to look would be welcome. Fre;D -- Sent from:

Re: [MSEide-MSEgui-talk] Layout with last commits.

2018-09-27 Thread fredvs
Re-re-re hello. Oops in previous mail please read: (main.mfm not sourceform.mfm) OK, fixed: ---> updated main.mfm ---> ideU optionsdock = MSEide optionsdock. ---> ideU commit 07b8929..c347ab8. Now all is perfect again. Sorry for the noise. Fre;D -- Sent from:

Re: [MSEide-MSEgui-talk] MSEide+MSEgui 4.6.2

2018-11-03 Thread fredvs
Hello Martin. Congrats! Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.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] About Ultibo

2018-11-03 Thread fredvs
> Everything is up and running again. Hello Graeme. Yep, thanks (and I did use it already to sent mails!). Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/ ___ mseide-msegui-talk mailing list

Re: [MSEide-MSEgui-talk] About Ultibo

2018-11-05 Thread fredvs
> really great project Yes and they also answer to questions (very rare those time)! The project seems to start in 2016. Incredible what they (he ?) have (has) done in 2 years. Maybe Martin could be helped by what they have done for fpGUI-Ultibo to do something for MSEgui. @Martin, dont forget

[MSEide-MSEgui-talk] About Ultibo

2018-11-02 Thread fredvs
Hello everybody. I am exploring the Ultibo project. https://ultibo.org Huh, it is ***really*** wow++ for ARM machines. Maybe it would be better to create that topic on fpGUI webnews but the site is unreachable. Ultibo has a beginning of fpGUI interface and is **very** promising.

Re: [MSEide-MSEgui-talk] About Ultibo

2018-11-02 Thread fredvs
> Do you know the motivation behind the huge undertaking to build a new operating system? I do not know where those people have found so much energy. I have try some of the demos for the RPi3, like HDMI interface (video + sound), internet access, usb connect, keyboard+mouse interface --->

[MSEide-MSEgui-talk] About macros and .prj

2018-11-07 Thread fredvs
About macros and .prj Hello Martin. I would like to create a "universal" layout file. For this I use this in the prj file: mainfile=${PROJECTNAME}.pas targetfile=${PROJECTNAME} makecommand=${ULTIBOCOMP} // from a general macro. It works like charm, just rename the .prj with same name as main

[MSEide-MSEgui-talk] Disable/Enable tfilenameedit?

2018-10-03 Thread fredvs
Hello Martin. About the behaviour of caption-frame of tfilenameedit when disable-enable it. For example in MSEide, in projectoptions form, if you enable/disable "Message Output File" via the checkbox "Copy messages to file", the frame caption of "Message Output File" stays always grayed ?

Re: [MSEide-MSEgui-talk] Disable/Enable tfilenameedit?

2018-10-03 Thread fredvs
> A regression. Please try again with git master > f50451cc73c55e887925d1a4e449f284a7b92701. Huh, yes it works for MSEide. But for ideU, even after a "Touch form" and complete re-built , still grayed... ;-( (Please, forget about this, here it works perfect with this workaround:) if

[MSEide-MSEgui-talk] Compilation error with Windows.

2018-09-29 Thread fredvs
Hello. After last MSEgui commits, (did not check witch one) I get those errors compiling for Windows: Free Pascal Compiler version 3.0.2 [2017/02/13] for i386 Copyright (c) 1993-2017 by Florian Klaempfl and others Target OS: Win32 for i386 ... Compiling

Re: [MSEide-MSEgui-talk] Layout with last commits.

2018-09-28 Thread fredvs
Hello Martin. OK, let's go for a easier life! Thanks. Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/ ___ mseide-msegui-talk mailing list mseide-msegui-talk@lists.sourceforge.net

Re: [MSEide-MSEgui-talk] MSE Programing Pass Book

2018-09-28 Thread fredvs
Hello. Good news for the many fans of the MSE "Programming is Fun!" book! The translation of chapter 1 and 2 into English and French is ready to test. The German version of chapter 1 and 2 was adapted for international code too. Included pdf in German, English and French: progfun_de.pdf

Re: [MSEide-MSEgui-talk] Compilation error with Windows.

2018-09-29 Thread fredvs
> Please try again with git master 7f544eb8815d12c74d4c1dff01bf211b8d06b388. OK, fixed, thanks. Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/ ___ mseide-msegui-talk mailing list mseide-msegui-talk@lists.sourceforge.net

Re: [MSEide-MSEgui-talk] MSElang news.

2018-10-10 Thread fredvs
Hello Martin. Huh, please, do not forget to tell us if something can be tested. ;-) Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/ ___ mseide-msegui-talk mailing list mseide-msegui-talk@lists.sourceforge.net

Re: [MSEide-MSEgui-talk] MSElang news.

2018-10-10 Thread fredvs
> Sure. I ask when I don't find bugs anymore. Ha, Ok. There is something that puzzles me... Would it be possible to still use the lot of code provided by Delphi/FPC/fpGUI/Lazarus ? Would it need lot of conversion from fpc syntax-code to MSElang? What would be very difficult to translate/use

Re: [MSEide-MSEgui-talk] MSElang news.

2018-10-10 Thread fredvs
Hello Martin. Perfect. Ok, I am hot and ready. Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/ ___ mseide-msegui-talk mailing list mseide-msegui-talk@lists.sourceforge.net

Re: [MSEide-MSEgui-talk] Disable/Enable tfilenameedit?

2018-10-04 Thread fredvs
> Have you removed tf_grayed in frame.captiontextflags? Ok, fixed, thanks. Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/ ___ mseide-msegui-talk mailing list mseide-msegui-talk@lists.sourceforge.net

Re: [MSEide-MSEgui-talk] Multi-arch problem...

2018-09-03 Thread fredvs
Hello. Here result of my summer Linux distros tour. I did follow the excellent advices of Sternas from the CodeTyphon project: http://www.pilotlogic.com/sitejoom/index.php/wiki/135-wiki/codetyphon-host-oses What I want: - Multi-Arch OS (possibility to run 32 bit apps on a 64 bit OS). -

Re: [MSEide-MSEgui-talk] MSE Programing Pass Book

2018-09-20 Thread fredvs
> the examples could be made in English. And maybe the images too. I am not convinced that using branches would make things easier for the translator. In my case, I load 2 projects in LyX, the template progfun_en.lyx and the target progfun_fr.lyx and compile + switch from one to the other. But

Re: [MSEide-MSEgui-talk] MSE Programing Pass Book

2018-09-20 Thread fredvs
> It is like in GitHub. In GitHub they only ask a password. -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/ ___ mseide-msegui-talk mailing list mseide-msegui-talk@lists.sourceforge.net

Re: [MSEide-MSEgui-talk] MSE Programing Pass Book

2018-09-21 Thread fredvs
>The English and French PDFs have a completely different layout than the German original. Is this intended? Huh, completely no, the only thing I did is to disable the 2 columns feature of the text-layout. And fit some images on the right place. IMHO it is much more comfortable to read and that

Re: [MSEide-MSEgui-talk] MSE Programing Pass Book

2018-09-21 Thread fredvs
ose-reinstall the operation system lot of time. Here my config for ideU: -- fred@fiens:~/ideu$ git config -l user.name=fredvs user.email=fi...@hotmail.com core.repositoryformatversion=0 core.filemode=true core.bare=false core.logallrefupdates=true remote.origin.url=https://github.com/fre

Re: [MSEide-MSEgui-talk] MSE Programing Pass Book

2018-09-21 Thread fredvs
4) Here the result of git config -l user.name=fredvs user.email=[hidden email] core.repositoryformatversion=0 core.filemode=true core.bare=false core.logallrefupdates=true How must I configure "git remote" to access the mse-universe-gitlab site ? It would be good to do this fo

Re: [MSEide-MSEgui-talk] MSE Programing Pass Book

2018-09-21 Thread fredvs
> It is intended to be printed on A4 paper. Are you taking about paper that needs to kill trees, needs lot of energy and is highly polluting to produce and was using as support in older centuries? And to print needs chemical products also highly polluting. Sorry but I do not want to be

Re: [MSEide-MSEgui-talk] MSE Programing Pass Book

2018-09-21 Thread fredvs
> Why don't you copy your /.ssh directory to a memory stick? For the same reason as for my car keys (I continually lose them or do not remember anymore where they are). With a unique password in head, I have less problems. Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/

Re: [MSEide-MSEgui-talk] MSE Programing Pass Book

2018-09-24 Thread fredvs
> What do you want to do? I only want to commit last change of sak_mse project. The last commit of mseuniverse-sak_mse date from more than 3 years and is no more compatible with last msegui commits. Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/

Re: [MSEide-MSEgui-talk] MSE Programing Pass Book

2018-09-24 Thread fredvs
Hello Martin. Pfff, not easy. I did: $ git remote add origin https://gitlab.com/mseuniverse/sak then $ git push --all Username for 'https://gitlab.com': fredvs Password for 'https://fre...@gitlab.com': > result after username + password: remote: You are not allowed to push c

Re: [MSEide-MSEgui-talk] MSE Programing Pass Book

2018-09-24 Thread fredvs
> Which of your repos you want to push to my mseuniverse/sak? https://github.com/fredvs/sak -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/ ___ mseide-msegui-talk mailing list mseide-msegui-talk@lists.sourceforge.net ht

Re: [MSEide-MSEgui-talk] MSE Programing Pass Book

2018-09-22 Thread fredvs
Re-hello. Huh, i do not see sak_mse projet in MSEuniverse. it is deleted ? Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/ ___ mseide-msegui-talk mailing list mseide-msegui-talk@lists.sourceforge.net

Re: [MSEide-MSEgui-talk] MSE Programing Pass Book

2018-09-22 Thread fredvs
Huh, maybe you are taking about https://gitlab.com/mseide-msegui/mseuniverse. If so, sory for the noise. Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/ ___ mseide-msegui-talk mailing list

Re: [MSEide-MSEgui-talk] MSE Programing Pass Book

2018-09-22 Thread fredvs
> Hmm, I see I forgot to push the restored dbfilter demo DB file. Are you sure? In https://gitlab.com/mseide-msegui/mseide-msegui/commits/master the last commit is from 20 Sep, 2018 3 commits. Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/

Re: [MSEide-MSEgui-talk] MSE Programing Pass Book

2018-09-24 Thread fredvs
> That most likely will not work because mseuniverse/sak Of course, with git I would not have hoped for anything else. Finally with patience and only one password in mind: https://gitlab.com/mseuniverse/sak/commits/master > Anyway, I added you as developer to mseuniverse/sak. Have fun! ;-)

Re: [MSEide-MSEgui-talk] MSElang news.

2018-09-26 Thread fredvs
Hello. This one is very promising and will bring together my best friends fpGUI, MSE and Pascal: https://ultibo.org/forum/viewtopic.php?f=12=1194 Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/ ___ mseide-msegui-talk mailing

Re: [MSEide-MSEgui-talk] MSE Programing Pass Book

2018-09-25 Thread fredvs
> sak is independent of a specific GUI toolkit, so I suggest you keep your repository where it is. Hello Graeme. Indeed sak can be used for fpGUI and LCL too. Here, in MSE universe, was committed only the MSE branch of sak. I have to confess too that I did use mseuniverse-sak to proof using

Re: [MSEide-MSEgui-talk] MSE Programing Pass Book

2018-09-19 Thread fredvs
> Or does LaTeX-LyX provide a better translation mechanism? I do not know, I use my custom way to translate your German pdf into pdf of other language. Then I use LyX and change text from German to other lang (using copy-paste from the translated pdf). All works ok, I block on a little detail:

Re: [MSEide-MSEgui-talk] MSE Programing Pass Book

2018-09-20 Thread fredvs
Hello Martin. Because of my terror of git, I will give the translated files in a zip file per lang. According your wishes. (no change in filename of the lyx file.) > The examples could be made in English. OK. I will do first the checked translation for English and French. Then Spanish and

Re: [MSEide-MSEgui-talk] MSE Programing Pass Book

2018-09-20 Thread fredvs
> Please post them to MSEuniverse. Br. They ask me for keys (and, like for my car, I do not know where they are). (But maybe if you give some easy light, with console commands (please no git programs) I will be less terrorized.) Fre;D -- Sent from:

Re: [MSEide-MSEgui-talk] MSE Programing Pass Book

2018-09-20 Thread fredvs
> I made the necessary branches and pushed them to gitlab: > https://gitlab.com/mseide-msegui/books I do not see the English branche. ;-( Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/ ___ mseide-msegui-talk mailing list

Re: [MSEide-MSEgui-talk] MSE Programing Pass Book

2018-09-20 Thread fredvs
Hello Martin. Before that I attack gitlab, could it be possible to check the first chapter in English (or French if you can) ? This to see if I am on the right way. Included pdf files: progfun_en.zip progfun_fr.zip

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

2018-12-29 Thread fredvs
Hello Mohamed. > How do you plane this work? I will try to bring together people that has some experience with MSE. Roland Chastain has already answered that he is volunteer. Julio Jiménez said that he will help like I have been doing till now. Graeme will surely help us at beginning for

Re: [MSEide-MSEgui-talk] MSElang news.

2018-12-29 Thread fredvs
Hello. I am busy to test MSElang compiler: https://gitlab.com/mseide-msegui/mselang All went ok, the MSElang compiler produce a Bitcode File (helloworld.bc). But when trying to compile that helloworld.bc file with *opt* there is that error message after +- 900 lines of messages of the opt

Re: [MSEide-MSEgui-talk] MSElang news.

2018-12-29 Thread fredvs
Re-hello. Here the Pascal code of the program: {$mode mselang} program hellomlc; begin writeln('Hello MLC'); end. Here the bit code file produced by MSElang: hellomlc_bc.zip It would be marvelous is somebody that know

Re: [MSEide-MSEgui-talk] MSElang news.

2018-12-31 Thread fredvs
Hello. Here fork of MSElang: https://github.com/fredvs/mselang There are some fixes to make MSElang work on a Linux 32 system. Working compiled release 0.0 is here: https://github.com/fredvs/mselang/releases Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com

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

2018-12-31 Thread fredvs
Hello Patrick. Could you give the test project that shows this behavior? Did you explore git-commits to find after what commit it appended? I will try to help with pleasure. Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/ ___

Re: [MSEide-MSEgui-talk] MSElang news.

2018-12-30 Thread fredvs
Hello Roland. > Congratulations for your work Huh, it is Martin work. Thank you for proposing you directly, without condition to make MSE still alive. With you in the team, sure MSE is in good hands. Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/

Re: [MSEide-MSEgui-talk] MSElang news.

2018-12-29 Thread fredvs
Hello. Here the MSElang project with Linux 32 binaries. It works also in a Linux 64 bit multi-arch 64/32. To install llvm, just do: $ sudo apt-get install llvm The MSElang project include the compiler: mlc, the interpreter mli and the gui tool-chain: mselang and other tools. Here the source

Re: [MSEide-MSEgui-talk] MSElang news.

2019-01-01 Thread fredvs
Hello Roland and everybody. Happy new year! About MSElang. Indeed, Martin did not enable MSElang for Windows yet.mymsetest.pas But with some cups of coffee it would be possible to enable it (I hope). By the way I did find how to do to have a working executable on Linux 32 bit, The shema is

Re: [MSEide-MSEgui-talk] MSElang news.

2019-01-01 Thread fredvs
> Indeed, Martin did not enable MSElang for Windows yet.mymsetest.pas This is fake news. MSElang works for Windows too. Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/ ___ mseide-msegui-talk mailing list

Re: [MSEide-MSEgui-talk] MSElang news.

2019-01-05 Thread fredvs
> Why not create the file in the GitHub repo? Sorry I do not understand, what flie are you talking? Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/ ___ mseide-msegui-talk mailing list mseide-msegui-talk@lists.sourceforge.net

Re: [MSEide-MSEgui-talk] MSElang news.

2019-01-05 Thread fredvs
Hello Roland. Thanks for the thanks! > When you speak of your "Hello world", is it a file you created yourself? Yes. Here code of that sophisticated program: program helloworld; begin writeln('Hello MSElang world'); end. Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/

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

2019-01-23 Thread fredvs
Hello Alexey. > Still no members: https://gitlab.com/groups/mseide-msegui/-/group_members Huh, sorry to ask this stupid question but what is the goal of "group_members". About control of ressource, there is the MSElang project on GitHub: https://github.com/fredvs/mselang with a

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

2019-01-23 Thread fredvs
Re- hello Alexey. > Still no members: https://gitlab.com/groups/mseide-msegui/-/group_members How to become member, it seems to me that only Martin could add members (or, once again, I miss something). Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/

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

2018-12-17 Thread fredvs
> As I said, this used to work. Ha, super. > I guess I can pull some of the old git code and see if I can determine > when/where it started to occur. It would be very appreciated. In one of my project that was started in Jul 2017 I did have that problems. So if it was working for you, maybe

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

2018-12-17 Thread fredvs
> It seems to get creaetd, but where is it? Huh, indeed strange... Do you absolutely need to dynamically create the component ? In case like this I use the MSE-designer to create the components and set it to visible := false. And when needed ---> visible := true; I have already try like you

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

2018-12-21 Thread fredvs
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 ? Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/ ___ mseide-msegui-talk mailing list

Re: [MSEide-MSEgui-talk] Need Help

2018-12-26 Thread fredvs
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. Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/ ___ mseide-msegui-talk mailing list

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

2018-12-23 Thread fredvs
Hello Patrick. For selection I use: function selectcell(const cell: gridcoordty; const amode: cellselectmodety; const checkmultiselect: boolean = false): boolean; For example to select first row: cellpos.row := 0; cellpos.col :=

Re: [MSEide-MSEgui-talk] Need Help

2018-12-26 Thread fredvs
Hello everybody. I have extremely bad news. I received a mail from Martin's sister-in-law. Martin succumbed of cardiac arrest on November 29, 2018. Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/ ___ mseide-msegui-talk mailing

[MSEide-MSEgui-talk] To Martin family.

2018-12-26 Thread fredvs
Martin was my best developer friend. His generosity and intelligence is legendary. We will miss him immensely. I am totally destroyed. Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/ ___ mseide-msegui-talk mailing list

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

2018-12-27 Thread fredvs
Hello. Yes, of course MSE will stay alive. I do have access to MSE GitLab for some projects but I am not sure it is a complete access. Maybe somebody could clone Martin's projects and leads it. I will do the maximum I can but I do not have Martin's skills. It seems to me that MSElang was the

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

2018-12-17 Thread fredvs
Hello. Maybe the problem comes from line 53 in common.pas. Changing this: seValue := tstringedit.create (self,twidget(tpgParent)); with that: seValue := tstringedit.create (twidget(tpgParent)); makes this:

Re: [MSEide-MSEgui-talk] fpc and memory leak.

2018-12-04 Thread fredvs
Thanks Seighard. >> This to try to understand why with fpc, for big project like compiling >> fpc >> him-self, the memory used do not stop to increase and the speed of >> compilation decrease. > I cannot see what relevance your question has to this. Hum, in the fpc-forum, to justify the

Re: [MSEide-MSEgui-talk] OS X?

2018-12-05 Thread fredvs
About widget-set not absolutely pure Mac. See all the problem that have Lazarus with LCL cocoa platform. It still dont work ok and applications done with LCL-cocoa proposed to Apple-store are refused because they did not use "pure cocoa" . -- Sent from:

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

2018-12-04 Thread fredvs
> How do I get the test project to you? You may sent if via nabble.com: http://mseide-msegui-talk.13964.n8.nabble.com/MSEide-MSEgui-talk-ossible-regression-mseimplicitedit-pas-function-poschanged-td1474.html#a1497 ---> Click on "Reply" then on "More- Upload a file" -- Sent from:

Re: [MSEide-MSEgui-talk] fpc and memory leak.

2018-12-08 Thread fredvs
Hello Sieghard. OK, we are totally on same feeling. Thanks for your clear explanations (and I hope that one day fpc-developers will take a beak and clean-up all their memory leaks).. Huh, where is Martin, everything OK ? Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/

Re: [MSEide-MSEgui-talk] fpc and memory leak.

2018-12-03 Thread fredvs
Hello Seighard. Many thanks for that **clear** explanation how the OS work when a program close and what appends with the "memory leak". But the question was about what appends **inside** the program-process (all what appends before the program close). This to try to understand why with fpc,

<    1   2   3   4   5   6   7   8   9   10   >