[Gambas-user] Connect with Cloud drives...

2018-07-13 Thread Leon Davis
I would like to be able to connect with Google Drive & Drive One type services and download and display image files... -- Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! ht

Re: [Gambas-user] reparent menu item

2017-06-18 Thread Leon Davis
I have created a form with containing a component I designed. When the program is started the menu is created: MenuItem = new Menu(FormMain) as "FileMenu" and is displayed as a text menu of the form. There is also a context menu that is created for when the user right clicks on the control: MenuIte

[Gambas-user] reparent menu item

2017-06-17 Thread Leon Davis
Using Gambas v3.9.2 and GTK+3 Is there a safe way to reparent a menu item during runtime? Any help would be greatly appreciated. Leon -- Check out the vibrant tech community on one of the world's most engaging tech sites,

[Gambas-user] Form listener

2017-05-29 Thread Leon Davis
Using Gambas v3.9.2 and GTK+3 I have added a form to another form: Dim NForm as Form NForm = new MyForm(ME) as "MyForm" The problem I'm having is none of the Key events, i.e. (keypress, keyup, keydown) for either form do anything. Also the Form_Resize for NForm doesn't fire. In my search I found

Re: [Gambas-user] transparency on rotated image

2017-05-07 Thread Leon Davis
This solved my issue. Thank you very much. While I have your eyes. Is there a way to add text to an image? On Sat, May 6, 2017 at 8:42 AM, Charlie wrote: > If you change: - > *sImg.drawImage(sImg2)* to *sImg.PaintImage(sImg2, 0, 0)* > and > *sImg.DrawImage(sImg2, 50, 50)* to *sImg.PaintImage(sIm

Re: [Gambas-user] transparency on rotated image

2017-05-05 Thread Leon Davis
See attached On Fri, May 5, 2017 at 1:59 AM, Fabien Bodard wrote: > can you send a sample project ? > > 2017-05-04 18:12 GMT+02:00 Leon Davis : > > Using Gambas v3.9.2 and GTK+3 > > > > After I rotate an image "Image.Rotate(0.03)" I get a background I c

[Gambas-user] transparency on rotated image

2017-05-04 Thread Leon Davis
Using Gambas v3.9.2 and GTK+3 After I rotate an image "Image.Rotate(0.03)" I get a background I can't get rid of. Bug or Feature? Thank you for any assistance. Leon -- Check out the vibrant tech community on one of the wo

Re: [Gambas-user] Friend functionality

2017-04-29 Thread Leon Davis
Thank you very much for your help Regards Leon On Sat, Apr 29, 2017 at 8:05 AM, Tobias Boege wrote: > On Sat, 29 Apr 2017, Leon Davis wrote: > > Gambas v3.9.2 using GTK+3 > > > > In Microsoft VB there is a "Friend" designation that allows classes in > the >

[Gambas-user] Friend functionality

2017-04-29 Thread Leon Davis
Gambas v3.9.2 using GTK+3 In Microsoft VB there is a "Friend" designation that allows classes in the same project to access each others members while protecting those members access from the dot notation. Example: a programmer cannot access a friend member by typing "MyClass.ClassMember". Is that

Re: [Gambas-user] Property override

2017-04-27 Thread Leon Davis
Thank you On Thu, Apr 27, 2017 at 9:14 AM, Tobias Boege wrote: > On Thu, 27 Apr 2017, Leon Davis wrote: > > Using Gambas v3.9.2 and GTK+3 > > > > I am creating a component and would like to override the Caption > property. > > > > > > > >

[Gambas-user] Property override

2017-04-27 Thread Leon Davis
Using Gambas v3.9.2 and GTK+3 I am creating a component and would like to override the Caption property. Public Const _Properties as String = "*,Caption" Property Read {Caption} as String Causes an "improper override error". I've also tried encasing the word Caption in the _Properties state

Re: [Gambas-user] Component Creation

2017-04-26 Thread Leon Davis
Got it... Excellent and thank you for the help. On Wed, Apr 26, 2017 at 11:36 AM, Tobias Boege wrote: > On Wed, 26 Apr 2017, Leon Davis wrote: > > Gambas v3.9.2 GTK+3 > > > > I am trying to create a component using gambas. Is there a way to test > the > > componen

[Gambas-user] Component Creation

2017-04-26 Thread Leon Davis
Gambas v3.9.2 GTK+3 I am trying to create a component using gambas. Is there a way to test the component during development? or is it necessary to complete the component and install it to test? You help is appreciated. --

[Gambas-user] Graphics programming help

2017-04-23 Thread Leon Davis
I've programmed in Microsoft VB since v3.0 and am now using gambas v3.9.2. When I initially created the project I selected "Graphical application".I am creating a image display app and have two quick questions please: 1. How do I have my program register itself with the OS? 2. I want to create tr