摘要:
对文本文件的读取,如果直接使用简体文字,繁体系统下用OPEN "" FOR INPUT AS, LINE INPUT将会出现乱码.如果字体设置得特别一些,则显示简体文字.但大部分情况下,我是不会设字体的,因此想找一个解决方法.想到用UNICODE,结果没有达到我想要的要求,首先要用UNICODE保存文件,然后读取时要用BINARY,读进BYTE数组.再显示时繁体没有的简体字照样显示?如果字体再设... 阅读全文
摘要:
Private Sub StatusBar1_PanelClick(ByVal Panel As MSComctlLib.Panel)Dim Rs As ADODB.Recordset Set Rs = Conn.Execute("select str(12,10,2)") MsgBox Rs.Fields(0)End Sub 阅读全文
摘要:
Private Sub Command1_Click() Dim oConn As New ADODB.Connection oConn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=C:\Book1.xls;" & _ "Extended Properties=""Excel... 阅读全文
摘要:
下列两个SQL语句在查询分析器中执行select * from t00sjzdselect * * from t00sjzd显然第二行是错误的使用在SQL分析器中想执行,自然是出现如下错误Server: Msg 170, Level 15, State 1, Line 2Line 2: Incorrect syntax near '*'. 但我在两个SQL语句中各加一个go,则第一句可以执行了,第... 阅读全文
摘要:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click If (Control.ModifierKeys And Keys.Shift) = Keys.Shift Then MessageBox.Show("Shift ... 阅读全文