求VB与Excel进程问题
我想把VB中的数据保存在Excel中,我用的一个开始和结束按钮,但是当我按下结束按钮时,Excel并没有在进程中消失,除非我把整个程序给结束了才可以终止Excel这个进程,可我又不能终止整个程序的运行,问下高手有什么方法可以在不用
终止程序的情况下就可以结束Excel进程。下面是我的程序代码:
Dim exApp As Excel.Application
Private Sub start_Command_Click()
Set exApp = New Excel.Application
CommonDialog1.Filter = "Excel 表|*.xls"
CommonDialog1.ShowOpen
If Len(CommonDialog1.FileName) >= 1 Then
exApp.Workbooks.Open CommonDialog1.FileName
Range(Cells(1, 1), Cells(1, 1)) = "采集的温度"
Range(Cells(1, 2), Cells(1, 2)) = "P(比例系数)"
Range(Cells(1, 3), Cells(1, 3)) = "I(积分系数)"
Range(Cells(1, 4), Cells(1, 4)) = "D(微分系数)"
exApp.ActiveWorkbook.Save
exApp.ActiveWorkbook.Close
End If
End Sub
Private Sub stop_Command_Click()
exApp.Quit
Set exApp = Nothing
End Sub
望大家给点意见!