Search found 94 matches

by Got2BeFree
Saturday 6th July 2019 1:23pm
Forum: Lounge
Topic: Gambas on single board computers
Replies: 2
Views: 5695

Gambas on single board computers

I've been away from using SBC's for quite some time now. How is the status of using Gambas on SBCs. Any SBC's that work better than another for Gambas?
by Got2BeFree
Saturday 6th July 2019 1:17pm
Forum: Lounge
Topic: Touch screen monitors
Replies: 0
Views: 7852

Touch screen monitors

Lately I've been wanting to create some touch screen projects again in Gambas. I've got a very old ELO Touch computer that I'd been using to develop touch apps, but that was using an older OpenSuse install using old drivers and some fiddling. I've since upgraded the OS and lost touch capabilities an...
by Got2BeFree
Saturday 29th June 2019 2:15pm
Forum: Lounge
Topic: private file transfers
Replies: 8
Views: 11230

Re: private file transfers

Could have been a bug, or pilot error (i.e. me) or it could have been downloaded 20 times. So let try again, this time with a 7 days OR 100 downloads limit... https://send.firefox.com/download/7c531e28621a1f0d/#yozoy9RdvH_ha8nGVHjpSA FirefoxSend.png That wasn't a bug. That was me testing the downlo...
by Got2BeFree
Friday 31st May 2019 6:06am
Forum: General
Topic: GridView
Replies: 8
Views: 9596

Re: GridView

I already knew that doing this... Print gridviewPages.Rows[iRow].Height would tell me a row's height, but it escaped me at the time I posted the question above. It actually doesn't matter because it really wasn't what I was after. What I was after was a formula to automagically set row height when w...
by Got2BeFree
Monday 27th May 2019 10:59pm
Forum: Web
Topic: HTML-Editor
Replies: 3
Views: 13451

Re: HTML-Editor

I don't have one, but I sure would like to a Gambas coded one too.
by Got2BeFree
Monday 27th May 2019 10:56pm
Forum: General
Topic: GridView
Replies: 8
Views: 9596

Re: GridView

Another GridView question... Anyone know what the default height of a row is? When I ran cogier's example, my output was much worse than his. I'm sure my font size had much to do with my results, but still, even when changing font size, a GridView row height should change accordingly, but not if you...
by Got2BeFree
Monday 27th May 2019 10:26pm
Forum: General
Topic: GridView
Replies: 8
Views: 9596

Re: GridView

Hi, I made your WordWrap into a function that returns the 'wrapped' text. This way it is universally and even recursively usable for all kinds of situations. Nice one for in my library ;) Nice! Glad my code was found useful and made even better with only slight modifications. :) I like having code ...
by Got2BeFree
Monday 27th May 2019 2:51am
Forum: General
Topic: GridView
Replies: 8
Views: 9596

Re: GridView

Finally had a chance to look through your code and ended up writing new code based on what your's did. Without your example, I probably would still be trying to figure this out. Since I have only 1 field in my db table that would need wrapping, it was easy enough to set the row height for rows needi...
by Got2BeFree
Sunday 26th May 2019 4:52pm
Forum: General
Topic: GridView
Replies: 8
Views: 9596

Re: GridView

Excellent, thanks! I haven't had a chance to look at the code yet, but a quick run gave a different output than your pic shows. No big deal since I now know word-wrap and row height can be set on the fly. A little later today I'll go through the code and see how I can adapt it to my project and post...
by Got2BeFree
Sunday 26th May 2019 6:03am
Forum: General
Topic: GridView
Replies: 8
Views: 9596

GridView

In a GridView, is it possible to word-wrap long text and set the row to accommodate the added lines, all being done dynamically? I know I can explicitly set a row's height prior to accessing and loading data, but I haven't figured out how to do it while accessing and loading data from an sqlite db. ...