You can subscribe to this list here.
| 2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(60) |
Jul
(35) |
Aug
(32) |
Sep
(5) |
Oct
(5) |
Nov
(58) |
Dec
(34) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2006 |
Jan
(114) |
Feb
(184) |
Mar
(153) |
Apr
(90) |
May
(153) |
Jun
(59) |
Jul
(24) |
Aug
(43) |
Sep
(17) |
Oct
(34) |
Nov
(11) |
Dec
(204) |
| 2007 |
Jan
(84) |
Feb
(119) |
Mar
(38) |
Apr
(28) |
May
(52) |
Jun
(105) |
Jul
(64) |
Aug
(67) |
Sep
(14) |
Oct
(3) |
Nov
(28) |
Dec
(55) |
| 2008 |
Jan
(228) |
Feb
(55) |
Mar
(30) |
Apr
(30) |
May
(15) |
Jun
(20) |
Jul
(12) |
Aug
(3) |
Sep
(13) |
Oct
(54) |
Nov
(35) |
Dec
(35) |
| 2009 |
Jan
(19) |
Feb
(20) |
Mar
(34) |
Apr
(4) |
May
(60) |
Jun
(25) |
Jul
(16) |
Aug
(51) |
Sep
(19) |
Oct
(62) |
Nov
(21) |
Dec
(12) |
| 2010 |
Jan
(1) |
Feb
|
Mar
(4) |
Apr
(12) |
May
(23) |
Jun
(13) |
Jul
(1) |
Aug
(40) |
Sep
(18) |
Oct
(21) |
Nov
(26) |
Dec
(34) |
| 2011 |
Jan
(17) |
Feb
(23) |
Mar
(1) |
Apr
(10) |
May
(1) |
Jun
(5) |
Jul
(1) |
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
(43) |
| 2012 |
Jan
(5) |
Feb
(19) |
Mar
(6) |
Apr
(24) |
May
(39) |
Jun
(83) |
Jul
(29) |
Aug
(36) |
Sep
(64) |
Oct
(55) |
Nov
(12) |
Dec
(7) |
| 2013 |
Jan
(17) |
Feb
(10) |
Mar
(37) |
Apr
(27) |
May
(13) |
Jun
(9) |
Jul
(7) |
Aug
(61) |
Sep
(23) |
Oct
(23) |
Nov
(30) |
Dec
(16) |
| 2014 |
Jan
(23) |
Feb
(13) |
Mar
(9) |
Apr
(17) |
May
(2) |
Jun
(11) |
Jul
(2) |
Aug
|
Sep
(9) |
Oct
(24) |
Nov
(2) |
Dec
(14) |
| 2015 |
Jan
(6) |
Feb
(4) |
Mar
(17) |
Apr
|
May
(7) |
Jun
(3) |
Jul
|
Aug
|
Sep
(2) |
Oct
(21) |
Nov
(6) |
Dec
(2) |
| 2016 |
Jan
(4) |
Feb
(2) |
Mar
(7) |
Apr
(3) |
May
(11) |
Jun
(6) |
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2017 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2018 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2019 |
Jan
|
Feb
|
Mar
(6) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2020 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
| 2022 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
(4) |
Dec
|
| 2023 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(8) |
Nov
|
Dec
|
| 2024 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
|
|
|
|
|
1
(1) |
2
(2) |
|
3
(1) |
4
(2) |
5
|
6
(3) |
7
|
8
|
9
|
|
10
|
11
|
12
|
13
|
14
|
15
|
16
(1) |
|
17
|
18
|
19
|
20
|
21
|
22
(2) |
23
|
|
24
(1) |
25
|
26
|
27
(2) |
28
|
29
(2) |
30
|
compiling using vc7 and version 2.7 of wxWindows
file:stedlgs.cpp line 504
change:
wxArrayString *faceNames = fontEnum.GetFacenames();
faceNames->Sort();
for (n = 0; n < faceNames->GetCount(); n++)
m_fontChoice->Append(wxT("*") + faceNames->Item(n));
First changed:
wxArrayString *faceNames = fontEnum.GetFacenames();
to
wxArrayString *faceNames = &fontEnum.GetFacenames();
made it compile but did not work breaks in wxstring.
then changed to:
wxArrayString faceNames(fontEnum.GetFacenames());
faceNames.Sort();
for (n = 0; n < faceNames.GetCount(); n++)
m_fontChoice->Append(wxT("*") + faceNames.Item(n));
compiles and run
Where should I get the most recent version of wxStEdit I seems to find various
versions at various places. The most recent seems to 1.11 but is it?
Andre
> > I tested the new version of wxlua, and it still takes 4kb every 2 seconds, > > regardless of what I do. No worries though, as I plan on using the real > > editor from now on :) > > Humm... I'll look into this. That does sound like a lot of memory after awhile. Just compiled a recent version and I have been monitoring the memory on XP. The memory usage goes up for a while up to around 14000 K then bounce back to around 9000 K. Andre
Hello, I am running on XP, sp2, but could verify the issue on XP, sp1, too. mdi.wx (the example program) only refreshes the content of the very last window created. When moving over the other windows their content is erased and does not get refreshed. Any explanation or help? Thanks, Kristof Werling
<div align="1eft"><b><font s1ze="5"> Want the degree but can’t <acb></acb>find the <acy></acy>time?</font></b><BR> <ack></ack> <BR> WHAT A GREAT IDEA!<BR> We provide <acj></acj>a concept that <acx></acx>will allow <acu></acu>anyone with sufficient work experience to obtain a fully verifiable University Degree.<BR> Bachelors, Masters or even a Doctorate.<BR> <acf></acf> Think <acp></acp>of it, within four to <acx></acx>six weeks, you too could be a college <acj></acj>graduate.<BR> Many people share the same frustration, they are all doing the work of the person that has the <acy></acy>degree and the person <aca></aca>that has the degree is getting all the money.<BR> Don’t you think that it is time you were paid fair compensation for the level of work you are already doing?<BR> This is your chance to finally make the right move and receive your due benefits.<BR> If you are like most people, you <aci></aci>are more than qualified with your experience, but are lacking that prestigious piece of paper known as a diploma that is often t he passport to success.<BR> <acb></acb><b>CALL US TODAY AND GIVE YOUR WORK<BR> EXPERIENCE THE <acb></acb>CHANCE TO EARN YOU<BR> THE HIGHER COMPENSATION YOU DESERVE!</b><BR> <font color="#FF0033" size="5">CALL NOW:</font><font color="#FF0033" size="7"><BR> <b>1-213-596-5768</b></font><BR> <BR> <BR> <acq></acq> <BR> <acb></acb> <BR> <acq></acq> <BR> <BR> <acl></acl> <BR> <BR> <acs></acs> <BR> <BR> <BR> <BR> <BR> <BR> <acf></acf><BR> <acq></acq> <acl></acl><BR> <aci></aci> <BR> <BR> <BR> <BR> <acx></acx><BR> <BR> <BR> <acf></acf><BR> <acn></acn><BR> <BR>Dxmxo9lr4OBnK <acv></acv> <BR> <BR> <BR> <aca></aca> <BR> <BR> <BR> <BR> <acz></acz> <acb></acb><BR> <BR> <BR> <BR> <BR> <BR> <act></act><BR> <acp></acp><BR> <BR> <aca></aca> <BR> <BR> <BR> <acg></acg> <BR> <BR> <BR> <acv></acv><BR> <BR> <BR> <aco></aco><BR> <BR> <BR> <BR> <aca></aca> <BR> <aco></aco><BR> <BR> <BR> <BR> <BR> <BR> <BR> <BR> <acx></acx> <BR> <acr></acr><BR> <acg></acg><BR> <aco></aco><BR> <BR> <BR> <BR>KGynupftD2NkI <BR> <acz></acz><BR> <BR> <BR> <BR> <BR> <BR>OktYisw6VJdF9 <BR> <BR> <BR> <BR> <BR>K9yazQWE37Tsu <BR> <BR> <BR> <BR> <BR> <B R> <BR> <acg></acg>4. He shall try to predict the evolution of the environment that he slowly starts to understand, taking into account what happens elsewhere and relying on his earlier experience. Certainly if he is also expected to act in the environment, <ach></ach>he shall try to construct realistic goals in the best way <ack></ack>he can. </div> <acs></acs>
On 9/6/06, Adam Klotblixt <ada...@gm...> wrote: > Thank you very much. The files work alright now. > I did realise something though: I have been running wxlua, not wxluaedit. > The 2.6.2 binary windows installer does not install wxluaedit, and since > wxlua without a file starts as an editor, I thought that I had gotten the > real editor to work. > I was very happy with the "upgraded" interface of wxluaedit compared to > wxlua. Much, much nicer. Be warned however that wxluaedit is really only for prototyping, it runs the wxlua program in the main thread as the wxluaeditor and if you really mess things up you can crash it. the wxlua program spawns another process to execute the program. It also means that anything run in wxluaedit is MUCH slower than if you run it "natively" by running wxluafreeze.exe "program.lua" since it takes time slices to update the wxluaedit gui. > I tested the new version of wxlua, and it still takes 4kb every 2 seconds, > regardless of what I do. No worries though, as I plan on using the real > editor from now on :) Humm... I'll look into this. That does sound like a lot of memory after awhile. Regards, John Labenski
Thank you very much. The files work alright now. I did realise something though: I have been running wxlua, not wxluaedit. The 2.6.2 binary windows installer does not install wxluaedit, and since wxlua without a file starts as an editor, I thought that I had gotten the real editor to work. I was very happy with the "upgraded" interface of wxluaedit compared to wxlua. Much, much nicer. I tested the new version of wxlua, and it still takes 4kb every 2 seconds, regardless of what I do. No worries though, as I plan on using the real editor from now on :) I had to rewrite some of my code to work with this new version. I have stripped the scribble-demo in order to get plotting and line-drawing working. It works great, but I haven't had time to delve into WHY, time-pressure to get the data generator going. I feel a little giddy, it's a bit like coming home to Turbo Pascal, or 8-bit BASIC. I think LUA is a very nice prototyping language, and WxWidgets makes it really easy to present the data to my spectators. I have NEVER done any windows-programs before, so WxLUA is my first attempt and success at this. I ususally do deeply embedded programming. /Adam 2006年9月6日, John Labenski <jla...@gm...>: > > Ok, I got it to compile in VC6. I think the crashing was that I forgot > to completely recompile wxWidgets since doing a CVS update. There's > still the linking warnings which I'll post in a separate message. > > I put it in the snapshot directory, its just the binaries wxlua.exe, > wxluaedit.exe, and wxluafreeeze.exe. I've used upx on wxlua.exe and > wxluaedit.exe and not wxluafreeze.exe since it's better to run that > after attaching your program, see the apps/wxluafreeze/src/readme.txt > file. > > Compiled w/ VC6 in release multilib with wxWidgets 2.6.3, but the CVS > version of it. > > http://wxlua.sourceforge.net/download/wxLua_SnapshotBin_2006年09月05日.zip > > I hope this works better for you and let me know if it still leaks. > You absolutely have to call :Delete() on any wxColours, wxPens, > wxBrushes, wxDCs since the lua garbage collector will let too many of > them collect. Use the "Show Stack" in wxluaedit and look at "Tracked > List" after running the code below in the "wxLuaShell" window to see > what I mean. > > >> a = wx.wxPen(wx.wxColour(1,2,3), 1, wx.wxSOLID) > then show stack, then type > >> a:Delete() > and show the stack again, notice how you have a wxColour still since > lua holds a reference to it, but the GC won't be run until quite a few > items have been collected. > > I will work on making a lua interface to the "Show Stack" to allow a > lua program to print out the tracked items for easier debugging. > > Regards, > John Labenski > > > > On 9/4/06, John Labenski <jla...@gm...> wrote: > > On 9/4/06, Adam Klotblixt <ada...@gm...> wrote: > > > Hello all, first post so be gentle with me :) > > > > No problem. > > > > > I have used the 2.6.2 binary for Windows for 2 weeks now. > Unfortunately the > > > wxluaedit application leaks memory something awful, at least 2kb per > second. > > > After 30 minutes the applikation is unusable, having taken more than > 50Mb > > > and using +90% CPU time regardless of what is done (just blinking the > > > cursor). Closing the applikation then takes more than 1 hour, but > killing > > > the process works. > > > I saw someone else on the list had the same problem, and the suggested > fix > > > was to get the latest nightly source and build it. I have tried and > failed > > > miserably, using MSVC++ 6.0. More than half a day has been wasted > trying to > > > get it all running. In the end I failed to link wxluaedit. I don't > even know > > > for sure if the latest nightly build is actually possible to build > with MSVC > > > 6.0? > > > > Yes, just go into the wxLua/build/msw and open wxLua.dsw and build. I > > like to use Debug/Release Multilib. > > > > I just tried it and I get all kinds of warnings about functions > > changing signatures... I dunno what this is all about, but I think the > > build settings have changed and it crashes immediately when run with > > no useful backtrace. I'll look into it tomorrow night. > > > > > Quick fix: could someone please share a pre-built binary of the latest > > > build? Wxluaedit is what I need the most. > > > > See above, I tried to compile it for you, but something's gone wrong. > > It runs great in Linux though. :) Seriously, it's probably something > > small, like a compiler switch, but it's not immediately obvious to me > > what it is. > > > > > Long-term fix: nightly/weekly binary builds on the download side would > be > > > very nice. I read the history-file with 2.6.3 notations and wept as I > wanted > > > so many of the fixes. > > > > > > My current hack-solution is to use the editor for 30 minutes, kill it > and > > > repeat. Not very impressive. > > > > That does stink, sorry. > > > > > Praise: I REALLY like LUA, and wxlua is a perfect fit for my current > needs. > > > wxluaedit, when working, is rather nice to use. I have regained some > > > programming-lust. > > > > Soon... we're very close to really getting all the build stuff > > working. It's a shame that as much work goes into making it build > > cross-platform as goes into actual programming. > > > > Regards, > > John Labenski > > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job > easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Wxlua-users mailing list > Wxl...@li... > https://lists.sourceforge.net/lists/listinfo/wxlua-users >
Ok, I got it to compile in VC6. I think the crashing was that I forgot to completely recompile wxWidgets since doing a CVS update. There's still the linking warnings which I'll post in a separate message. I put it in the snapshot directory, its just the binaries wxlua.exe, wxluaedit.exe, and wxluafreeeze.exe. I've used upx on wxlua.exe and wxluaedit.exe and not wxluafreeze.exe since it's better to run that after attaching your program, see the apps/wxluafreeze/src/readme.txt file. Compiled w/ VC6 in release multilib with wxWidgets 2.6.3, but the CVS version of it. http://wxlua.sourceforge.net/download/wxLua_SnapshotBin_2006年09月05日.zip I hope this works better for you and let me know if it still leaks. You absolutely have to call :Delete() on any wxColours, wxPens, wxBrushes, wxDCs since the lua garbage collector will let too many of them collect. Use the "Show Stack" in wxluaedit and look at "Tracked List" after running the code below in the "wxLuaShell" window to see what I mean. >> a = wx.wxPen(wx.wxColour(1,2,3), 1, wx.wxSOLID) then show stack, then type >> a:Delete() and show the stack again, notice how you have a wxColour still since lua holds a reference to it, but the GC won't be run until quite a few items have been collected. I will work on making a lua interface to the "Show Stack" to allow a lua program to print out the tracked items for easier debugging. Regards, John Labenski On 9/4/06, John Labenski <jla...@gm...> wrote: > On 9/4/06, Adam Klotblixt <ada...@gm...> wrote: > > Hello all, first post so be gentle with me :) > > No problem. > > > I have used the 2.6.2 binary for Windows for 2 weeks now. Unfortunately the > > wxluaedit application leaks memory something awful, at least 2kb per second. > > After 30 minutes the applikation is unusable, having taken more than 50Mb > > and using +90% CPU time regardless of what is done (just blinking the > > cursor). Closing the applikation then takes more than 1 hour, but killing > > the process works. > > I saw someone else on the list had the same problem, and the suggested fix > > was to get the latest nightly source and build it. I have tried and failed > > miserably, using MSVC++ 6.0. More than half a day has been wasted trying to > > get it all running. In the end I failed to link wxluaedit. I don't even know > > for sure if the latest nightly build is actually possible to build with MSVC > > 6.0? > > Yes, just go into the wxLua/build/msw and open wxLua.dsw and build. I > like to use Debug/Release Multilib. > > I just tried it and I get all kinds of warnings about functions > changing signatures... I dunno what this is all about, but I think the > build settings have changed and it crashes immediately when run with > no useful backtrace. I'll look into it tomorrow night. > > > Quick fix: could someone please share a pre-built binary of the latest > > build? Wxluaedit is what I need the most. > > See above, I tried to compile it for you, but something's gone wrong. > It runs great in Linux though. :) Seriously, it's probably something > small, like a compiler switch, but it's not immediately obvious to me > what it is. > > > Long-term fix: nightly/weekly binary builds on the download side would be > > very nice. I read the history-file with 2.6.3 notations and wept as I wanted > > so many of the fixes. > > > > My current hack-solution is to use the editor for 30 minutes, kill it and > > repeat. Not very impressive. > > That does stink, sorry. > > > Praise: I REALLY like LUA, and wxlua is a perfect fit for my current needs. > > wxluaedit, when working, is rather nice to use. I have regained some > > programming-lust. > > Soon... we're very close to really getting all the build stuff > working. It's a shame that as much work goes into making it build > cross-platform as goes into actual programming. > > Regards, > John Labenski >
On 9/4/06, Adam Klotblixt <ada...@gm...> wrote: > Hello all, first post so be gentle with me :) No problem. > I have used the 2.6.2 binary for Windows for 2 weeks now. Unfortunately the > wxluaedit application leaks memory something awful, at least 2kb per second. > After 30 minutes the applikation is unusable, having taken more than 50Mb > and using +90% CPU time regardless of what is done (just blinking the > cursor). Closing the applikation then takes more than 1 hour, but killing > the process works. > I saw someone else on the list had the same problem, and the suggested fix > was to get the latest nightly source and build it. I have tried and failed > miserably, using MSVC++ 6.0. More than half a day has been wasted trying to > get it all running. In the end I failed to link wxluaedit. I don't even know > for sure if the latest nightly build is actually possible to build with MSVC > 6.0? Yes, just go into the wxLua/build/msw and open wxLua.dsw and build. I like to use Debug/Release Multilib. I just tried it and I get all kinds of warnings about functions changing signatures... I dunno what this is all about, but I think the build settings have changed and it crashes immediately when run with no useful backtrace. I'll look into it tomorrow night. > Quick fix: could someone please share a pre-built binary of the latest > build? Wxluaedit is what I need the most. See above, I tried to compile it for you, but something's gone wrong. It runs great in Linux though. :) Seriously, it's probably something small, like a compiler switch, but it's not immediately obvious to me what it is. > Long-term fix: nightly/weekly binary builds on the download side would be > very nice. I read the history-file with 2.6.3 notations and wept as I wanted > so many of the fixes. > > My current hack-solution is to use the editor for 30 minutes, kill it and > repeat. Not very impressive. That does stink, sorry. > Praise: I REALLY like LUA, and wxlua is a perfect fit for my current needs. > wxluaedit, when working, is rather nice to use. I have regained some > programming-lust. Soon... we're very close to really getting all the build stuff working. It's a shame that as much work goes into making it build cross-platform as goes into actual programming. Regards, John Labenski
Hello all, first post so be gentle with me :) I have used the 2.6.2 binary for Windows for 2 weeks now. Unfortunately the wxluaedit application leaks memory something awful, at least 2kb per second. After 30 minutes the applikation is unusable, having taken more than 50Mb and using +90% CPU time regardless of what is done (just blinking the cursor). Closing the applikation then takes more than 1 hour, but killing the process works. I saw someone else on the list had the same problem, and the suggested fix was to get the latest nightly source and build it. I have tried and failed miserably, using MSVC++ 6.0. More than half a day has been wasted trying to get it all running. In the end I failed to link wxluaedit. I don't even know for sure if the latest nightly build is actually possible to build with MSVC 6.0? Quick fix: could someone please share a pre-built binary of the latest build? Wxluaedit is what I need the most. Long-term fix: nightly/weekly binary builds on the download side would be very nice. I read the history-file with 2.6.3 notations and wept as I wanted so many of the fixes. My current hack-solution is to use the editor for 30 minutes, kill it and repeat. Not very impressive. Praise: I REALLY like LUA, and wxlua is a perfect fit for my current needs. wxluaedit, when working, is rather nice to use. I have regained some programming-lust. Thanks, /Adam Klotblixt
The lua compiler has no way of knowing if math.si is a function at pre-compilation stage, as you could define a variable: math.si = math.sin that would make the call valid... because variables have no type, only values, this type of check can not be done un til runtime. On 8/29/06, John Labenski <jla...@gm...> wrote: > On 8/28/06, hel...@gm... <hel...@gm...> wrote: > > is it by design, that during pre-compilation the existence of funtions (or the correctness of function names) is not checked? > > > > Any mistyped function name is just discovered at runtime and leads to a "error running chunk" message. > > > > I would rather expect that the function names are checked sooner, so that any mistyped function (not declared or defined with RegisterFunction) is reported during pre-compilation. > > I do not think that this is possible or would be overly complicated. > In fact lua itself doesn't do this itself. However if you know how > please suggest a way to do this. There was a lua lint program > somewhere that may be useful. > > Try this simple program: > > a = math.sin(1) > b = math.si(2) > > $ ./lua5.1.exe precomp_test.lua > d:\wxCVS\wxLua\wxLua\bin\lua5.1.exe: precomp_test.lua:2: attempt to > call field 'si' (a nil value) > stack traceback: > precomp_test.lua:2: in main chunk > [C]: ? > > It doesn't check that I've mistyped "math.sin" for line 2 until it's run. > However try this: > > a = math.sin(1) > b = 1math.si(2) > > $ ./lua5.1.exe precomp_test.lua > d:\wxCVS\wxLua\wxLua\bin\lua5.1.exe: precomp_test.lua:2: malformed > number near '1math' > > It does check for gross syntax errors. > > Regards, > John Labenski > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Wxlua-users mailing list > Wxl...@li... > https://lists.sourceforge.net/lists/listinfo/wxlua-users >
Saturday, September 2, 2006, 8:28:39 AM, Ratchet wrote: > I need a compiled version of the wxLua.dll (wxLuaDLL.dll). Can someone > send it to me? My DLL based build from a snapshot in early August has these files... 08/06/2006 02:02 PM 141,224 lua5.1.dll 08/06/2006 02:02 PM 124,531 lua5.1.exe 08/06/2006 02:02 PM 35,648 wx.dll 08/06/2006 02:02 PM 124,553 wxlua-lua.exe 08/06/2006 02:08 PM 45 wxlua.bat 08/06/2006 02:02 PM 220,029 wxlua.exe 08/06/2006 02:08 PM 48 wxluacan.bat 08/06/2006 02:02 PM 184,945 wxluacan.exe 08/06/2006 02:02 PM 68,760 wxluafreeze.exe 08/06/2006 02:02 PM 141,736 wxlua_msw_lua-2.6.dll 08/06/2006 02:02 PM 3,507,735 wxlua_msw_wxbind-2.6.dll 08/06/2006 02:02 PM 306,753 wxlua_msw_wxbindstc-2.6.dll 08/06/2006 02:02 PM 181,138 wxlua_msw_wxlua-2.6.dll 08/06/2006 02:02 PM 176,766 wxlua_msw_wxluadebug-2.6.dll 08/06/2006 02:02 PM 213,359 wxlua_msw_wxluasocket-2.6.dll 15 File(s) 5,427,270 bytes I don't use the DLL based build anymore; I thought I would, but ended up using the static library version... 08/10/2006 09:04 AM 329,314 lua5.1.exe 08/10/2006 09:04 AM 329,589 wxlua-lua.exe 08/10/2006 09:06 AM 11,361,509 wxlua.exe 08/10/2006 09:08 AM 9,910,196 wxluacan.exe 08/10/2006 09:07 AM 11,248,368 wxluaedit.exe 08/10/2006 09:08 AM 9,829,312 wxluafreeze.exe 6 File(s) 43,008,288 bytes Since there's a lot of stuff here, and no "wxLua.dll (wxLuaDLL.dll)" I am hesitant to send anything to you unless you see what you want. I found building wxLua to be pretty straight forward (though I already had mingw/msys installed). That may be your best option since it would give you the most flexibility and give you an up-to-date version. Regards, e -- Doug Currie Londonderry, NH
Hi, I need a compiled version of the wxLua.dll (wxLuaDLL.dll). Can someone send it to me? Thx Ratchet