Thank you. I will try it.
On the same topic of closing, how do I "restart" a vb2005 form as though I am running it for the very first time without clicking the Exit button?
Hi. I don't know if this is a VB2005 or MS Excel issue so I will start with VB2005.
This is how I open an Excel file in VB2005:
Dim objExcel As New Excel.Application
Dim objWorkbook As Excel.Workbook
Dim objSheet As Excel.Worksheet
objExcel.Visible = True
objWorkbook =...
Dim objExcel As New Excel.Application
Dim objWorkbook As Excel.Workbook
Dim objSheet As Excel.Worksheet
objExcel.Visible = True
objWorkbook = objExcel.Workbooks.Open("c:\Dat.xlsx")
objWorkbook = objExcel.Workbooks.Add()
objSheet = objWorkbook.Worksheets(1)
objSheet.Cells(2, 2).Value =...
Hi. Please see the short sample below:
unsigned int var1;
var1 = 0x0001; // 16-bit data to device A
var1 = 0x01; // 8-bit data to device B
Send_Data(var1);
my objective: Send_Data subroutine function depends on the data length of var1. How can this be done?
Thank you for your help.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.