What am I doing wrong? Programming Software Development by Colin454 ….showInputDialog("Please enter the radius of the circle "); //Convet the string input to a double radius=Double.parseDouble(input… Convert C++ to C Programming Software Development by rchris2121 … 0; /* comparison failed, not a palindrome */ } } void strToUpper( char *src ) { /* convet to upper case any letter */ while( ( *src = toupper( *src ) ) != '\0… Retrive the ip address from .txt file and convert into xml file Programming Software Development by Hari_8 … i need to retive the ip and it need to convet into xml file in .txt file ips like his client1… Re: palindrome using recursive Programming Software Development by Aia … 0; /* comparison failed, not a palindrome */ } } void strToUpper( char *src ) { /* convet to upper case any letter */ while( ( *src = toupper( *src ) ) != '\0… Re: windows 2000 Hardware and Software Microsoft Windows by jbennet Win2k does need floppies I think. And you can use floppies with virtual machines (i used a tool to convet the winnt4 disk to a .img file then mounted it) Re: windows 2000 Hardware and Software Microsoft Windows by dcc [QUOTE=jbennet;375415]Win2k does need floppies I think. And you can use floppies with virtual machines (i used a tool to convet the winnt4 disk to a .img file then mounted it)[/QUOTE] DANG!!! I must atone, I've been using a CD all this time!?!;) btw jbennet...proof read, proof read, proof read Re: java compilerhttp://www.daniweb.com/forums/dani-images/icons/help.gif Programming Software Development by sara_84 it is a project, i need a program using java that when i enter if statement covert it to switch and when i enterd switch statement convet it to if (deal with nested loop), do the same with for and while statement Re: How can I retrieve image from database? Programming Software Development by IdanS … stored the picture as byte array right? So now to convet it back to image you need to do: [CODE] System… Re: Javascript in PHP not working Help plz Programming Web Development by vibhaJ … Date : July 27, 2010 10:00:00 <br /> Convet to local : <?php echo "<script language=javascript… Re: PowerPoint file in PHP Programming Web Development by shivaniaroraji if you just want to read powerpoint file and convet it into a flash file and you can display that on even simple html page Re: PowerPoint file in PHP Programming Web Development by ApocDen [QUOTE=shivaniaroraji;1301710]if you just want to read powerpoint file and convet it into a flash file and you can display that on even simple html page[/QUOTE] yes and you can convert it to pdf and use that as well Re: Date conversion Programming Software Development by lolafuertes … in format of yyyy-MM-dd ( called also universal format), convet it to date-time and convert the result to long… Re: getline not reading in the last line in a file Programming Software Development by newbyE … duplicate not found update symbol table st[count].label = codeLabel; // convet to hex & update symbol table ultoa(locctr, hexLocctr, 16… Re: UPDATE SQL statement pulling in GDV value? Programming Software Development by ChrisHunter try `Convet.ToInt64(dataGridView2.SelectedCells[0].Value)` and see what happens. Let me know how you get on. Re: Compilation Error Programming Software Development by tony75 …’s say your script is shell.py,so you can convet shell.py to shell.exe like this.. 1.C:\Python27… Re: error C2679: binary '+' : no operator found which takes a right-hand operan Programming Software Development by NathanOliver You can use the following to convet from `System::String^` to `std:string` #include <msclr/marshal_cppstd.h> System::String^ xyz="Hi boys"; std::string converted_xyz=msclr::interop::marshal_as< std::string >( xyz); Re: How to print array in nasm. Programming Software Development by GunnerInc …] ; get current array element add ecx, 48 ; add 48 to convet to ASCII push ecx ; push to stack since we need… Convet to exe form Programming Web Development by Rajeshuriti Hi plz help me I am done project on asp.met back end-sqlserver2000 I want to convert this web application in to exe form Would you plz tell me how to convert it convet string into char Programming Software Development by extemer guys me trying to use switch statement in this program but cant get to end... i tryed to convert string into char but dont knw why it still not getting right... please help me [code]import javax.swing.*; import java.io.*; class HappyBirthday { public static void main(String[] args) throws IOException {… Re: convet string into char Programming Software Development by extemer guys me trying to use switch statement in this program but cant get to end... i tryed to convert string into char but dont knw why it still not getting right... please help me..... [code] class HappyBirthday { public static void main(String[] args) throws IOException { String Month;… Re: convet string into char Programming Software Development by JamesCherrill You can't do a switch on a char array. The Language Refeence says: The type of the Expression must be char, byte, short, int, Character, Byte, Short, Integer, or an enum type. THere was a recent thread here about doing a switch on String values - look it up. ps: Doing a switch on a String is apparently planned for inclusion in Java 7 (maybe … Re: convet string into char Programming Software Development by Gustavo JF hi, I hope you are doing well, first of all: in my opinion you must take/make coding easier and clear, for example you don't have to mix the GUI and console mode ( in line 29 you wrote: [CODE]Month = JOptionPane.showInputDialog("enter month");[/CODE] and again in same program in line 42 you wrote: [CODE]System.out.println("… Re: convet string into char Programming Software Development by extemer thnx man for help... how to convet nfa to dfa Programming Software Development by yara naser hi: please help me to find the code that convert nfa to dfa by using c++ and please send it to my email [email removed] thank you very much please help me now.....:icon_neutral: Re: how to convet nfa to dfa Programming Software Development by Ancient Dragon what is nfa and dfa -- expand the acronyms Re: how to convet nfa to dfa Programming Software Development by ArkM [QUOTE=yara naser;856114]hi: please help me to find the code that convert nfa to dfa by using c++ and please send it to my email [email removed] thank you very much please help me now.....:icon_neutral:[/QUOTE] [url]http://en.wikipedia.org/wiki/Nondeterministic_finite_state_machine[/url] May be you prefer if I will send you the solution via… Re: What am I doing wrong? Programming Software Development by Colin454 I fixed the int in the method call to a double and it still will not work Re: What am I doing wrong? Programming Software Development by jwenting *code tags expected. Redo from start* Re: What am I doing wrong? Programming Software Development by masijade remove the "int" and/or "double" now, from the call to the method. You include types when [i]defining[/i] and [i]declaring[/i] the methods. You include only [i]values[/i] when [i]calling[/i] the methods. Re: What am I doing wrong? Programming Software Development by Colin454 Thank you very much.