c++ Menu Chooser program Programming Software Development by turista …} }; int _tmain(int argc, _TCHAR* argv[]) { Menu Chooser; return 0; } [/CODE] and i get this error. …\desktop\c++\week 3 credit\menu chooser\menu chooser\menu chooser\menu chooser.cpp(64): fatal error C1075: …users\ceabear\desktop\c++\week 3 credit\menu chooser\menu chooser\menu chooser\menu chooser.cpp(12)' was matched ========== Build: … Re: c++ Menu Chooser program Programming Software Development by Tomi1988 [CODE] // Menu Chooser.cpp : Defines the entry point for the console application. // #include &… Menu Chooser Program Programming Software Development by Decessus … easy. Here is the code for that program. [code] // Menu Chooser // Demonstrates the switch statement #include <iostream> using namespace… I have tried to rewrite using enumerations. [code] // Menu Chooser 2 // Menu chooser using enumerations #include <iostream> using namespace std… Microsoft Outlook 2003 Field Chooser Issue Community Center by kronos2 … been told one way to deal with this is field chooser as you can create an additional column called “Analyst” , when… this but I can not get beyond setting up field chooser and adding the “Analyst” column. Has anyone done a similar… Color Chooser Programming Software Development by allang I put together a simple color chooser and havce one other thing I want to accomplish but … power Flash color chooser Digital Media UI / UX Design by JohnAvo Anyone knows a power Flash color chooser? I couldnt find anything free and good quality. Re: power Flash color chooser Digital Media UI / UX Design by GreenDay2001 >> power Flash color chooser What exactly do you mean. You want a colour picker, which is open source and want to use it in your project? Open File Chooser With Camera Option In Webview File Option Programming Web Development by androidexampl In this example opening url in webview and showing progress Dialog for page. Show file chooser option on clicking file option for web form . Open new link from webview to external ............................ Read More Re: c++ Menu Chooser program Programming Software Development by turista i should of added that the other posting does not have the explenation about it being OOP which is the part im having issues with. Re: c++ Menu Chooser program Programming Software Development by Chilton Why do you have two main functions? Also, use code tags and check the line the error is identifying. Re: c++ Menu Chooser program Programming Software Development by WaltP First thing is to [url=http://www.gidnetwork.com/b-38.html]format your code[/url] properly. That will prevent the errors you have now, never to return again. Well, almost never... Re: c++ Menu Chooser program Programming Software Development by Chilton Is there any other problem with your code now? Re: c++ Menu Chooser program Programming Software Development by WaltP [QUOTE=Chilton;1610182]Is there any other problem with your code now?[/QUOTE] That code posted was not by the OP. That was simply another EGO post violating our [I]don't do other's homework[/I] for them policy. Re: c++ Menu Chooser program Programming Software Development by Chilton [QUOTE=WaltP;1610190]That code posted was not by the OP. That was simply another EGO post violating our [I]don't do other's homework[/I] for them policy.[/QUOTE] Ah, thanks for letting me know. I didn't notice that. Re: Menu Chooser Program Programming Software Development by zyruz Your probleme lies in[CODE] if (myDifficulty = 3) [/CODE] You are only asigning the value 3 (or 1 or 2) to the myDiffculty, change the '=' too '==' and it shuld work. You arent using the enum difficulty.... if you change the testing to: [CODE] if (myDifficulty == Easy) [/CODE] you are using the enum. Re: Menu Chooser Program Programming Software Development by Decessus Yeah, I caught that after I had already posted. I was hoping that would fix the problem. It didn't change though. What happens is the line "cin >> myDifficulty" gets highlighted and I get a warning. I don't know how to read the compile log very well, but it says that there is "no match" for that line. Re: Menu Chooser Program Programming Software Development by zyruz no match for 'operator>>' in 'std::cin >> myDifficulty' is the error I get, and it means that you havent declared anny overload for the >>. but use int for geting the choise, and use the enum for testing. cant think that the book want you to start overloading in chapter2 :) Re: Menu Chooser Program Programming Software Development by Decessus I'll try that out. One thing I noticed while I was trying to test the program was that it kept running the wrong program. I'd go to the command line and type in menu_chooser_2, and instead it would run menu_chooser. I noticed this when I changed the visiable options from "1 - Easy, 2 - Medium 3 - Hard" to "Easy, Medium, Hard."… Re: Menu Chooser Program Programming Software Development by Drowzee If you're using Visual C++: Try using 'Clean' under the 'Build' menu, and checking your project workspace to make sure you're telling it to use the proper files. If your old files are still there, select them and hit delete. This isn't a deletion of the file; it just removes it from the active project, allowing you to recompile without earlier … Re: Menu Chooser Program Programming Software Development by Decessus [QUOTE=Drowzee]If you're using Visual C++: Try using 'Clean' under the 'Build' menu, and checking your project workspace to make sure you're telling it to use the proper files. If your old files are still there, select them and hit delete. This isn't a deletion of the file; it just removes it from the active project, allowing you to recompile … Re: Menu Chooser Program Programming Software Development by zyruz it show the menu 1,2 and 3 becuse in [CODE] if (myDifficulty = 3) [/CODE] you aint checking, you are asigning the value 3 to myDifficulty change it to [CODE] if (myDifficulty == 3)[/CODE] Re: Color Chooser Programming Software Development by allang Figured it out Scrollbar name.setBackground(color); Re: Open File Chooser With Camera Option In Webview File Option Programming Web Development by rproffitt I would be guessing if this was about your Android app. Try to be a little clearer in the future. That said your topic on google finds the priors. Re: Open File Chooser With Camera Option In Webview File Option Programming Web Development by happygeek Nah, he's just a spammer posting links to his site. This one was his first attempt and he screwed up... Re: The rhyme game Community Center Geeks' Lounge by mmmmmmmmmmmm chooser Pass values from one class to another Programming Software Development by #include <lou> … A FAST FILE INTO THIS EXAMPLE // JFileChooser chooser = new JFileChooser(); // chooser.showOpenDialog(null); // file1 = new ReadFile(chooser.getSelectedFile().getAbsolutePath()); while(file1 == null) file1… Vertical Line Chart Average Programming Software Development by #include <lou> … A FAST FILE INTO THIS EXAMPLE // JFileChooser chooser = new JFileChooser(); // chooser.showOpenDialog(null); // file1 = new ReadFile(chooser.getSelectedFile().getAbsolutePath()); while(file1 == null) file1… Re: Help with finding a file? Programming Software Development by Ryden … != JFileChooser.APPROVE_OPTION) { System.exit(0); } */ /* * JFileChooser chooser = new JFileChooser(); chooser.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES); int code = chooser.showOpenDialog(null); if (code == JFileChooser.APPROVE_OPTION) { File… Help with finding a file? Programming Software Development by Ryden …(); Stringfind(); } public static void fileChooser() { JFileChooser chooser = new JFileChooser(); chooser.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES); int code = chooser.showOpenDialog(null); if (code == JFileChooser.APPROVE_OPTION) { File… Re: pagination not displaying results Programming Web Development by somedude3488 …been chosen if (isset($_GET['chooser'])) { // get the chosen value $chooser = $_GET['chooser']; // Define the number of… .= " <a href='{$_SERVER['PHP_SELF']}?chooser=" . $chooser . "&page=1'>FIRST</a… .= " <a href='{$_SERVER['PHP_SELF']}?chooser=" . $chooser . "&page=$lastpage'>LAST<…