Re: D, GTK, Qt, wx,…

2016-05-31 Thread albatroz via Digitalmars-d-learn
On Tuesday, 31 May 2016 at 08:57:51 UTC, MGW wrote: QtE5 - is my wrapper for Qt-5 https://www.youtube.com/watch?v=DuOl-4g117E https://github.com/MGWL/QtE5 How can we build QtE5 and/or the examples?

Re: 2.068.0 std.process.executeShell how to set the shell?

2015-09-03 Thread albatroz via Digitalmars-d-learn
On Thursday, 3 September 2015 at 05:07:10 UTC, Jonathan M Davis wrote: key thing that you're missing is -c. - Jonathan M Davis Hi Jonathan, I would just like to say thank you for the time you took to help and clarify. Obrigado

Re: 2.068.0 std.process.executeShell how to set the shell?

2015-09-02 Thread albatroz via Digitalmars-d-learn
On Wednesday, 2 September 2015 at 01:46:18 UTC, Jonathan M Davis wrote: On Wednesday, 2 September 2015 at 01:26:23 UTC, Jonathan M Davis wrote: [snip] https://issues.dlang.org/show_bug.cgi?id=15000 - Jonathan M Davis Thank you for your reply and for the bug report. Looking at your suggestio

2.068.0 std.process.executeShell how to set the shell?

2015-09-01 Thread albatroz via Digitalmars-d-learn
Hi, since the upgrade to the latest version the function executeShell (also the other functions), is not working has it used to be, older versions of the compiler did not require any change or setting the SHELL. How to change the SHELL, that is used by executeShell? userShell will always retu

Re: Recommendation on option parsing

2014-05-14 Thread albatroz via Digitalmars-d-learn
Too late I see, but maybe next time it will provide you a way to search available projects faster. On DUB http://code.dlang.org/ there is one project that looks like address the issues you had with std.getopt, "post-rock". Have not used it so I cannot give any further recommendations. Maybe y

Re: SysTime in a Struct

2012-03-06 Thread albatroz
Hi Ali, only today I had the time to implement your suggestion it's working now has expected. Thank you for your patience, also thank you for the work translating such a good D book to English. On Friday, 2 March 2012 at 00:00:10 UTC, Ali Çehreli wrote: On 03/01/2012 03:46 PM, alb

Re: SysTime in a Struct

2012-03-01 Thread albatroz
Are you trying to record the time when a prevEv is copied from another one? If not, I suggest not defining this(this). It is the postblit, to make things right for rare structs and only when the compiler generated copying is wrong for a that type. Or, are you just trying to define a type that

Re: SysTime in a Struct

2012-03-01 Thread albatroz
Have fixed the segfault by using DateTime instead of SysTime. That is a separate local variable within this(this). Also, this(this) is the postblit (similar to a copy constructor). Is that what you want to define? No, but not using this(this) will fail to build with: static variable _initial

SysTime in a Struct

2012-03-01 Thread albatroz
Hi, I have defined this struct struct preEv { string edate; //010112 string etime; //00:00:00 string etext; // SysTime esystime; this (this) { SysTime esystime = SysTime(DateTime( Clock.currTime.year, to!int(this.edate[2..4]), to!int(this.ed

Re: How To Dynamic Web Rendering?

2011-05-14 Thread albatroz
This should be also be posted on the Announce list! I'm considering D for web develoment and your libs provide a nice solution, the only issue is until now we would have to dig on this NewsGroup for your posts (the big ones), so that we could have an ideia how to use them. I would also like to

Re: Linking problem with QtD

2009-10-29 Thread albatroz
Eldar Insafutdinov wrote: > Qian Xu Wrote: > >> Hi All, >> >> I have almost built the first demo, but ... >> The components I have are as follows: >> 1. QtK SDK (LGPL edition) 4.5.3 >> 2. the latest svn version of QtD (trunk-r309.zip) >> 3. DMD 1.050 >> 4. Tango (current from trunk) >> 5. Platfo