Thread overview
newby question
Jun 02, 2004
Lloyd Dupont
Jun 03, 2004
Lloyd Dupont
Jun 07, 2004
Walter
Jun 07, 2004
Lloyd Dupont
Need Help : Consideration
Sep 15, 2004
Budi Arief G
Serial Port
Sep 16, 2004
BUDI ARIEF GUSANDI
Nov 01, 2004
Ilya Minkov
June 02, 2004
does D support (or will support)?:

- introspection:
ie:
    - dynamical loading of class
    - dynamicall call of property / method (found method by name)

- runtime compilation (my program, from user instruction, create a new class code, compile it and use it all while running !)

- attribute on field/method/other:
like:
  [AppearanceAttribute(Atype)]
  int anItProperty;
this is great for automatic processing of plugin, property panel, etc ...


June 03, 2004
and ... with introspection comes automatic serialization. any support for that ?


June 07, 2004
Not in 1.0. Maybe 2.0. -Walter

"Lloyd Dupont" <lloyd-D@galador.net> wrote in message news:c9lqnt$iuo$1@digitaldaemon.com...
> and ... with introspection comes automatic serialization. any support for that ?
>
>


June 07, 2004
OkiDoki, watch out for version 2.0 :-)

"Walter" <newshound@digitalmars.com> wrote in message news:ca2lfb$17r5$3@digitaldaemon.com...
> Not in 1.0. Maybe 2.0. -Walter
>
> "Lloyd Dupont" <lloyd-D@galador.net> wrote in message news:c9lqnt$iuo$1@digitaldaemon.com...
> > and ... with introspection comes automatic serialization. any support for that ?
> >
> >
>
>


September 15, 2004
Dear all,

I'm a beginner to C and C++. Yesterday i search over internet and found D is easiest to learn than the predeccessors and very comfortable for me. But several question makes me a little doubt, please help.

1. D can only run on Windows Console, i can not run it in pure DOS Console. This is is something very important since C and C++ can do that. How can i run it on embedded system if it should require windows ?
2. The executable file size is so big, test using "Hello World" program. Is that because D runs in win32 console mode ? Even i use exe compressor, the size doesn't cut for the half of the original size instead.

Thank you. Keep up good working ;)

Regards,

Budi
September 16, 2004
Hi,

How can i deal with serial port ?

Thanks

Budi
November 01, 2004
BUDI ARIEF GUSANDI schrieb:
> How can i deal with serial port ?

This depends on which operating system you are using. The common suggestion would be, you find out how to speak to the serial port in C, and then carry it over to D.

On Unix-like operating systems, there is a device file to which you can write and from which you can read, which represents a serial port. On Windows, you use system library calls. I suggest you look up on the MSDN. You can take this as a starting point:

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnfiles/html/msdn_serial.asp

As soon as you get simple comunication working in C, i can help you port it over to D.

-eye