- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 3
- Posts with Upvotes
- 3
- Upvoting Members
- 3
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
18 Posted Topics
Re: Close the image tag properly and modify the css below. #menu{ float:right; } | |
Re: Please check whether you have installed the plugin "Java Web and EE". | |
Re: Check whether the python3 interpretter is set in **Preferences -> Debugger -> Python3**. | |
Re: Two things to be modified. 1. char ch = _getch(); //This ensures escape key is detected. 2. if and else operators should be used with == instead of =. | |
Re: You can design the page in a single form and still process the validations, insert, update and retrieval at once. Declare variables and pass them as parameters if you need to use functions. Posting more code may help us answer in detail. | |
Re: Hi, You just need to loop through every email and send it. Try executing below code and confirm. function SendMail($msg,$subject,$addresses) { require "class.phpmailer.php"; //Fetch from email here foreach($addresses as $key=>$val){ $email = test_input($val); if((trim($email)=='') || (!filter_var($email, FILTER_VALIDATE_EMAIL))){ unset($addresses[$key]); } } $addresses=array_unique($addresses); $row = FetchAllsettingsCustomMailchmp(); //end fetch $mail = new PHPMailer(); … | |
Re: Did you check whether the datasource is based on SQL Instance (server/SQLEXPRESS) ? | |
Re: You can declare a public variable say var1 in the second form and call as below private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e) { Item i = new Item(); i.var1 = "your value"; i.Show(); } | |
Re: Set TextMode="Password" like this, <asp:TextBox ID="txt_password" TextMode="Password" runat="server"></asp:TextBox> | |
Re: //Say var1 is the value you get var1 = "41/3/100"; string[] var2 = var1.split('/'); MessageBox.Show(var2[2]); | |
Re: Just drop the ajax dll into the bin folder of the hosting directory. | |
Re: Check whether you have selected Framework version 2.0 in IIS. If you still face the problem, open command prompt and execute "C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe -i ". | |
Re: You may use a table with fixed width in pixels, if you do not want the page to resize when the screen resolution is changed. | |
Re: Try this [CODE] <% public string myFunction() { //code to retrieve from database return "value_from_db"; } %> <script type="text/javascript" language="javascript"> function ShowMessage() { var msg; msg = "<%=myFunction()%>"; alert(msg); } </script> [/CODE] | |
Has someone managed to install Oracle 11.1 on Fedora 12 ? The following packages failed to install : Checking for libaio-0.3.106-i386; Not found. Failed <<<< Checking for libstdc++-4.1.1-i386; Not found. Failed <<<< Checking for libgcc-4.1.1-i386; Not found. Failed <<<< Checking for glibc-devel-2.5-i386; Not found. Failed <<<< Checking for compat-libstdc++-33-3.2.3-i386; Not … | |
Re: Catch and display the error .. or mail it .. | |
Re: If it's a web based registration, you could accept the registration process using SSL. Your messaging application could also use SSL to exchange the messages, if you use HTTP. Which platform did you plan to implement ? | |
Re: Change the script to this : [CODE] <script> function celcius() { var inp = parseFloat(document.getElementById("input").value); document.getElementById("answers").value = inp + Math.round(100/(212-32) * (inp - 32 )); } function farenheit() { var inp = parseFloat(document.getElementById("input").value); document.getElementById("answers").value = inp + Math.round((212-32)/100 * (inp + 32)); } </script> [/CODE] |
The End.