mrossen Active Member Licensed User Longtime User Apr 8, 2020 #1 Hi, If I make at array like this: B4X: Private RecievedData(1000) As String And make a breakpoint, and point the mouse over "RecievedData" it shows the size (1000) and data from 0 to 99. How can I see data from 0 to 999 ? Mogens
Hi, If I make at array like this: B4X: Private RecievedData(1000) As String And make a breakpoint, and point the mouse over "RecievedData" it shows the size (1000) and data from 0 to 99. How can I see data from 0 to 999 ? Mogens
DonManfred Expert Licensed User Longtime User Apr 8, 2020 #2 DID you fill in any Data higher than 0 to 99? Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Apr 10, 2020 #4 The debugger will only show the first 100 items. You will need to use Log to log more elements. Upvote 0