Re: [wxlua-users] print numbers

2012-11-15 Thread Victor Bombi
Hello, This is what I get: lua.exe Lua 5.1.5 Copyright (C) 1994-2012 Lua.org, PUC-Rio print(1.234, string.format(%f, 2.345), os.setlocale()) 1.234 2.345000C require(wx) print(1.234, string.format(%f, 2.345), os.setlocale()) 1,234 2,345000Spanish_Spain.1252

Re: [wxlua-users] wxEVT_STC_STYLENEEDED is not called in wxlua 2.8.12.2?

2012-11-15 Thread Paul K
Hi John, If you choose to use the container to do the styling you can use the SCI_SETLEXER command to select SCLEX_CONTAINER, in which case the container is sent a SCN_STYLENEEDED notification each time text needs styling for display. You are absolutely right. In fact, I was reading this