[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#770378: Declaration variable problem



Package: libreoffice
version: 1:4.3.3-1

Libreoffice
Version: 4.3.3.2
Build ID: 430m0(Build:2)

Hello,

I use libreoffice base, i was testing some macros, and i see an important problem.
It's a declaration variable problem.

Sub Test01

	dim ID as integer   'or as long
	msgbox(ID)

End Sub

====> The Box open "0"

Sub Test02

	dim ID1, ID2 as integer   'or as long
	msgbox(ID1)
	msgbox(ID2)

End Sub

====> The first Box open ""
====> The second box open "0"

Thank you.


Reply to: