Search found 1042 matches
- Tuesday 31st January 2023 2:42am
- Forum: General
- Topic: way off topic
- Replies: 5
- Views: 39
Re: way off topic
i have considered that but they will not know what the gambas IDE is or anything about it. But IDE stands for "Integrated development environment". That is what gambas is and what you are looking for but with C, I think they will understand you if you say a C IDE. I just think you'll have...
- Monday 30th January 2023 10:36pm
- Forum: General
- Topic: way off topic
- Replies: 5
- Views: 39
Re: way off topic
Perhaps you should ask about it on a forum made for c programmers?
Then your post wouldn't be way off topic and you could post it in a general questions area and not an off topic area. Oh wait..

Haha
Just joking
Then your post wouldn't be way off topic and you could post it in a general questions area and not an off topic area. Oh wait..
Just joking
- Monday 30th January 2023 3:29pm
- Forum: Project showcase
- Topic: mpris media controller (WIP)
- Replies: 1
- Views: 29
Re: mpris media controller (WIP)
Okay , updates... I figured out Volume , also how to set LoopStatus and Shuffle Added a signal watcher that detects DBus MPRIS events like Volume/Position changes so updates instantly. (Seems there is no way to tell what program sent the signal so on getting notification it checks all controllers) I...
Re: Group
It seems okay now on my machine
- Sunday 29th January 2023 5:00pm
- Forum: Project showcase
- Topic: mpris media controller (WIP)
- Replies: 1
- Views: 29
mpris media controller (WIP)
I've been making a new thing that some of you may find interesting or even useful. it's a DBus mpris.MediaPlayer2 controller. What i have so far.. The program opens a tray icon on launch. Right clicking the icon shows the menus. A menu is created for any found controlable DBus mpris players (things ...
- Sunday 29th January 2023 3:21pm
- Forum: General
- Topic: Timer Stalling
- Replies: 1
- Views: 28
Re: Timer Stalling
Have you looked into Task.class? https://gambaswiki.org/wiki/comp/gb/task You can use a Task to run the method at a low priority so it does not effect the timer updates. a Task runs as a separate process/program , within the Task code you can set Application.Priority (0 = normal, 20 = lowest, -20 hi...
Re: Group
Hmm I had not seen this error unless a small font size but now i do.
Maybe some gtk update has caused it?
It works okay with the IDE running QT
- Friday 27th January 2023 2:09pm
- Forum: General
- Topic: Embedded forms - accessing procedures on parent forms
- Replies: 3
- Views: 61
Re: Embedded forms - accessing procedures on parent forms
Thank you Bruce for such a simple solution. Sadly I did not know about this, which would have saved me lots of somewhat ugly workarounds in the past. I work mainly with sqlite databases, and the reason I like embedded subforms is that they enable me to encapsulate and localize code for viewing and ...
- Friday 27th January 2023 1:56pm
- Forum: Beginners
- Topic: Homework question
- Replies: 11
- Views: 118
Re: Homework question
Thank you so much! Yes, I'm new to Gambas. I'm going to add the born-date, month and current-date (or the date they want the data for) in a Form and print it in a text area. Ill post updates when I'm done. Thank you guys so much! Well welcome to the wonderful world of gambas basic. Have a good read...
- Friday 27th January 2023 11:13am
- Forum: Beginners
- Topic: Homework question
- Replies: 11
- Views: 118
Re: Homework question
This will extract the contents of the meta tag you are seeking. Public Sub Form_Open() Dim hClient As HttpClient 'To create a HTTP Client Dim sResult As String 'To store the word's meaning hClient = New HttpClient As "hClient" 'Create a HTTP Client With hClient 'With the Client.. .URL = &q...