Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~472 People Reached
Favorite Tags
Member Avatar for khanrock

I am currently having a html code as: <form> <input type="text" name="price1" size="14" value="Rs.900" readonly="readonly"/> <input type="text" name="price2" size="14" value="Rs.600" readonly="readonly"/> <input type="text" name="price3" size="14" value="Rs.500" readonly="readonly"/> </form> <form name="qty"> <input type="text" name="quant1" id="id1" size="14" value="0"/> <input type="text" name="quant2" id="id2" size="14" value="0" /> <input type="text" name="quant3" id="id3" size="14" value="0" /> …

Member Avatar for partha.asp
0
179
Member Avatar for khanrock

i am installing php-joomla with apache on my system. m continuously getting the problem with mysql connectivity. The prob is: "Unable to connect to the database:The MySQL adapter "mysql" is not available." I have installed all the things & have also included dll extension of mysql. Please suggest a solution..

Member Avatar for ekseks
0
66
Member Avatar for khanrock

my code is: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace WindowsFormsApplication2 { public partial class Form1 : Form { double num; string text = ""; public Form1() { InitializeComponent(); } private void calFactorial_TextChanged(object sender, EventArgs e) { if (calFactorial.Text != …

Member Avatar for khanrock
0
113
Member Avatar for khanrock

[code] public partial class Form1 : Form { int row, col; int num = 0; public Form1() { InitializeComponent(); } private void generatebutton_Click(object sender, EventArgs e) { int rows = Convert.ToInt32(rowBox.Text); int cols = Convert.ToInt32(colBox.Text); for (int i = 2; i <= rows+1; i++) { for (int j = 4; …

Member Avatar for nick.crane
0
114