- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
anyone knows the differences between quickwin and windows applications?
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
In a Windows application, you are responsible for
seting up and registering your window(s), menus, writing the message-handling loop and supplying window message-handling procedures (WinProcs etc). It normally is a single-thread process, but you can start other threads if you want.
QUickWin is a multithread process that sets up windows for you using the the WIndows Multiple Document Interface model (MDI) and provides a default window menu bar and a status bar. Normally, you do not have access to the message handlers (except for dialogs you set up), but you can sub-class windows and add some bespoke message handling if necessary.
seting up and registering your window(s), menus, writing the message-handling loop and supplying window message-handling procedures (WinProcs etc). It normally is a single-thread process, but you can start other threads if you want.
QUickWin is a multithread process that sets up windows for you using the the WIndows Multiple Document Interface model (MDI) and provides a default window menu bar and a status bar. Normally, you do not have access to the message handlers (except for dialogs you set up), but you can sub-class windows and add some bespoke message handling if necessary.

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page