Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
3
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
2 Commented Posts
0 Endorsements
Ranked #2K
~6K People Reached
Favorite Tags

18 Posted Topics

Member Avatar for vampz

Close the image tag properly and modify the css below. #menu{ float:right; }

Member Avatar for vampz
0
189
Member Avatar for Saboor880

Please check whether you have installed the plugin "Java Web and EE".

Member Avatar for JamesCherrill
0
435
Member Avatar for micksulley

Check whether the python3 interpretter is set in **Preferences -> Debugger -> Python3**.

Member Avatar for micksulley
0
426
Member Avatar for Saeid_1

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 =.

Member Avatar for vasanth19
0
228
Member Avatar for toxicandy

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.

Member Avatar for toxicandy
0
2K
Member Avatar for davidbcn

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(); …

Member Avatar for davidbcn
0
131
Member Avatar for all4peace

Did you check whether the datasource is based on SQL Instance (server/SQLEXPRESS) ?

Member Avatar for asif671
0
248
Member Avatar for Mirfath

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(); }

Member Avatar for pritesh2010
0
1K
Member Avatar for tricket_7

Set TextMode="Password" like this, <asp:TextBox ID="txt_password" TextMode="Password" runat="server"></asp:TextBox>

Member Avatar for Mike Askew
0
161
Member Avatar for BigHeart

//Say var1 is the value you get var1 = "41/3/100"; string[] var2 = var1.split('/'); MessageBox.Show(var2[2]);

Member Avatar for notconfirmed
0
147
Member Avatar for jithusdani
Member Avatar for Shivashankar.C
0
97
Member Avatar for firingnow

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 ".

Member Avatar for reach_shailshar
0
121
Member Avatar for shankbond

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.

Member Avatar for kvprajapati
0
77
Member Avatar for mania_comp

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]

Member Avatar for vasanth19
0
100
Member Avatar for vasanth19

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 …

Member Avatar for vasanth19
0
584
Member Avatar for shankbond
Member Avatar for gunbuster363

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 ?

Member Avatar for vasanth19
0
86
Member Avatar for LizzyJo

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]

Member Avatar for LizzyJo
0
87

The End.