Jump to page: 1 25  
Page
Thread overview
new D site
Mar 31, 2002
Pavel Minayev
Mar 31, 2002
Walter
Mar 31, 2002
OddesE
Apr 01, 2002
Pavel Minayev
Apr 01, 2002
J. Daniel Smith
Apr 01, 2002
Pavel Minayev
Apr 01, 2002
Walter
"delegate" and "event" keywords from C# (was: new D site)
Apr 01, 2002
J. Daniel Smith
Apr 01, 2002
Pavel Minayev
Apr 01, 2002
Pavel Minayev
Apr 02, 2002
Jan Jezabek
Apr 02, 2002
Pavel Minayev
Apr 02, 2002
Russ Lewis
Apr 02, 2002
Russ Lewis
Apr 02, 2002
Jan Jezabek
Apr 02, 2002
Russ Lewis
Apr 02, 2002
Jan Jezabek
Apr 02, 2002
Pavel Minayev
Apr 02, 2002
Richard Krehbiel
Apr 02, 2002
Pavel Minayev
Apr 02, 2002
Russ Lewis
Apr 02, 2002
Walter
Apr 02, 2002
Pavel Minayev
Apr 04, 2002
Sean L. Palmer
Apr 02, 2002
Russell Borogove
Apr 02, 2002
Russ Lewis
Apr 02, 2002
Pavel Minayev
Apr 02, 2002
J. Daniel Smith
Apr 02, 2002
Pavel Minayev
Apr 02, 2002
Walter
Apr 02, 2002
J. Daniel Smith
Apr 02, 2002
Walter
Apr 02, 2002
Pavel Minayev
Apr 02, 2002
Walter
Apr 02, 2002
Russ Lewis
Apr 02, 2002
Pavel Minayev
Apr 02, 2002
J. Daniel Smith
Apr 03, 2002
Walter
Apr 03, 2002
Pavel Minayev
Apr 04, 2002
Walter
Apr 01, 2002
Patrick Down
Apr 01, 2002
Pavel Minayev
Apr 01, 2002
Sean L. Palmer
Apr 01, 2002
Pavel Minayev
Apr 01, 2002
Svyatoslav Bezgin
OT: new word: "dommunity"
Apr 01, 2002
Russ Lewis
Re: new word: "dommunity"
Apr 02, 2002
OddesE
Apr 03, 2002
OddesE
March 31, 2002
My old tiny D page had grown into the site! You can still get all the stuff I've made, there, but there's also my D FAQ, and some information on my D projects, including not-yet-released WinD.

Unfortunately, Russ is unable to provide hosting further, for several reasons, so the site has moved to my ex-homepage, http://int19h.tamb.ru. You can still access it via the old URL, though - it'll redirect you there.


March 31, 2002
"Pavel Minayev" <evilone@omen.ru> wrote in message news:a86b4p$1elj$1@digitaldaemon.com...
> My old tiny D page had grown into the site! You can still get all the stuff I've made, there, but there's also my D FAQ, and some information on my D projects, including not-yet-released WinD.
>
> Unfortunately, Russ is unable to provide hosting further, for several reasons, so the site has moved to my ex-homepage, http://int19h.tamb.ru. You can still access it via the old URL, though - it'll redirect you there.

Thanks! It's a cool web site. -Walter


March 31, 2002
"Pavel Minayev" <evilone@omen.ru> wrote in message news:a86b4p$1elj$1@digitaldaemon.com...
> My old tiny D page had grown into the site! You can still get all the stuff I've made, there, but there's also my D FAQ, and some information on my D projects, including not-yet-released WinD.
>
> Unfortunately, Russ is unable to provide hosting further, for several reasons, so the site has moved to my ex-homepage, http://int19h.tamb.ru. You can still access it via the old URL, though - it'll redirect you there.
>
>

Wow Pavel, it looks great!
I liked the code example from WinD!
So it seems you have decided on the event handling?
You seem to be using a function pointer in
combination with an object pointer?



--
Stijn
OddesE_XYZ@hotmail.com
http://OddesE.cjb.net
_________________________________________________
Remove _XYZ from my address when replying by mail



April 01, 2002
I't a really nice site Pavel.  I do have
one question about your WinD example.  You
have:

        static void OK_Click(Object me, Event e)
        {
            me.close();
        }

Shouldn't me be cast to Frame or something?

April 01, 2002
"OddesE" <OddesE_XYZ@hotmail.com> wrote in message news:a8868m$2d6u$1@digitaldaemon.com...

> Wow Pavel, it looks great!
> I liked the code example from WinD!
> So it seems you have decided on the event handling?
> You seem to be using a function pointer in
> combination with an object pointer?

Yes, it seems to be the best way for now!



April 01, 2002
"Patrick Down" <pat@codemoon.com> wrote in message news:Xns91E2EF11F18F2patcodemooncom@63.105.9.61...

> I't a really nice site Pavel.  I do have
> one question about your WinD example.  You
> have:
>
>         static void OK_Click(Object me, Event e)
>         {
>             me.close();
>         }
>
> Shouldn't me be cast to Frame or something?

Oh yes, you've caught me! I've just done the change to the event system, and corrected the sample properly, but didn't test it =)

Now, I prefer to write it this way:

    static void OK_Click(Object me, Event e) { with (cast(Frame) me)
    {
        close();
    }}


April 01, 2002
Oh, God, Walter, it's too bad you can't make the D language specification require reasonable indentation!   ;)

Sean


"Pavel Minayev" <evilone@omen.ru> wrote in message news:a88v29$2q3b$1@digitaldaemon.com...

> Oh yes, you've caught me! I've just done the change to the event system, and corrected the sample properly, but didn't test it =)
>
> Now, I prefer to write it this way:
>
>     static void OK_Click(Object me, Event e) { with (cast(Frame) me)
>     {
>         close();
>     }}



April 01, 2002
"Sean L. Palmer" <spalmer@iname.com> wrote in message news:a88val$2q6s$1@digitaldaemon.com...

> Oh, God, Walter, it's too bad you can't make the D language specification require reasonable indentation!   ;)

Well, he could just make pointers to methods... =)


April 01, 2002
This looks a lot like C#'s "delegates and events" mechanism.  Coincidence? Is it worth making this technique a standard part of the language like C#?

   Dan

"Pavel Minayev" <evilone@omen.ru> wrote in message news:a88uv7$2q1e$1@digitaldaemon.com...
> "OddesE" <OddesE_XYZ@hotmail.com> wrote in message news:a8868m$2d6u$1@digitaldaemon.com...
>
> > Wow Pavel, it looks great!
> > I liked the code example from WinD!
> > So it seems you have decided on the event handling?
> > You seem to be using a function pointer in
> > combination with an object pointer?
>
> Yes, it seems to be the best way for now!
>
>
>


April 01, 2002
"J. Daniel Smith" <j_daniel_smith@HoTMaiL.com> wrote in message news:a89tgs$bmi$1@digitaldaemon.com...

> This looks a lot like C#'s "delegates and events" mechanism.  Coincidence? Is it worth making this technique a standard part of the language like C#?

I proposed it a hundred times already!
Probably, I wasn't that convincing... =)



« First   ‹ Prev
1 2 3 4 5