1. PB9 Help - When reading through the descriptions of various controls there are often words missing. Where the words are missing there is a small indented box with a gray dot in the middle as if it was a missing graphic. Does anyone else have this problem? Is there a workaround for it?
2. In PB8 I could do something like this:
In PB9 I get a GPF unless I do something like DIM A(0 TO 0) at the start. I'm using XP Pro.
2. In PB8 I could do something like this:
Code:
STATIC A() AS LONG DIM A(0) CALL SOMESUB(A()) SUB SOMESUB(A()) FOR I = 1 to SomeNum REDIM PRESERVE A(1 TO I) NEXT I END SUB
Comment