Search found 76 matches

by gbWilly
Tuesday 4th July 2023 4:32pm
Forum: General
Topic: Strange Error
Replies: 3
Views: 2519

Re: Strange Error

I know this is an older post, but since you had no clue what causes this I might add some clarity fr.po:19: 'msgid' and 'msgstr' entries do not both end with '\n' fr.po:35: 'msgid' and 'msgstr' entries do not both end with '\n' msgfmt: found 2 fatal errors Every time you compile a translatable proje...
by gbWilly
Sunday 2nd July 2023 3:29pm
Forum: General
Topic: [Solved] DataGrid View
Replies: 9
Views: 2722

Re: DataGrid View

I would like the items to list From the bottom and not from the top so it would look a little like this https://algpos.co.uk/gambas/NPoSScreenshot_2.png To list from the bottom you will need to create a GridView with all empty rows. Number of rows needs to be enough to have the last row at the bott...
by gbWilly
Saturday 1st July 2023 7:09pm
Forum: General
Topic: Will Gambas ever integrate SMB so I can store my data on my server?
Replies: 3
Views: 1217

Re: Will Gambas ever integrate SMB so I can store my data on my server?

Well I've only had to deal with SMB shares on Windows servers, but it should all work the same.
As long as credentials on the Synology NAS to approach the share are properly provided and the location to the share is properly mounted to a local folder you should be good.
by gbWilly
Saturday 1st July 2023 5:07pm
Forum: General
Topic: [Solved] DataGrid View
Replies: 9
Views: 2722

Re: DataGrid View

Ok, so you don't get your data from a database, thus do not need DataView (from gb.db.form) I guess you are talking about GridView then. You want: Data1 in row 10 Upon adding Data2 you want: Data1 move to row 9 Data2 in row 10 And so on... Just trying to wrap my head around what you exactly want. If...
by gbWilly
Saturday 1st July 2023 3:05pm
Forum: General
Topic: [Solved] DataGrid View
Replies: 9
Views: 2722

Re: DataGrid View

I presume you are talking about DataView (part of gb.db.form). So, for example, you have 10 records that need to populate the DataView Normal top down manner of populating the DataView is: Record1 in row1 Record2 in row2 .... Record9 in row9 Record10 in row10 in this order You now want the populatin...
by gbWilly
Saturday 1st July 2023 1:40am
Forum: General
Topic: [Solved] DataGrid View
Replies: 9
Views: 2722

Re: DataGrid View

What are you trying to achieve?
Can you give me an example maybe?
by gbWilly
Saturday 1st July 2023 12:57am
Forum: General
Topic: Will Gambas ever integrate SMB so I can store my data on my server?
Replies: 3
Views: 1217

Re: Will Gambas ever integrate SMB so I can store my data on my server?

Now, it is my understanding that it is possible to mount an SMB folder into a local folder so that going to the local folder is really going to the SMB directory. Despite trying and troubleshooting, I have never been able to get this to work, and nobody has been able to help me get it to work I und...
by gbWilly
Tuesday 23rd May 2023 9:28pm
Forum: General
Topic: 3 Issues using Linux Mint 20
Replies: 10
Views: 2510

Re: 3 Issues using Linux Mint 20

Tried to load gambas3 onto a Linux Mint 20 machine and when attempting to launch, just got a small spinning circle for about 10 seconds then nothing. Seems this was a known issue but never incorporated in the latest download. This fixed that problem. sudo apt install gambas3-gb-form-print [this is ...
by gbWilly
Friday 19th May 2023 3:26pm
Forum: The Gambas IDE
Topic: How to run the IDE with QT
Replies: 12
Views: 8267

Re: How to run the IDE with QT

I have discovered that if I run the Gambas IDE with QT5 it solves the problem of not being able to enter text into the Group 'Drop Down List'. I have tried to sort this problem by changing themes and font sizes, with no joy. My question is what is the terminal command that will do this? In terminal...
by gbWilly
Thursday 18th May 2023 4:36pm
Forum: General
Topic: Weird problem with editing code from IDE
Replies: 7
Views: 1622

Re: Weird problem with editing code from IDE [Solved]

Under "EDIT" There is a lock flag ..... that gets me every time :D Nope, it wasn't the lock flag, That was one of the first things I checked. What it was we might never know as I reinstalled LDME, updated all files after install and then installed Gambas3. All works fine now, so I conside...