592 Posted Topics
Re: hmm how old is your machine? can you remove the RAM and boot it? When you remove it and boot it you should get a siren. If you do the switch off and report maybe take a picture of your pcs internal so I can see if something is out … | |
Re: [CODE]comd = new OleDbCommand(); comd.CommandText="INSERT INTO news (new_title, new_content) VALUES (@newTitle, @newContent"; comd.Connection=conn.getConnection(); comd.Parameters.AddWithValue("@vin",VIN); comd.Parameters.AddWithValue("@price",price); comd.Parameters.AddWithValue("@trandate",aDate); comd.Parameters.AddWithValue("@trantype",transType); comd.Connection.Open(); comd.ExecuteNonQuery(); comd.Connection.Close(); Response.Redirect("default.aspx") [/CODE] | |
Re: [url]http://bytes.com/topic/c-sharp/answers/731525-filestream-append-read-access-same-time[/url] | |
Re: I am a little confused "FS:A151940.A-CM4;4" "F[B]M[/B]S:A151940.A-CM4;*" Does the M mean anything or is it a Typo you have to use the Replace command. [CODE] string code = "FS:A151940.A-CM4;*" int num = 5; code = code.Replace("*",num.toString()); MessageBox.Show(code); [/CODE] String.Replace("oldText","newText"); Basically search for oldText and replace it with the newText; Hope … | |
Re: [url]http://h10025.www1.hp.com/ewfrf/wc/document?lc=en&dlc=en&cc=us&docname=bph06895#N911[/url] Base processor and speed | |
Re: Let me try and understand this right. You add things to ListView called lstCart from a ListView called lstData? and you add price to lstCart then why don't you just do this? [CODE]double getTotal() { double x=0; if (lstCart.Items.Count > 0) { foreach (ListViewItem temp in lstCart.Items) x = x … | |
Re: Why neg him, he is learning. WTF. int a [10]= [1,2,3,8,7,19,15,555,1024,12458] Peace | |
Re: please check [url]http://www.myitechnology.com/forum/default.aspx?g=posts&t=26[/url] | |
Re: To my knowledge language is added from the windows CD/DVD not the office. Is Hebrew language installed on your PC? | |
Re: This could be a hardware fault. Can you enter Bios? try to load defaults and save and restart. | |
Re: Hmm I had this problem a month ago. For me My board was gone. PLease remove ram and boot. No beeps what so ever indicates a board problem multiple Beeps indicate the board is fine. Then Proceed to the following Remove all pci cards, USBs, hard drives and what not. … | |
Re: have you seen this post [url]http://www.daniweb.com/forums/thread282465.html[/url] I haven't tried Access 2010, But I can;t imagine it will be much different. | |
Re: HMM, I am not sure but try this. [CODE] DataView Dv = new DataView(); Dv.Table = partsDataSet.Tables["partsTable"]; Dv.RowFilter = " Make LIKE '%" + makeBox.Text + "%' OR Model LIKE '%" + makeBox.Text + "%' "; dataGridView1.DataSource = Dv;[/CODE] | |
Re: ok so what is the problem you are facing? Do you not know how to connect Database to C#? or you do but are looking for a shorter way of doing it? Please show what you have done so far, as to show you know what you are doing. Here … | |
Re: First of all hello, welcome to the forums, Secondly, why did you post you message in code tag. Third of all please read this: [url]http://www.vb-helper.com/howto_net_datagrid.html[/url] If it solves your problem please mark as solved. Regards | |
| |
Re: [CODE]foreach (ListViewItem temp in YouListViev.Items) temp.Items[index of coloum] //your work [/CODE] | |
Re: Hello movie1030, welcome to the forums, if you don't mind me asking what is Movie 10:30? | |
Re: ok, so what have you done so far? post some code I can help you clear the problems, not do your homework for you. | |
Re: Nemoo please check this link [url]http://www.c-sharpcorner.com/UploadFile/ShrutiShrivastava/TransparentPanelinCSharp11232005015233AM/TransparentPanelinCSharp.aspx[/url] Peace. | |
Re: Please check this thread: [url]http://www.daniweb.com/forums/thread151289.html[/url] | |
Re: Wow you don't have to do all that I don't have a C compiler I can't get any to work on linux, nvm about that. I am gonna give you the pseudo code u have to do the work. Parse the string with substr. Basically [CODE] int counter=0; string newstr=""; … | |
Re: [url]http://www.cplusplus.com/reference/clibrary/cstdlib/exit/[/url] | |
Re: Has no1 looked at the fact that this thread was started in 06? | |
Re: Hello sunitakumari144 welcome to the forums, please start a new thread and please use Code tagging. | |
Re: you need to use the Leave event. Works much better. [CODE]private void currency_txt_Leave(object sender, EventArgs e) { rateSymbol.Text = currency_txt.Text; amountSymbol.Text = currency_txt.Text; }[/CODE] | |
Re: I didn't read your code, but i think what u want is int.Parse(textBox1.Text).ToString("###,###,###"); for decimal or double double.Parse(textBox1.Text).ToString("###,###,###.000"); Number of zeros at the end for how many decimals Enjoy | |
Re: When you installed SqlExpress did you select Mixed authentication or windows Authentication? Can you connect to your sql DB with Sql Server Management Studio? if you can what does it say. Look at the screenshot. This would is my SQlConn [CODE]SqlConnection SqlConn = new SqlConnection(@"Data Source=SAVR\SQLEXPRESS;Initial Catalog=ShopDB;MultipleActiveResultSets=True;User Id=sa;Password=*******;");[/CODE] | |
Re: add the following to your SqlConnection string MultipleActiveResultSet=True So it would look something Like this: [CODE] SqlConnection sqlCon = new SqlConnection(@"SQlSERVER\DB;Initial Catalog = myDB;MultipleActiveResultSet=True;User Id=finito;Password=pass123");[/CODE] | |
Re: try removing the battery and powering it only through the Ac power. Do you hear it spin up or anything? | |
Re: can you please tell me the exact error message? | |
Re: Um well I am not sure but it must be in the Home directory press Cntrl+H it should be there as .SQLLite or .Sun and then in the sub-directory | |
Re: [url]http://support.microsoft.com/kb/330137[/url] the only place where the guy solved it. [url]http://www.mombu.com/computer_design/elements/t-messagedeviceharddisk1dr1-keeps-popping-up-page3-1605986.html[/url] | |
Re: I havn't touched recursion since I learned it Thanks for giving me a chance to recap: [CODE]public partial class Form1 : Form { public Form1() { InitializeComponent(); } int value; int total; private void Form1_Load(object sender, EventArgs e) { value = 1; total = Recursion(value); textBox1.Text += "The Total = … | |
Re: [QUOTE=elizabeth mwash;1212497]thank you all for your generous advice...they have all helped me a great deal.....but i have a new problem. after i created the log in button and put the code that shows the second form,a problem came up while debugging it. the first form shows.wen you click the log … | |
Re: Usually this is a fan issue. Is your laptop getting hot? You say this is a new Laptop, I would go get it changed. It might help if you list the games you have tried playing | |
Re: Please explain what you are trying to do. and what language you are using | |
| |
Re: simple glance I see [CODE]SqlDataAdapter adapter = new SqlDataAdapter();[/CODE] you need to declare it as something? I presume as you you want to so this: [CODE]SqlDataAdapter adapter = new SqlDataAdapter(command);[/CODE] |
The End.