Login Page - Create Account

Support Board


Date/Time: Sun, 19 May 2024 00:03:15 +0000



Post From: No Build any files cpp

[2023-01-04 19:29:34]
User183724 - Posts: 183
i attempted to compile your code... received the following errors...

according to this list:

ACSIL Interface Members - Variables and Arrays: sc.ACSVersion

there isn't a sc.GraphRegionBox, sc.TextOut, or , sc.GraphRegionEnd() function and thats why youre getting the errors.


testingfromforumremovethis.cpp:25:6: error: 'struct s_sc' has no member named 'GraphRegionBox'; did you mean 'GraphRegion'?
25 | sc.GraphRegionBox(20, 20, 300, 300); // Disegna il bordo del pannello
| ^~~~~~~~~~~~~~
| GraphRegion
In file included from /usr/share/mingw-w64/include/winnt.h:9,
from /usr/share/mingw-w64/include/minwindef.h:163,
from /usr/share/mingw-w64/include/windef.h:8,
from /usr/share/mingw-w64/include/windows.h:69,
from scstructures.h:15,
from sierrachart.h:22,
from testingfromforumremovethis.cpp:1:
testingfromforumremovethis.cpp:27:6: error: 'struct s_sc' has no member named 'TextOutA'
27 | sc.TextOut(30, 30, "Lista di nomi:"); // Disegna il titolo del pannello
| ^~~~~~~
testingfromforumremovethis.cpp:35:8: error: 'struct s_sc' has no member named 'TextOutA'
35 | sc.TextOut(30, 50 + 20 * i, nameList);
| ^~~~~~~
testingfromforumremovethis.cpp:39:6: error: 'struct s_sc' has no member named 'GraphRegionEnd'; did you mean 'GraphRegion'?
39 | sc.GraphRegionEnd();
| ^~~~~~~~~~~~~~
| GraphRegion

-- End of Build -- 13:18:16