int DispachFunctionCall(int FunctionCallCode) { int i, ExitCode = 1, Line, SelectShape; switch(FunctionCallCode) { case 10: InformMesssageBox(150, 200, "File New function call, not yet coded!", "Press any key to continue"); break; case 11: InformMesssageBox(150, 200, "Open file function call, not yet coded!", "Press any key to continue"); break; case 12: InformMesssageBox(150, 200, "File Close function call, not yet coded!", "Press any key to continue"); break; case 13: InformMesssageBox(150, 200, "File Save function call, not yet coded!", "Press any key to continue"); break; case 14: InformMesssageBox(150, 200, "File Save As function call, not yet coded!", "Press any key to continue"); break; case 15: InformMesssageBox(150, 200, "Print function call, not yet coded!", "Press any key to continue"); break; case 16: InformMesssageBox(150, 200, "Print Preview function call, not yet coded!", "Press any key to continue"); break; case 17: InformMesssageBox(150, 200, "Print Set up function not yet coded", "Press any key to continue"); break; case 18: ExitCode = QUIT; break; // User wants to quit case 20: InformMesssageBox(150, 200, "Undo function call, not yet coded!", "Press any key to continue"); break; //Undo the three most recent editing action on the flowchart case 21: InformMesssageBox(150, 200, "Edit source code text, not yet coded!", "Press any key to continue"); break; case 22: InformMesssageBox(150, 200, "Edit flowchart symbol text - popup menu function call, t coded!", ); break; case 23: InformMesssageBox(150, 200, "Edit flowchart symbols function call, not yet coded!", "Press any key to continue"); break; case 24: InformMesssageBox(150, 200, "Write flowchart symbol text function call, not yet coded!", "Press antinue"); break; case 25: InformMesssageBox(150, 200, "Write common symbol text function call, not yet coded!", "Press any keontinue"); break; case 26: InformMesssageBox(150, 200, "Copy flowchart symbol text function not yet coded", "Press any key to continue"); break; case 27: InformMesssageBox(150, 200, "Paste flowchart symbol text function not yet coded", "Press any key to continue"); break; case 28: InformMesssageBox(150, 200, "Erase flowchart text view function not yet coded", "Press any key to continue"); break; case 29: InformMesssageBox(150, 200, "Do search on flowchart symbol text function call, not yet coded!", "Press an continue"); break; } UpdateLog(); return(ExitCode); }