What is the issue you are facing ? Did you even try to write any code ? Please share your code (attempt) with us.
Apurv If Java had true garbage collection, most programs would delete themselves upon execution.
What is the issue you are facing ? Did you even try to write any code ? Please share your code (attempt) with us.
Apurv If Java had true garbage collection, most programs would delete themselves upon execution.
Don't understand what the problem is ... its taking me to http://www.esp.com.cn/index.aspx[^]
Apurv If Java had true garbage collection, most programs would delete themselves upon execution.
hack004 wrote:
What is this ???? its something written in Chinese ...
Apurv If Java had true garbage collection, most programs would delete themselves upon execution.
Uma Shankar Patel wrote:
bigrock is feasible for windows hosting
I didn't had very good experience with their windows hosting, but I am very happy with linux service
Apurv If Java had true garbage collection, most programs would delete themselves upon execution.
Try bigrock.in
Apurv If Java had true garbage collection, most programs would delete themselves upon execution.
I will suggest bigrock.in Go with linux hosting and use phpBB forum
Apurv If Java had true garbage collection, most programs would delete themselves upon execution.
Hema Bairavan wrote:
I have plan to hire a dedicated server with mssql and databases to accomplish these things and save the data there.
Well if your budget is good, you can very well afford to hire someone to work on performance.
Apurv If Java had true garbage collection, most programs would delete themselves upon execution.
Actually you should bookmark -> google.com[^]
Apurv If Java had true garbage collection, most programs would delete themselves upon execution.
Rather than that go with some css based pop-up. Like this one http://jqueryui.com/demos/dialog/#modal-message[^]
Apurv If Java had true garbage collection, most programs would delete themselves upon execution.
I know according to the rule book only English posts are allowed. Could there be a functionality by which the non-English sentences can be converted to English, something similar to what Google translator does. I mean if someone posts a question in say french, CP will convert it to English while displaying it to viewers. Obviously there could be a link (or button) to see the original post(in french). NB: Please ignore the grammar mistakes (thanks to FF for covering my spelling mistakes)
Apurv If Java had true garbage collection, most programs would delete themselves upon execution.
prithaa wrote:
AbstractDocument.BranchElement E1 = (BranchElement) D.getDefaultRootElement();
You haven't shown us the implementation of
getDefaultRootElement()
Also, what's the relation between BranchElement and Element.
Apurv If Java had true garbage collection, most programs would delete themselves upon execution.
Rahul_Iit wrote:
while I was having the bath..suddenly
The same thing happened with me a day before yesterday ..... my bank account suddenly got refilled .... :) ... Then a friend of mine reminded that it was the 1st of the month :laugh: :laugh: :laugh:
Apurv “Never trust a computer you can’t throw out a window.” (Steve Wozniak) “There are only two industries that refer to their customers as ‘users’.” (Edward Tufte)
I wonder what kind of posts attract more points here .... :confused::confused::confused: :)
Apurv “Never trust a computer you can’t throw out a window.” (Steve Wozniak) “There are only two industries that refer to their customers as ‘users’.” (Edward Tufte)
Thanks :)
Apurv “Never trust a computer you can’t throw out a window.” (Steve Wozniak) “There are only two industries that refer to their customers as ‘users’.” (Edward Tufte)
:laugh: :laugh: :laugh:
Apurv “Never trust a computer you can’t throw out a window.” (Steve Wozniak) “There are only two industries that refer to their customers as ‘users’.” (Edward Tufte)
The Sick Rose is a poem by William Blake
O rose thou art sick, The invisible worm, That flies in the night In the howling storm Has found out thy bed Of crimson joy : And his dark secret love Does thy life destroy.
Apurv “Never trust a computer you can’t throw out a window.” (Steve Wozniak) “There are only two industries that refer to their customers as ‘users’.” (Edward Tufte)
Oh .. sry .. I think 'cursors' can only solve this ...
Apurv “Never trust a computer you can’t throw out a window.” (Steve Wozniak) “There are only two industries that refer to their customers as ‘users’.” (Edward Tufte)
I am using MS SQL 2008 server database
Apurv “Never trust a computer you can’t throw out a window.” (Steve Wozniak) “There are only two industries that refer to their customers as ‘users’.” (Edward Tufte)
private void btnSave_Click(object sender, EventArgs e)
{
try
{
if (txtFirstName.Text == "")
MessageBox.Show("Patient's First Name can't be blank", "Incomplete data", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
else if (txtDOB.Text == "")
MessageBox.Show("Patient's Date of Birth can't be blank", "Incomplete data", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
if (txtLastName.Text == "")
txtLastName.Text = " ";
bool gender = true;
if (!rbMale.Checked)
gender = false;
MRMDbDataSetTableAdapters.PatientsDetailsTableAdapter pdta = new MediRecordManager.MRMDbDataSetTableAdapters.PatientsDetailsTableAdapter();
if (pdta.AddNewPatient(txtFirstName.Text, txtLastName.Text, calDOB.SelectionStart, (byte)cbBloodGroup.SelectedValue, gender) > 0)
{
MessageBox.Show("Data inserted to database !");
btnCancel.Text = "Close";
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
}
Apurv “Never trust a computer you can’t throw out a window.” (Steve Wozniak) “There are only two industries that refer to their customers as ‘users’.” (Edward Tufte)