592 Posted Topics

Member Avatar for SteveBessant

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 …

Member Avatar for finito
0
193
Member Avatar for basma.lm
Member Avatar for kseling

[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]

Member Avatar for finito
0
143
Member Avatar for moni94

[url]http://bytes.com/topic/c-sharp/answers/731525-filestream-append-read-access-same-time[/url]

Member Avatar for finito
0
958
Member Avatar for Mr.B
Member Avatar for sidhu51

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 …

Member Avatar for sidhu51
0
94
Member Avatar for tomcat500

[url]http://h10025.www1.hp.com/ewfrf/wc/document?lc=en&dlc=en&cc=us&docname=bph06895#N911[/url] Base processor and speed

Member Avatar for finito
0
101
Member Avatar for doomfrawen

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 …

Member Avatar for doomfrawen
0
192
Member Avatar for coded_hitec
Member Avatar for coded_hitec
0
111
Member Avatar for sachintha81

please check [url]http://www.myitechnology.com/forum/default.aspx?g=posts&t=26[/url]

Member Avatar for sachintha81
0
131
Member Avatar for gavri52

To my knowledge language is added from the windows CD/DVD not the office. Is Hebrew language installed on your PC?

Member Avatar for gavri52
0
89
Member Avatar for lc600ygr
Member Avatar for finito
0
173
Member Avatar for notuserfriendly

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

Member Avatar for finito
0
191
Member Avatar for Alexpap

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.

Member Avatar for finito
0
94
Member Avatar for Exaktor

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]

Member Avatar for finito
0
581
Member Avatar for andrew2325

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 …

Member Avatar for finito
0
344
Member Avatar for lunaluni

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

Member Avatar for finito
-1
140
Member Avatar for jellybeannn
Member Avatar for laks_samy

[CODE]foreach (ListViewItem temp in YouListViev.Items) temp.Items[index of coloum] //your work [/CODE]

Member Avatar for finito
0
94
Member Avatar for Movie1030

Hello movie1030, welcome to the forums, if you don't mind me asking what is Movie 10:30?

Member Avatar for maceman
0
25
Member Avatar for lilpinay

ok, so what have you done so far? post some code I can help you clear the problems, not do your homework for you.

Member Avatar for JamesCherrill
0
173
Member Avatar for nemoo

Nemoo please check this link [url]http://www.c-sharpcorner.com/UploadFile/ShrutiShrivastava/TransparentPanelinCSharp11232005015233AM/TransparentPanelinCSharp.aspx[/url] Peace.

Member Avatar for finito
0
176
Member Avatar for sachintha81

Please check this thread: [url]http://www.daniweb.com/forums/thread151289.html[/url]

Member Avatar for finito
0
2K
Member Avatar for gkaykck

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=""; …

Member Avatar for gkaykck
0
204
Member Avatar for prodstar
Member Avatar for finito
0
69
Member Avatar for Visslan
Member Avatar for sunitakumari144

Hello sunitakumari144 welcome to the forums, please start a new thread and please use Code tagging.

Member Avatar for kvprajapati
-1
107
Member Avatar for jellybeannn

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]

Member Avatar for finito
0
150
Member Avatar for jellybeannn

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

Member Avatar for finito
-1
110
Member Avatar for thanlin

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]

Member Avatar for finito
0
67
Member Avatar for krishnisilva

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]

Member Avatar for finito
0
112
Member Avatar for tobias57

try removing the battery and powering it only through the Ac power. Do you hear it spin up or anything?

Member Avatar for finito
0
79
Member Avatar for geoman703
Member Avatar for cwarn23

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

Member Avatar for finito
0
90
Member Avatar for MattyRobot

[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]

Member Avatar for finito
0
126
Member Avatar for steveh44

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

Member Avatar for Sodabread
0
578
Member Avatar for vvinzz
Member Avatar for elizabeth mwash

[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 …

Member Avatar for finito
0
105
Member Avatar for Stu8

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

Member Avatar for finito
0
213
Member Avatar for sourabhtripathi

Please explain what you are trying to do. and what language you are using

Member Avatar for Xufyan
0
97
Member Avatar for markpeterson

Hello Mark ntmu, Hmm I am wondering why you have 3 negs on your post.

Member Avatar for finito
-3
47
Member Avatar for krishnisilva

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]

Member Avatar for finito
0
118

The End.