vb的=号 ,有几种用途 - VB / 基础类
单位某程序,vb升级成c#
其中有句 ApEx = (dblValue1 = dblValue2 And dblValue2 = dblValue3) 是什么意思 ? 升级成C#应该怎么写?
主要是括号里面的=号 ,代表什么 ,还有>= ,<= , < ,> , 各代表什么?
1)赋值
2)比较
那 ApEx = (dblValue1 = dblValue2 And dblValue2 = dblValue3) 是什么意思呢?
VB中=号有两种用途一是赋值,二是判断。
ApEx = (dblValue1 == dblValue2) && (dblValue2 == dblValue3)
VB中 大于等于>=,小于等于<=,小于<,大于>,不等于<>
说完了,闪……
相关问答:
Private Sub Command1_Click()
Dim MyString() As String
Open "a.xml" For Binary As #1 ' 打开刚创建的文件。
ReDim MyString(LOF(1) - 1)
Put #1, , MyRecord ' 读入所有字符到变量中 ......
form1中有text1-8, 和command1
text8中为程序代码(生成窗体为form2(已做好))
单击command1后将text2中的代码生成EXE到d:\ 并且text1-7分别对应
产品名 公司名 合法版权 合法商标 文件描述 注释 标题
......
找了很久这东西了,
用treeview不能满足要求
现在想做的是:界面以树形展现,能不能展开收回无所谓
节点都可以按照规定进行添删
每个节点后面都可能会出现 文本 ......
小弟用VB调EXCEL作图
objExlApp.Workbooks.Add
objExlApp.Charts.Add
objExlApp.ActiveChart.ChartType = xlLine
objExlApp.ActiveChart.HasLegend = True
objExlApp. ......