Re: [wxhaskell-users] Maximizing frames

2007-06-12 Thread Eric Y. Kow
Hi, On Sun, Jun 10, 2007 at 23:07:23 +0200, Antonio Regidor GarcĂ­a wrote: > How can I maximize a frame in wxhaskell? I've been looking into it, but can't quite figure out how yet. There doesn't seem to be a native wxHaskell way to do it (anyone?). Maybe you can do something like send a Maximize

Re: [wxhaskell-users] Problem with getting string from textcontrol

2007-06-12 Thread Malcolm Wallace
Atif Iqbal <[EMAIL PROTECTED]> wrote: > I am new to Haskell and wxhaskell. > I want to get a string from one text box,process it on button click > and show the result in another test box on the same window. In that case, you only need to modify your code a little, to move the point at which you

Re: [wxhaskell-users] Problem with getting string from textcontrol

2007-06-12 Thread Atif Iqbal
thanks Malcolm! I am new to Haskell and wxhaskell. I want to get a string from one text box,process it on button click and show the result in another test box on the same window. stxt<- textEntry p [enabled := True] textlog <- textCtrl p [enabled := False, wrap := WrapNone] -- us