Modify ↓
Opened 5 years ago
Last modified 2 years ago
#3838 assigned Bug
Bug with structure and dot-notation
| Reported by: | Nine | Owned by: | Jon |
|---|---|---|---|
| Milestone: | Component: | AutoIt | |
| Version: | 3.3.14.5 | Severity: | None |
| Keywords: | Cc: |
Description
#include <WinAPIDiag.au3>
Local $tData = DllStructCreate("ushort arr[8]")
For $i = 1 to 8
$tData.arr($i) = $i ; not working
Next
_WinAPI_DisplayStruct($tData, "ushort arr[8]")
For $i = 1 to 8
$tData.arr($i+0) = $i ; working (works also with Int or Number functions or any calculation expression)
Next
_WinAPI_DisplayStruct($tData, "ushort arr[8]")
Attachments (0)
Change History (2)
comment:1 by , 5 years ago
| Owner: | set to |
|---|---|
| Status: | new → assigned |
comment:2 by , 2 years ago
| Owner: | changed from to |
|---|
Note:
See TracTickets
for help on using tickets.

When I fix #2443 I solved it
Does not seem to be related but it Works ...
Fix already sent to Jon