You are not logged in.

Search results

Search results 1-2 of 2.

Dear visitor, welcome to Jabaco - Community. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.

Thursday, September 23rd 2010, 6:41pm

Author: niranjan

paramarray

Hi friends!! The paramarray function when used the following way i'm getting expected: expression near the word paramarray.Can somebody help me. Private Sub Command1_Click() Call demo() Call demo(1,2,3) Call demo(2, 3) Call demo("nir","anjan") Call demo(7.5, 8, 9, 10, 11, 12) End Sub Private Sub demo(Paramarray a()As Variant) Dim x% Label1.Caption= "this time the arguments recieved are" For x = LBound(a) To UBound(a) List1.AddItem(a(x)) Next x End Sub

Wednesday, September 22nd 2010, 6:56pm

Author: niranjan

paramarray & array are not working in jabaco

Hi!! Very recently i started using jabaco.Initially i felt jabaco is the best ide. Now i have problems with the built-in functions and sub-routines such as array(), paramarray etc.,, Can some body help me.. Kindly go through the following code snippet Public Sub command1_Click() Dim v, x% v = Array(1.5,2.5,3.5) Print "Now the values of the array are:"; For x = LBound(v) To UBound(v) Print v(x) & Space$(2); Next Print v = Array(45, 34, 87, 56, 21) Print "Now the values of the array are:"; For x =...

WoltLab Burning Board