c#
-
-
웹자동 로그인c# 2016. 11. 23. 18:53
브라우저 콘트롤에서 html소스 가져오기 string sHtml=webBrowser1.document.body.InnerHtml
-
-
Miscillaneous Operatorsc# 2016. 7. 8. 21:13
OperatorDescriptionExamplesizeof()Returns the size of a data type.sizeof(int), returns 4.typeof()Returns the type of a class.typeof(StreamReader);&Returns the address of an variable.&a; returns actual address of the variable.*Pointer to a variable.*a; creates pointer named 'a' to a variable.? :Conditional ExpressionIf Condition is true ? Then value X : Otherwise value YisDetermines whether an ob..
-
오라클 연동c# 2016. 6. 29. 14:07
private void button1_Click(object sender, EventArgs e){OleDbConnection conn = new OleDbConnection(" Provider=MSDAORA;Data Source=192.168.0.36:1521/orcl;User ID=scott;Password=tiger;Unicode=True");con.Open();OleDbDataAdapter oda = new OleDbataAdapter("Select * from emp ",con); DataTable dt = new DataTable();oda.Fill(dt);dataGridView1.DataSource= dt;con.Close;}