[wxlua-users] relative paths

2009-09-07 Thread Daniel Aquino
is it possible to use relative paths ? imagine i have a top level folder and then sub folders... if i just want to point to a sub folder can i do that ? or do i have to build something like $current_Dir/sub ? -- Let C

Re: [wxlua-users] wxLogWindow

2009-08-25 Thread Daniel Aquino
But if it's not opened then it will ? I have to test later when i get home... On Tue, Aug 25, 2009 at 9:22 AM, Andreas Krinke wrote: > Daniel Aquino wrote: >> hm yea ok i guess that is fine... >> >> i was setting verbose true and then not opening the window which >

Re: [wxlua-users] wxLogWindow

2009-08-25 Thread Daniel Aquino
hm yea ok i guess that is fine... i was setting verbose true and then not opening the window which caused a pop up... i guess if i close the window then it should be set back to false... thanks... On Tue, Aug 25, 2009 at 8:57 AM, Andreas Krinke wrote: > Daniel Aquino wrote: >> yea

Re: [wxlua-users] wxLogWindow

2009-08-24 Thread Daniel Aquino
was open... This would seem clean and the way I would have designed it. On Mon, Aug 24, 2009 at 7:44 PM, Andreas Krinke wrote: > Daniel Aquino wrote: >> but I was referring to , "web browser alert style boxes" vs "a log >> window".  If the log window is

Re: [wxlua-users] wxLogWindow

2009-08-24 Thread Daniel Aquino
Well the thing is if the wxLogWindow is closed then the default behavior will produce those alert dialogs... I really don't want that... I have a small function which I use for that purpose. On Mon, Aug 24, 2009 at 11:26 AM, John Labenski wrote: > On Mon, Aug 24, 2009 at 11:12 AM

Re: [wxlua-users] wxLogWindow

2009-08-24 Thread Daniel Aquino
hm ok I'll look into that... but I was referring to , "web browser alert style boxes" vs "a log window". If the log window is closed it should not produce, "web browser alert style boxes" On Mon, Aug 24, 2009 at 11:01 AM, John Labenski wrote: > On Sun,

Re: [wxlua-users] wxLogWindow

2009-08-23 Thread Daniel Aquino
If I do: wx.wxLog.SetVerbose(true) wx.wxLogVerbose("blah") I still get a pop up window :[ I only want the log window to be for informational purposes... When it's closed or never created then it should never show pop up messages... Is this possible? Also when I create a wxLogWindow and then c

Re: [wxlua-users] wxLogWindow

2009-08-23 Thread Daniel Aquino
bose("blah") That's basically all I have right now. If you don't have the log window open it will generate a pop up window. The only one that doesn't is wxLogVerbose. But nothing shows up in the log window and i don't know how to enable verbose logging. On Sat,

Re: [wxlua-users] wxLogWindow

2009-08-22 Thread Daniel Aquino
hen I do I will send it... On Sat, Aug 22, 2009 at 8:00 AM, John Labenski wrote: > On Fri, Aug 14, 2009 at 9:29 PM, Daniel Aquino > wrote: >> wxLogMessage appears to not send an alert window when the log window >> is open but it does when it's closed... >> >>

Re: [wxlua-users] wxLogWindow

2009-08-14 Thread Daniel Aquino
h I tried log:SetLogLevel(wx.wxLOG_Max) crash as well and various other attempts... On Fri, Aug 14, 2009 at 9:15 PM, Daniel Aquino wrote: > I seem to see messages when I do LogError but not LogVerbose > > On Fri, Aug 14, 2009 at 9:12 PM, Daniel Aquino > wrote: >> The application also

Re: [wxlua-users] wxLogWindow

2009-08-14 Thread Daniel Aquino
I seem to see messages when I do LogError but not LogVerbose On Fri, Aug 14, 2009 at 9:12 PM, Daniel Aquino wrote: > The application also appears to crash which must mean I need to clean > up the log window some how on close... > > On Fri, Aug 14, 2009 at 9:09 PM, Daniel Aquino &

Re: [wxlua-users] wxLogWindow

2009-08-14 Thread Daniel Aquino
The application also appears to crash which must mean I need to clean up the log window some how on close... On Fri, Aug 14, 2009 at 9:09 PM, Daniel Aquino wrote: > I created a wxLogWindow successfully and attached it to my current window. > > I called wxLogVerbose but don't s

[wxlua-users] wxLogWindow

2009-08-14 Thread Daniel Aquino
I created a wxLogWindow successfully and attached it to my current window. I called wxLogVerbose but don't seem to see any output. The error functions work fine (showing a pop up window). I noticed I had to bind wxLogWindow to a particular frame but then when I call the log functions I doesn't n

Re: [wxlua-users] wxComboBox wxClientObject

2009-08-03 Thread Daniel Aquino
Thanks it worked! The docs can be hard to read some times for the untrained... On Sun, Aug 2, 2009 at 10:40 PM, John Labenski wrote: > On Sun, Aug 2, 2009 at 9:33 PM, Daniel Aquino > wrote: >> I set a string value for an item using >> >> combo_box:Append('loca

[wxlua-users] wxComboBox wxClientObject

2009-08-02 Thread Daniel Aquino
I set a string value for an item using combo_box:Append('localhost', wx.wxStringClientData('127.0.0.1')) combo_box:Select(0) Then I try to access the value again local selection = combo_box:GetSelection() local object = combo_box:GetClientObject( selection ) local address = object:GetData() But

[wxlua-users] icons

2009-07-31 Thread Daniel Aquino
anyone know of any scriptable tools that would let me easily set the icon for my binaries on win32/unix ? -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design,

Re: [wxlua-users] wxURL locking on GetInputStream()

2009-07-31 Thread Daniel Aquino
Works now thanks! On Wed, Jul 29, 2009 at 8:29 PM, John Labenski wrote: > On Wed, Jul 29, 2009 at 8:00 PM, Daniel Aquino > wrote: >> which version are you running ? > > I use 2.8.10. > >> I could only find binaries for 2.8.7 but wxlua is up to 2.8.10... > > You

Re: [wxlua-users] wxURL locking on GetInputStream()

2009-07-29 Thread Daniel Aquino
which version are you running ? I could only find binaries for 2.8.7 but wxlua is up to 2.8.10... It still happens even when I comment out all other code... On Tue, Jul 28, 2009 at 11:59 PM, John Labenski wrote: > On Tue, Jul 28, 2009 at 6:59 PM, Daniel Aquino > wrote: >> I'

[wxlua-users] wxURL locking on GetInputStream()

2009-07-28 Thread Daniel Aquino
I'm having lockups when I try to pull an http page using wxURL. It gets stuck at GetInputStream but then appears to work fine after right clicking on the systray icon... I believe it may be the threads issues that are described on this page: http://wiki.wxwidgets.org/WxURL quote: "Under Windows