Search found 57 matches

by tincho
Monday 9th May 2022 12:40pm
Forum: General
Topic: Paint sample
Replies: 2
Views: 1508

Paint sample

Hello friends. Could someone please tell me how to stop paint from drawing a line when it is positioned on another point. The problem appears between point 4 and 5 which should not be drawn. In the example I try to draw the capital letter "A" but you see the result. https://i.imgur.com/g0C...
by tincho
Tuesday 3rd May 2022 6:13pm
Forum: Project showcase
Topic: Classify a gambas classes explorer
Replies: 2
Views: 2893

Re: Classify a gambas classes explorer

PJBlack wrote: Tuesday 3rd May 2022 5:08pm 3.17.1
info.tar.gz
Thanks PJBlack
by tincho
Tuesday 3rd May 2022 10:00am
Forum: Beginners
Topic: Form Background Picture - Scale or Tile
Replies: 9
Views: 3459

Re: Form Background Picture - Scale or Tile

Hi Jerry,
Also you can stretch the image then conver it to picture, like:
  Dim oImage As Image
  oImage = Image.Load("/path/of/image/file")
  Me.Picture = oImage.Stretch(Me.W, Me.H).Picture
Regards
by tincho
Tuesday 3rd May 2022 9:48am
Forum: Project showcase
Topic: Classify a gambas classes explorer
Replies: 2
Views: 2893

Classify a gambas classes explorer

Hello friends. I'm updating the Classify [1] to provide it with the ability to track classes between different versions of shrimp. The purpose is to be able to analyses that a certain program made with a current Gambas version can be found on systems with older versions. I need the contents of the i...
by tincho
Sunday 1st May 2022 9:06pm
Forum: Project showcase
Topic: GauchoSketch a CAD to make simple diagrams.
Replies: 2
Views: 2769

Re: GauchoSketch a CAD to make simple diagrams.

There is some very nice programming here. I have used 2D CAD in a professional capacity, so I was looking for various features. Here are some of my observations: - ... This is a big challenge you are taking on here, I wish you all the best with it. Hi Charly, Thanks for the review, which is doubly ...
by tincho
Saturday 30th April 2022 7:07pm
Forum: Project showcase
Topic: GauchoSketch a CAD to make simple diagrams.
Replies: 2
Views: 2769

GauchoSketch a CAD to make simple diagrams.

Hello friends. Some time ago I have been working on this program that I present and share called GauchoSketch. For now, it is only the beginning of its development but I hope to make improvements. I already had an interface quite advanced, which was intended for GauchoCAD, but since it was discontin...
by tincho
Monday 7th June 2021 8:32pm
Forum: Lounge
Topic: Creating packages for manjaro
Replies: 0
Views: 4159

Creating packages for manjaro

Hellow friends. I have created installation packages for a gambas program [1] in Manjaro but the package created does not work I think. I try to open it with the software manager but a dialog box opens a few tenths of a second and ends. If someone uses Manjaro and wants to test their system if it wo...
by tincho
Friday 4th June 2021 7:30pm
Forum: General
Topic: Gambas runtime 3.16.0
Replies: 5
Views: 3577

Re: Gambas runtime 3.16.0

Hi,
Maybe (I say this without testing) if you program with ide 3.16 and create the package with it, then if you install this package on a debian where there is only version 3.14 it might not work.
For example if in your program you use the Splitter control that exists from version 3.16.
Regards.
by tincho
Friday 4th June 2021 12:38pm
Forum: Component
Topic: Function Rotate(Angle As Float) As Image
Replies: 13
Views: 10435

Re: Function Rotate(Angle As Float) As Image

ok, I have managed to alter the properties of the sub components, the coordinates for the case of the indicator needle and the text. But something is wrong because the result is not as expected. I'm going to try using another graphical element, like a line. Jerry: How did you do it in javascript? Re...
by tincho
Friday 4th June 2021 9:24am
Forum: Component
Topic: Function Rotate(Angle As Float) As Image
Replies: 13
Views: 10435

Re: Function Rotate(Angle As Float) As Image

Askjerry wrote: Friday 4th June 2021 4:23am If we can reference the SVG subcomponents and apply movement and/or rotation... awesome GUI could be created.
it is possible, i will try to do the pointer rotation.
Regards