Android Question Fill User Type Variable in on line? [Solved]

Pflichtfeld

Active Member
Licensed User
Is it possible, to fill a User Type like
B4X:
Type Grinder_type (Name As String, P0ToSuppInlet As Float, P0ToSuppCenter As Float, _
                 stoneD As Float,dmSupport As Float, dmjig As Float)
in one?
Something like
B4X:
Dim gr As Grinder_type=("First",10,20,30,40,50)
does not work.
I have the array-example in mind...
B4X:
Dim Days() As String
Days = Array As String("Sunday", "Monday", ...)
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
Dim Days() As String
Days = Array As String("Sunday", "Monday", ...)
Why 2 lines?
B4X:
Dim Days() As String = Array As String("Sunday", "Monday", ...)

Yes:

1hITEYnYZ4.gif
 
Upvote 0
Top