Search found 15 matches

by salihburhan
Wednesday 6th October 2021 8:58am
Forum: General
Topic: Error loading class..
Replies: 0
Views: 3716

Error loading class..

For some reason, I get a "unable to load class file" error. It is a very straightforward class that holds some db data much like all the others I use. During debug this is the message I get: Cannot load class '$oGSk': Loading has already failed. Though program does not crash. Later, at som...
by salihburhan
Thursday 17th September 2020 6:45am
Forum: General
Topic: problem with different desktop environments?
Replies: 2
Views: 2977

Re: problem with different desktop environments?

I'll respond about the exact problems with Debian 11.
As for the KeyRelease, it worked, thanks. Never thought to try that.
by salihburhan
Wednesday 16th September 2020 11:09am
Forum: General
Topic: problem with different desktop environments?
Replies: 2
Views: 2977

problem with different desktop environments?

Two questions: I use a gambas exe in different environments. There seems to be a problem with the component library: - When I use deb 10 & gb.gtk3 I have a segmentation fault - When I use deb 10 & gb.gui, no problems - When I use deb 11 & gnome3 - the exe does not work properly (messageb...
by salihburhan
Saturday 30th May 2020 10:39am
Forum: Web
Topic: help with web methods
Replies: 5
Views: 12164

Re: help with web methods

edit.
Worked fine with debian bullseye just now. Exactly the same code. I am confused.
by salihburhan
Saturday 30th May 2020 9:43am
Forum: Web
Topic: help with web methods
Replies: 5
Views: 12164

Re: help with web methods

Debian 10.4, installed it with apt. The segmentation fault came up in three different computers (a few moths ago) with our erp after an os update. All with debian, one with fedora. With debian, it happened when I installed testing (11). I solved it by switching from qt to gtk3. This one, your code, ...
by salihburhan
Friday 29th May 2020 9:00am
Forum: Web
Topic: help with web methods
Replies: 5
Views: 12164

Re: help with web methods

Thanks for the reply.. OK. Trying out your code, I get segmentation fault.. (I get it all the time in new OS installations since 2020) :( It used to be because of qt. Solved it by removing qt from the code. This time, I am using gtk3. Here is the code.. (This code is the whole program).. ' Gambas cl...
by salihburhan
Friday 15th May 2020 3:04pm
Forum: Web
Topic: help with web methods
Replies: 5
Views: 12164

help with web methods

I need to integrate a web service into my desktop application.. I tried to use httpclient of curl, but could not. I have no idea what I am doing.. 8) If anyone has a sample code for me to debug, I'd be most grateful. All I need to do is use some methods on the remote server. Here is how I failed (th...
by salihburhan
Tuesday 10th March 2020 7:56am
Forum: General
Topic: segmentation fault
Replies: 3
Views: 5108

Re: segmentation fault

UPDATE:

The same problem comes up after fedora upgrade to v. 30.
by salihburhan
Tuesday 3rd March 2020 5:27pm
Forum: General
Topic: A Dirty Guide to OOP #1
Replies: 18
Views: 19965

Re: A Dirty Guide to OOP #1

If there is a compiler engine of sorts like a class that can be imported and called at runtime for specific subroutines.... So maybe it might be possible to pass along a string to be compiled and a name for the class. It can return a variable that has standard methods. $var.insert() $var.update_name...
by salihburhan
Wednesday 26th February 2020 11:41am
Forum: General
Topic: A Dirty Guide to OOP #1
Replies: 18
Views: 19965

Re: A Dirty Guide to OOP #1

I was wondering if it is at all possible to create objects at runtime. Say, I have a resultset with two fields: id, oName Can I create a class? Public id as integer public oName as string public sub set_delete() --go delete public sub set_by_id($id as integer) -- go populate obj public sub set_inser...