June 20, 2014
On 6/20/2014 4:37 AM, Kagamin wrote:
> On Thursday, 19 June 2014 at 19:24:15 UTC, SomeRiz wrote:
>> Visual Studio like editor for TkD :/
>
> Hmm... visual designers can usually build pixel-oriented GUI, tk uses
> layouts, which work with code a little better.

While it's been awhile since I've used visual GUI designers much, I seem to remember them (at least the better ones anyway) being perfectly capable of doing resizable layouts. Any limitations seemed to have more to do with the widgets and GUI libs themselves rather than any inherent drawback to GUI designers in general. I seem to recall doing some resizable layouts even as far back as VB3.
June 20, 2014
On 2014-06-19 20:47, SomeRiz wrote:
> Thanks Gary.
>
> Very simple :)
>
> But i have a question.
>
> All DLL file => How can i embed main.d file?

Use DWT [1], no additional requirements besides the system libraries ;)

[1] https://github.com/d-widget-toolkit/dwt

-- 
/Jacob Carlborg
June 22, 2014
On Friday, 20 June 2014 at 18:24:49 UTC, Jacob Carlborg wrote:
> On 2014-06-19 20:47, SomeRiz wrote:
>> Thanks Gary.
>>
>> Very simple :)
>>
>> But i have a question.
>>
>> All DLL file => How can i embed main.d file?
>
> Use DWT [1], no additional requirements besides the system libraries ;)
>
> [1] https://github.com/d-widget-toolkit/dwt

But there's no 64 bit support for DWT, or am I mistaken?

Cheers,
ed
June 23, 2014
On 2014-06-22 08:25, ed wrote:

> But there's no 64 bit support for DWT, or am I mistaken?

Yes, correct. Why do you need 64bit? All 64bit Windows computers can run 32bit applications.

-- 
/Jacob Carlborg
June 23, 2014
On Monday, 23 June 2014 at 08:10:49 UTC, Jacob Carlborg wrote:
> On 2014-06-22 08:25, ed wrote:
>
>> But there's no 64 bit support for DWT, or am I mistaken?
>
> Yes, correct. Why do you need 64bit? All 64bit Windows computers can run 32bit applications.

customer require it - program and all components 64bit.
June 23, 2014
On Friday, 20 June 2014 at 18:04:20 UTC, Nick Sabalausky wrote:
> While it's been awhile since I've used visual GUI designers much, I seem to remember them (at least the better ones anyway) being perfectly capable of doing resizable layouts. Any limitations seemed to have more to do with the widgets and GUI libs themselves rather than any inherent drawback to GUI designers in general. I seem to recall doing some resizable layouts even as far back as VB3.

Anchors work, because they are simple and pixel-oriented. GTK boxes have too many settings to put them into a visual designer. Specialized non-pixel-oriented layouts do work with visual designers as they don't require configuration.
June 23, 2014
On Monday, 23 June 2014 at 08:10:49 UTC, Jacob Carlborg wrote:
> Yes, correct. Why do you need 64bit? All 64bit Windows computers can run 32bit applications.

High memory requirements :(
If you have performance problems with a (big) database, a possible solution is to cache data on the client.
June 23, 2014
On Monday, 23 June 2014 at 08:10:49 UTC, Jacob Carlborg wrote:
> Yes, correct. Why do you need 64bit? All 64bit Windows computers can run 32bit applications.

Also big grids; hundreds of thousands items.
June 23, 2014
On Monday, 23 June 2014 at 08:10:49 UTC, Jacob Carlborg wrote:
> On 2014-06-22 08:25, ed wrote:
>
>> But there's no 64 bit support for DWT, or am I mistaken?
>
> Yes, correct. Why do you need 64bit? All 64bit Windows computers can run 32bit applications.

Memory is the main reason.

I have started working on a 64 bit DWT port. If anything comes of it I'll submit a PR for review.

Cheers,
ed
June 23, 2014
On 2014-06-23 12:21, ed wrote:

> Memory is the main reason.

Fair enough.

> I have started working on a 64 bit DWT port. If anything comes of it
> I'll submit a PR for review.

Awesome, looking forward to it. How is it going, does it require a lot of changes?

-- 
/Jacob Carlborg