Hi all
I have a problem with my type
Type GroupSlang
Field Bad$
Field good$
EndType
Global Slangs:GroupSlang[125]
For a = 0 To 124
Slangs[a] = New GroupSlang
Slangs[a] .Bad$=1
Slangs[a] .good$=2
Next
' my code work, but I use Global Slangs:GroupSlang[125]
so my var Slangs is suppose to be available uppon function I made ?
If I go into a function it seem that I lost the value of my var Slangs
I have a problem with my type
Type GroupSlang
Field Bad$
Field good$
EndType
Global Slangs:GroupSlang[125]
For a = 0 To 124
Slangs[a] = New GroupSlang
Slangs[a] .Bad$=1
Slangs[a] .good$=2
Next
' my code work, but I use Global Slangs:GroupSlang[125]
so my var Slangs is suppose to be available uppon function I made ?
If I go into a function it seem that I lost the value of my var Slangs