thanks a lot
i get my favorite result finally!
with combination Write and PUT i can to write my data in the favorite Excel Cell. with below code i can write value of "A" variable into C5 Excel Cell address.
[code:1:3ec1ee2042]
Dim A As Word : A = 6000
Dim Stra As String * 5 : Stra = Str(a)
Open "write.xls" For Binary As #2
For I = 1 To 5
Write #2 , Chr(0) , Chr(0) , Chr(0)
Next
Next_write = Loc(#2) - 1
Put #2 , Stra , Next_write
Close #2
[/code:1:3ec1ee2042]
↧