Re: Online subission forms not sending emails of submitted info Programming Web Development by david.tigner … it is that the email address in question is one inputted by the submitter. What if this question is not asked… know if the letter is inputted twice Programming Software Development by Sunny.Day.HYH … can my program read if a letter is inputted again it prompts "letter inputted already"? heres my code: #include <… how to sort and merge an inputted array? Programming Software Development by loozax can some1 give me an example of sorting and merging an 10 inputted integers?!using java array.. Re: how to sort and merge an inputted array? Programming Software Development by VernonDozier … give me an example of sorting and merging an 10 inputted integers?!using java array..[/QUOTE] Google it. "merge sort… Can't reverse the inputted characters Programming Software Development by aladar04 I can't reverse the inputted word... Here is my code... Please correct it... Sample Output: … Deconstructing user-inputted string and comparing each word to the array Programming Software Development by unsureandunclea … sorts. however, i am not sure how to deconstruct user inputted data and compare it to the array. Any Help would… Nth position of inputted keywords Programming Web Development by hmphf How do I identify the nth position of an inputted keywords (including numbers) through a n html search form? Eg: keyword1 keyword2 keyword3 position of keyword1 = 1 position of keyword2 = 2 position of keyword3 = 3 And then use that nth keyword to query a particular field in mysql tables. Thanks! create dropdown button once inputted value in textbox Programming Web Development by xuexue hi guys, could you help me? how could i create a dropdown button automatically once a value is inputted in the textbox.. thanks thanks.. Searching an inputted elements to an array Programming Software Development by jsefraijeen …'s/ma'am , please help on how to search an inputted elements to an array... for example... i added a name… Addition of number from dynamically created textboxes after inputted by user. Programming Software Development by P.manidas Dear Sir/Madam, I have created a sample program that dynamically created up to 7 numbers of Labels and Text Boxes. Here I want to add those numbers inputted by user on dynamically created text boxes. I have tried a lot but all are in vain. Please guide me to solve this problem. I have attached my test program. How will I trap the inputted letters/characters in C++? Allow only numbers. Programming Software Development by RascelleGrepo …/character, I want the program to prompt that the user inputted a wrong input. If the user cin a number/numbers… Get value inputted in textfield from one Class to another Programming Software Development by rohan21blade … String getVal() { return value1; } } *i want to get the value inputted in the textfield of index.java to checkout.java when… I have a user-inputted string that I need to do math calculations with Programming Software Development by Jaken_1 Like the title says. I have a user-inputted string that I need to do math calculations with, therefore, … How to make a c++ function that stops when a nonpositive number is inputted Community Center Say Hello! by dummyjy0*_08 … that will ask user a positive integer until the user inputted a non-positive number or 0 and then display the… Re: Sum an array of number inputted by user Programming Software Development by hiimhenryyy … exactly..[/QUOTE] I'm trying to sum all the number inputted into the array. For example I type a.out 8… Re: Sum an array of number inputted by user Programming Software Development by hiimhenryyy …, (argc-1))/d; std::cout << "You've inputted "; while (e < argc ) { std::cout << argv… Re: Trying to store inputted string as individual chars to individual index's of Array Programming Software Development by subith86 [QUOTE=gdubz;1736029]where do i set the parameter to read in 1 char for each index?[/QUOTE] Can you be a bit more clear? I believe I gave the solution to what you have asked "Trying to store inputted string as individual chars to individual index's of Array" What is blocking you? Re: Doesn't store inputted data on the mssql Programming Web Development by Jake.20 i was able to open the database but the code in the submit button where the inputted data will be stored on the mssql is not working. inputted number converted into roman numeral? Programming Software Development by chescarleta18 /*i know how to convert but i dont know how, if its a larger no. ex. thousands??? because it has no restriction in nos.,,what can i use?*/ Re: inputted number converted into roman numeral? Programming Software Development by jephthah M (1000) is the largest roman numeral. Therefore, MMMDCCCLXXXVIII (3888) is the largest value that can be represented by roman numerals via standard rules. above that value, you can use a bar over a number to indicate multiples of 1000. for instance [b]IV[/b] with a bar over top of it equals 4 * 1000 = 4000. this is not easy to do in ASCII, so… inputted letters that will print asterisk Programming Software Development by jocelyn.eyog pls help to under stand the java program Re: inputted letters that will print asterisk Programming Software Development by jalpesh_007 where's java program? Re: inputted letters that will print asterisk Programming Software Development by jocelyn.eyog create a program that will ask the user to input a string and will display a list of letters of the alphabet with its corresponding occurence count.The program will count the number of occurence of each letter in the string and will print a series of asterisks corresponding to the number of each letter's occurence. The string can have uppercase … Re: inputted letters that will print asterisk Programming Software Development by stultuske nothing but very simple basic stuff: a for loop, an if statement, ... write it down in subparts in pseudo code, for instance: - read a String - for n = 0 ; n < input.size get nth letter count # times letter occurs print n for l = 0; l < # times print * end-for end-for once you have that, write the subparts in javacode and use them … Re: inputted letters that will print asterisk Programming Software Development by jocelyn.eyog what is subparts? how can i run the program.. actually i don,t know even basic.. im knew in program. pls help Re: inputted letters that will print asterisk Programming Software Development by jocelyn.eyog im new in java Re: inputted letters that will print asterisk Programming Software Development by jocelyn.eyog we have project in java.. how to create this program. display this folowing module: MANAGE STUDENT GRADES MENU [1]Add New Student Grade [2]Edit Existing Student Grades [3]Delete Existing Student Grades [4]Display List of Students Grades [5]Back to Main Menu Re: inputted letters that will print asterisk Programming Software Development by stultuske by writing the code. it's already been divided in subtasks, so do them one at the time. for your question: what are subparts - a word is a subpart of a sentence. a method is a subpart of a class, a class is a subpart of an application. Re: know if the letter is inputted twice Programming Software Development by rubberman There are several problems with this. One is that a letter can be input in either upper or lower case. Since you are limiting input to 26 letters (the number of letters in the English alphabet), then you need to convert the letter to upper case to match your array. Second, your logic will not operate properly if the user inputs an underscore since … Re: how to sort and merge an inputted array? Programming Software Development by BestJewSinceJC Yeah, have your class implement the Comparable interface, then use Collections.sort(ArrayList goes here). With ints it is probably even easier than that though,.