No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
> can some one tell me how to extract data from images > and mime messages. Exact code not necessary but do guide me as how to go about it. > Thanks in advance. > Regards, > sara one path ease: type data:nvarchar(50) next caommand to c#: private void textBox1_TextChanged(object …
> I try to do a winform C# (2005) and update an item in Grid. > The 1st column, I have a combobox so I want update all item in Grid when I change value in comboboxes. > Could everyone give me an example? Thanks in adv example: /* databasename …
example string: /* hack */ string SQLSTR="SELECT * from pass where username="+"'"+textBox1.Text+"'"+"and password="+"'"+textBox2.Text+"'"; best war for in message is: /* not hack */ [B]string SQLSTR=string.Format("select * from pass where username='{0}' and password='{1}'",textBox1.Text,textBox2.Text);[/B]
The End.
mohammad1359