Windows Specific..

Started by
0 comments, last by Laroche 22 years, 4 months ago
im working on a map editor, and i know how to do everything really, but i need some help and have a few questions... 1) should i make the window and everything myself or use MFC? 2) if i make a window myself, how do i do NEW, SAVE, and SAVE AS? i dont mean resources (the menus are there), but how do i make file new do the file new like in every other windows program, and so on. If anyone could post a link to a website with the way to do this i would appreciate it ALOT thanks for your time.
Check out my music at: http://zed.cbc.ca/go.ZeD?user_id=41947&user=Laroche&page=content
Advertisement
mfc dont help with file writing. look into fopen() fwrite() fread() or createfile() read() write() all at msdn. you need to use the file functions and handle the file stuff yourself. also look into GetSaveFileName() GetOpenFileName() for the file dialog stuff.

This topic is closed to new replies.

Advertisement