Search found 173 matches

by Quincunxian
Wednesday 15th May 2019 1:32am
Forum: General
Topic: Making a Class Based on a TableView
Replies: 7
Views: 8342

Re: Making a Class Based on a TableView

Hi GB, Right click on the form with the table view and 'mouse over' the 'Event' selection in the menu list. This will show you all the events that are accessible for the form ( works the same with any control as well). If any events have code already written, they will have a tick mark against them....
by Quincunxian
Wednesday 15th May 2019 1:15am
Forum: Lounge
Topic: Computers and Life...
Replies: 11
Views: 15833

Re: Computers and Life...

Hey Sholzy, I feel for you mate ... I've lost a hard drive and done the wrong partition thing as well over the years. I've lost a lot of Gambas code that I'm struggling to rewrite as it was so long ago and you would think it would be easy to re-create once you had it done once. That never happens - ...
by Quincunxian
Sunday 5th May 2019 5:57am
Forum: General
Topic: Has anyone got an example of using Compress
Replies: 2
Views: 4216

Re: Has anyone got an example of using Compress

Thanks Jormo,
I may have to post to the email list - It will be something obvious that I've missed.
by Quincunxian
Sunday 21st April 2019 3:40am
Forum: General
Topic: Has anyone got an example of using Compress
Replies: 2
Views: 4216

Has anyone got an example of using Compress

I'm trying to use the Gambas compress function to create a backup of a file/folder set. I can get it to work for one file without issue but can't understand how you add additional files to the 'zip' file ? Must be overlooking something simple but can't find anything out in interweb land that's helpf...
by Quincunxian
Wednesday 17th April 2019 9:40pm
Forum: General
Topic: Your graphics card & Open GL
Replies: 0
Views: 7497

Your graphics card & Open GL

This is a handy to get your Graphics card details and RAM for your Gambas Open GL Project using the Mesa Utils package. Web site is here https://www.mesa3d.org/ A good short summary https://wiki.debian.org/Mesa sudo apt install mesa-utils Example ============================================= Quin@Ru...
by Quincunxian
Wednesday 17th April 2019 11:48am
Forum: General
Topic: New Start
Replies: 2
Views: 3902

Re: New Start

Welcome Sheep Rustler. I made the same transition you are making some years ago and have never looked back. From .net to programming something meaningful in Gambas took about 2 weeks. The only thing that used to throw me was swapping the languages - back then, work was .net and home hobby was Gambas...
by Quincunxian
Tuesday 19th March 2019 11:05pm
Forum: General
Topic: GLCAD - First attempt to make a CAD program with Gambas and OpenGL
Replies: 2
Views: 8999

Re: GLCAD - First attempt to make a CAD program with Gambas and OpenGL

Thanks Jornmo - That's pretty cool. It will give me a basis for something to play with and see if I can attempt some of the things I need in a game. To expand on my objective to draw a grid of say 10 X 10 X 10 with each (25 Max) star as a circular object of the size & colour to match the start t...
by Quincunxian
Sunday 17th March 2019 10:44pm
Forum: General
Topic: How to draw in a GLArea?
Replies: 6
Views: 9958

Re: How to draw in a GLArea?

One of the best guides I found ages ago when I was experimenting with Open GL as from a guy called NeHe. He wrote some of the examples for Gambas but like you, a search for "NeHe & Gambas" did not bring back much. He does appear to have a bit more of a general site here . and some lega...
by Quincunxian
Saturday 16th March 2019 11:37pm
Forum: General
Topic: Useful Links Code
Replies: 6
Views: 7270

Re: Useful Links Code

I Like it !. When did the array .Max turn up or has it always been there ? Apparently it appears in other controls as well ie: ScrollView1.Children.Max I assume another little gem from Benoît and that's going to be very useful indeed. ! If {test} Then Continue ? Now that's a new one on me - Let me t...
by Quincunxian
Saturday 16th March 2019 4:32am
Forum: General
Topic: Code Editor Copy & Paste Behavior
Replies: 0
Views: 6208

Code Editor Copy & Paste Behavior

For quite some time now, I'm finding that when I do a copy of past of some code into the same Class/Module, I get the last Sub/Func duplicated in the module without the Declaration header. ie: Public Sub Blah() Most of the time I only find this when I go to run as it obviously generates an error. I'...