Search found 188 matches

by PJBlack
Sunday 31st January 2021 1:46pm
Forum: Project showcase
Topic: My Little Gambas Helper
Replies: 14
Views: 12079

Re: My Little Gambas Helper

works great if run from gambas

but compiled into a directory outside the project it says file not found ... seems controls.csv and images/ not found
in the main prog PopSearchTerms also not found ... to me not that problem

for now i let it in the project folder ;) that wonderful piece of genius
by PJBlack
Sunday 31st January 2021 1:28pm
Forum: General
Topic: how to get sub/function name and parameters
Replies: 8
Views: 6377

Re: how to get sub/function name and parameters

but what if i want that with every function? seems much typing ... what im thinking of is something like: strCName = Split(System.Backtrace[0],".")[0] ' class name strFName = Split(System.Backtrace[0],".")[1] ' function name name For Each a??????? As ???????? (Variant?) in strCNa...
by PJBlack
Sunday 31st January 2021 7:56am
Forum: General
Topic: how to get sub/function name and parameters
Replies: 8
Views: 6377

how to get sub/function name and parameters

lets say ... i have a sub/function like Public Function test(par1 as Integer, par2 as String) As Integer ' something like Print FunctionName ' something like For Each Parameter in FunctionCall ' Print ParName, ParValue ' End With End and i like to know the name of the function and the given paramete...
by PJBlack
Friday 29th January 2021 5:01pm
Forum: General
Topic: Print Preview
Replies: 6
Views: 5717

Re: Print Preview

i'm with today's 3.15.90 / gb.gui.qt and your code crashes gambas completely ...
by PJBlack
Friday 29th January 2021 6:00am
Forum: General
Topic: Control Category Lookup?
Replies: 1
Views: 1877

Re: Control Category Lookup?

i think i could be helpfull to see ALL controls and in which component they are located ...
by PJBlack
Tuesday 26th January 2021 6:33pm
Forum: General
Topic: how to program a lib A that depends on another lib B that depends on lib A
Replies: 5
Views: 3818

Re: how to program a lib A that depends on another lib B that depends on lib A

stevedee wrote: Tuesday 26th January 2021 5:35pm bad idea
my build in mr monk says it's a brilliant idea ... but yes i think you're right and i will thinking about redesigning that stuff.

thanks for your help so far!
by PJBlack
Tuesday 26th January 2021 4:58pm
Forum: Project showcase
Topic: My Little Gambas Helper
Replies: 14
Views: 12079

Re: My Little Gambas Helper

starting it together with the ide and use it often every day ... cant remember how to get round without it ... big thanks for that
by PJBlack
Tuesday 26th January 2021 4:54pm
Forum: General
Topic: how to program a lib A that depends on another lib B that depends on lib A
Replies: 5
Views: 3818

Re: how to program a lib A that depends on another lib B that depends on lib A

no because they can't compile ...

lib A uses libB.job() ... and lib B uses libA.job()

so i cant compile lib A to reference within lib B and i cant compile lib B to reference within lib A
by PJBlack
Tuesday 26th January 2021 4:11pm
Forum: General
Topic: html/md previewer
Replies: 3
Views: 2839

Re: html/md previewer

since this morning :) ... benoit is working real hard these days
by PJBlack
Tuesday 26th January 2021 4:07pm
Forum: General
Topic: how to program a lib A that depends on another lib B that depends on lib A
Replies: 5
Views: 3818

how to program a lib A that depends on another lib B that depends on lib A

i know how to do this in c or cpp but with gambas ??? no idea :(