Re: Validity Check != any character Programming Software Development by no1zson …cAgain; //variable for Y/N questions char cValid; // variable for validity check float user_input() // week 4 addition for sales amount { //prompt…%c" ,&fSales ,&cValid); // scans new input for validity } } // ends while loop iStorenum = iMenu(); //displays menu created above … Validity Check != any character Programming Software Development by no1zson … cAgain; //variable for Y/N questions char cValid; // variable for validity check float user_input() // week 4 addition for sales amount { //prompt…;%f %c",&fSales, cValid); // scans new input for validity } } // ends while loop iStorenum = iMenu(); //displays menu created above while… Re: Validity Check != any character Programming Software Development by no1zson …;%f %c",&fSales, cValid); // scans new input for validity } } // ends while loop [/code] Re: Validity Check != any character Programming Software Development by no1zson …;); { scanf ("%f",&fSales); // scans new input for validity } } // ends while loop iStorenum = iMenu(); //displays menu created above while… Re: Validity Check != any character Programming Software Development by no1zson … else I get even more confused, so when working on validity for my float I tend to get tunnel vision. Thanks… Re: Validity Check != any character Programming Software Development by no1zson …(); // scanf ("%f",&fSales); // scans new input for validity } } // ends while loop iStorenum = iMenu(); //displays menu created above while… validity check error Programming Software Development by cdea06 I'm trying to improve the validity checks in my program, but no matter what I do, … Re: Sharepoint on validity? Hardware and Software Microsoft Windows by BigPaw …to me to be something very general. The word 'Validity' can have different shades of meaning. There is the…you a broader explanation of the word '[Validity](http://www.thefreedictionary.com/Validity)'. The context of your tutor's question…be about coding or programming, but more like this... Validity: Give a reason(s) Why SharePoint can/should be… How to check the validity of the json object Programming Software Development by vamsicoolman please help me how to check the validity of the json object if suppose the example of the … want a script in python which would give me the validity of the object as the output by taking the json… Re: Sharepoint on validity? Hardware and Software Microsoft Windows by CimmerianX You'll need to be more specific. Sharepoint has tools to check for the validity of many coponents like cert validity, user app license validity, etc.... Re: Sharepoint on validity? Hardware and Software Microsoft Windows by darthswift00 … was told to use the following to present about sharepoint: Validity, Security settings, functinality and intergration. Now i asked the lecture… on it and present it, but idont understand what does validity mean in terms of sharepoint as we havnet worked on… question. What does it have to do with sharepoint "Validity"? Thank you C++ function to check validity of sudoku Programming Software Development by brlukosk … daniweb. I am working on a function to check the validity of a sudoku puzzle. It must check the 9x9 matrix… Re: C++ function to check validity of sudoku Programming Software Development by WaltP [QUOTE=brlukosk;474667]Hello all! New here at daniweb. I am working on a function to check the validity of a sudoku puzzle. It must check the 9x9 matrix to make sure it follows the rules and is a valid sudoku puzzle. this is what I have come up with so far: ... Any ideas?[/QUOTE] Maybe finish the program, I suppose... :-/ Re: C++ function to check validity of sudoku Programming Software Development by brlukosk …: "I am working on a function to check the validity of a sudoku puzzle. It must check the 9x9 matrix… Re: C++ function to check validity of sudoku Programming Software Development by WaltP …: "I am working on a function to check the validity of a sudoku puzzle. It must check the 9x9 matrix… Sharepoint on validity? Hardware and Software Microsoft Windows by darthswift00 Hi guys, I was wondering if anyone knows "What is validity" in terms of Sharepoint? Thanks Re: Sharepoint on validity? Hardware and Software Microsoft Windows by darthswift00 Hi CimmerianX, thanks for the reply. Thats the thing i was asked to present this topic at college and have no idea what they mean by that. i looked up for sharepoint on validity,and all that came up were errors... So what exactly is it then if you can explain it to me please. Thank you. Re: Sharepoint on validity? Hardware and Software Microsoft Windows by darthswift00 Hi BigPaw, thanks for replying, i guess ill do some more research. do you think it relates to how you validate stuff like on vb.net for example "if username txt is blank then messagebox error will say - blank msg try again , else message box says- confirmed?" would that be what "Validity" mean? W3C validity Digital Media Digital Marketing Search Engine Strategies by johmny What are the W3C validity? What are the affects of these errors in seo? C++ move validity for tic tac toe Programming Software Development by lucyfersdaddy … a TicTacToe program. I am having troubles with checking the validity of each move. I have tried multiple things, but could… Test validity of a password? Programming Software Development by usingnamespace … trouble trying to create a program that will test the validity of a user entered password. Below is the criteria of… Re: Validity Check != any character Programming Software Development by Hiroshe I don't understand what the problem is, can you be more specific? Where about's in the code are you talking about? Re: Validity Check != any character Programming Software Development by Dave Sinkula Read the user input as a string, validate the string according to the specific details for dollar amount entry. Such as, begins with dollar sign, is followed by nothing but digits until a possible decimal point, and then no more than two digits. Or whatever. Re: Validity Check != any character Programming Software Development by yellowSnow I gave you a clue to this issue in your thread titled "GOTO command -C". You need to "consume" the '\n' character left over from when scanning the store number. Read my post again in that thread. In your iMenu() function, replace: [CODE=C] scanf("%d", &iSelection); [/CODE] with this: [CODE=C] scanf(&… Re: Validity Check != any character Programming Software Development by yellowSnow While I'm at it, you'll have to do the same thing with this code in your main [CODE=C] while (iStorenum < 1 || iStorenum > 3) //if store number is not 1, 2 or 3 { printf("INVALID NUMBER ENTERED! Please enter 1,2 or 3: "); { scanf("%d", &iStorenum); //scans … Re: Validity Check != any character Programming Software Development by no1zson Hi Yellowsnow, I do remember that. That instruction got me to where I am today. I think the extra <RETURN> I have to hit everytime I input has something to do with your comment about 'consume the '\n', but for the life of me I cannot figure out how to consume anything! lol I am playing with it, but I completely do not know how to "… Re: Validity Check != any character Programming Software Development by no1zson [QUOTE=Dave Sinkula;947347]Read the user input as a string, validate the string according to the specific details for dollar amount entry. Such as, begins with dollar sign, is followed by nothing but digits until a possible decimal point, and then no more than two digits. Or whatever.[/QUOTE] Dave, that is so far beyond me I only vaguely … Re: Validity Check != any character Programming Software Development by yellowSnow In all honesty, I'm not sure what you're trying to achieve with the [B]cValid[/B] variable in your scanf statements. If you want basic (and I mean really basic) validation checking for your float variable using scanf, try this little code snippet out and see if you can incorporate something like it into your code (and read the warning after the … Re: Validity Check != any character Programming Software Development by no1zson Great. I will see what I can do with this example. I will work on it tonight and tomorrow and let you know how I do. I appreciate the help. :) Re: Validity Check != any character Programming Software Development by Dave Sinkula [url]http://www.daniweb.com/code/snippet357.html[/url]