Thread overview | ||||||
---|---|---|---|---|---|---|
|
April 01, 2001 Re: Win32 Guide | ||||
---|---|---|---|---|
| ||||
What kind of sample? Here's the most simple one: --------------------hello.c----------------- #include <stdio.h> void main() { printf("hello world\n"); } ---------------------------------------------- To compile: sc hello To run: hello Elisha Kendagor wrote in message <3AC6D48F.5F65BB2A@iconnect.co.ke>... >Could anybody please provide me with a sample complete win32 code? In >all of DigitalMars documentation, everything for win32 seems to have >been done in IDDE. I downloaded the command line compiler and now I am >searching for clues on where I can find win32 samples. >Thank you. > |
April 01, 2001 Re: Win32 Guide | ||||
---|---|---|---|---|
| ||||
Posted in reply to Walter | I meant a windows application with a menu, "about" and status bar.
Walter wrote:
> What kind of sample? Here's the most simple one:
>
> --------------------hello.c-----------------
> #include <stdio.h>
>
> void main()
> {
> printf("hello world\n");
> }
> ----------------------------------------------
>
> To compile:
>
> sc hello
>
> To run:
>
> hello
>
> Elisha Kendagor wrote in message <3AC6D48F.5F65BB2A@iconnect.co.ke>...
> >Could anybody please provide me with a sample complete win32 code? In
> >all of DigitalMars documentation, everything for win32 seems to have
> >been done in IDDE. I downloaded the command line compiler and now I am
> >searching for clues on where I can find win32 samples.
> >Thank you.
> >
|
April 01, 2001 Re: Win32 Guide | ||||
---|---|---|---|---|
| ||||
Posted in reply to Elisha Kendagor | What you need then are the windows sample code. We have the samples, and they'll be on the CD version of Digital Mars C/C++. The samples are licensed from Microsoft, and are the same ones they distribute (DMC++ is very compatible with Microsoft VC++ source code). We're working as hard as we can to get the full CD ready (it's around 250 megabytes of stuff!). -Walter P.S. I'm sorry I have to ask you to be patient! In the meantime, may I suggest any of the Windows C++ programming books out there. Elisha Kendagor wrote in message <3AC6DF39.9E39B6E2@iconnect.co.ke>... >I meant a windows application with a menu, "about" and status bar. > >Walter wrote: > >> What kind of sample? Here's the most simple one: >> >> --------------------hello.c----------------- >> #include <stdio.h> >> >> void main() >> { >> printf("hello world\n"); >> } >> ---------------------------------------------- >> >> To compile: >> >> sc hello >> >> To run: >> >> hello >> >> Elisha Kendagor wrote in message <3AC6D48F.5F65BB2A@iconnect.co.ke>... >> >Could anybody please provide me with a sample complete win32 code? In >> >all of DigitalMars documentation, everything for win32 seems to have >> >been done in IDDE. I downloaded the command line compiler and now I am >> >searching for clues on where I can find win32 samples. >> >Thank you. >> > > |
April 01, 2001 Re: Win32 Guide | ||||
---|---|---|---|---|
| ||||
Posted in reply to Walter | In the mean time, everyone should goto http://msdn.microsoft.com/visualc/downloads/samples.asp while it is still free. Don't know when MS will stop giving away free MSDN stuff. Walter <walter@digitalmars.com> wrote in message news:9a6u9b$105h$1@digitaldaemon.com... > What you need then are the windows sample code. We have the samples, and they'll be on the CD version of Digital Mars C/C++. The samples are licensed from Microsoft, and are the same ones they distribute (DMC++ is very compatible with Microsoft VC++ source code). We're working as hard as we can to get the full CD ready (it's around 250 megabytes of stuff!). > > -Walter > > P.S. I'm sorry I have to ask you to be patient! In the meantime, may I suggest any of the Windows C++ programming books out there. > > > Elisha Kendagor wrote in message <3AC6DF39.9E39B6E2@iconnect.co.ke>... > >I meant a windows application with a menu, "about" and status bar. > > > >Walter wrote: > > > >> What kind of sample? Here's the most simple one: > >> > >> --------------------hello.c----------------- > >> #include <stdio.h> > >> > >> void main() > >> { > >> printf("hello world\n"); > >> } > >> ---------------------------------------------- > >> > >> To compile: > >> > >> sc hello > >> > >> To run: > >> > >> hello > >> > >> Elisha Kendagor wrote in message <3AC6D48F.5F65BB2A@iconnect.co.ke>... > >> >Could anybody please provide me with a sample complete win32 code? In > >> >all of DigitalMars documentation, everything for win32 seems to have > >> >been done in IDDE. I downloaded the command line compiler and now I am > >> >searching for clues on where I can find win32 samples. > >> >Thank you. > >> > > > > > |
Copyright © 1999-2021 by the D Language Foundation