Hey, great Thread guys:
Tater:
Thanks for that code, excellent docs, very tutorial.
Are all your programs documented that well?
Great stuff! I'll will run it.
"Our friend, however, will not learn programming by avoiding programming..."
I think that is a true statement.
Let me ask you this
Do you retype this(below) every time:
// create the window
VOID CreateMainWindow(void)
{ WNDCLASS wc;
// register App Class
memset(&wc,0,sizeof(wc));
wc.style = CS_CLASSDC;
wc.hInstance = Inst;
wc.hCursor = LoadCursor(NULL,IDC_ARROW);
wc.hbrBackground = CreateSolidBrush(GetSysColor(COLOR_3DFACE));
wc.lpfnWndProc = &MsgProc;
wc.lpszClassName = L"TINY_UNICODE";
RegisterClass(&wc);
// create the main window
Wind[0] = CreateWindowEx( WS_EX_CONTROLPARENT,
L"TINY_UNICODE",L"Tiny Unicode Editor",
WS_OVERLAPPEDWINDOW,
CW_USEDEFAULT,0,500,300,NULL,NULL,Inst,NULL);
OR
do you hand type it in each time ?Or paste it in?
Or use a template of sorts.
That's all I am saying.
I call it being practical, you might call it being lazy, or unprofessional.
Dialogs: sounds interesting, I'll check it out.
But I like
fast, tiny, and pretty.
Most "C" programs i see, are fast,tiny, but not pretty.
Usually, standard system colors, ugh!
Colorizing is also an artistic phase of programming.
BTW: I am planning to DIY (External-heart-pump, EECP).
For that i'll be using an Arduino micro. Which uses a subset of "C".
So, i'm thinking, since I am learning C anyways, why not learn it good ?
Thanks ALL...Vernon
www.vmars316.com