Re: [Gambas-user] Problem getting ReportVBox visible/invisible depending on condition

2014-04-25 Thread Willy Raets
On Thu, 2014-04-24 at 21:45 +0200, Fabien Bodard wrote: i think i have forgotten to manage invisible case That explains a lot, hope this will be fixed in Gambas 3.6 release ( as I understood that 3.5.x releases don't get all that is changed in trunk version). Meanwhile I'll have to think of

[Gambas-user] Feature request: absolute C data type equivalents and native type aliasing

2014-04-25 Thread Bruno FĂ©lix Rezende Ribeiro
Hello Gambas users and developers! I'm working on a module for Gambas, fully written in Gambas language, which aims to provide full access to the X Window System's Xlib library through a high-level Gambas-ish interface. I'm in the very beginning, but I've been making progress and so far I've

[Gambas-user] MaskBox.Mask

2014-04-25 Thread Patrik Karlsson
Hi, today I am using TextBox_Change event to reject | characters. Public Sub txtName_Change() If String.InStr(Last.Text, |) 0 Then Last.Text = Replace(Last.Text, |, ) Endif End I guess MaskBox can do this much simplier, but how, what Mask? /Patrik

[Gambas-user] Dialog on top of FullScreen window

2014-04-25 Thread Patrik Karlsson
Hi, Im having a problem with displaying forms on top of my main form when it's in full screen mode, even though I have set Form.Stacking=Above for my dialog form and called it with ShowModal. How ever, I noticed that when I use Message.Info(This one stays on top) its all ok. Can I change some