Search found 1 match

by Firewire12
20 Jul 2023 13:44
Forum: mikroBasic PRO for PIC General
Topic: How to send TEXT to a sub procedure ?
Replies: 1
Views: 461

Re: How to send TEXT to a sub procedure ?

DIM text as string [7]
Sub Procedure aa (DIM ByRef wert as string [7])
...
...
end sub

text = "hello"
aa (text)

That´s all.
You find the text hello in the string wert.

Go to advanced search