can any one plz help me with the crasy and not BASIC functionality since PB 5.11?
The follow code works very well in PB 5.00, it was easy to understand and it is working.
Since PB 5.11 the follow sample is not longer working. No sample code is showing in the installation folder of PB 5.11 for the new functionality. There is no sample or detailed "how to" in the help file.
I have try to test different combinations in PB 5.11 but nothing is working for me.
So can you show my, based on my sample, how i must change it to bring it up to work in PB 5.11?
Code: Select all
Procedure test_1(*test1.s)
strTest.s = "Hello"
*test1 = strTest
EndProcedure
Procedure Test_2()
Protected myText.s
myText = Space(1024)
test_1(@myText)
Debug myText
EndProcedure
Test_2()
Please bring samplers for stuff like this with PB installation and also a detailed help sample.