Search found 613 matches

by VB6_to_PBx
Thu Jun 27, 2024 8:24 pm
Forum: Coding Questions
Topic: Loading Procedure Declares -vs- XIncludeFile .pbi
Replies: 1
Views: 487

Loading Procedure Declares -vs- XIncludeFile .pbi

Loading Procedure Declares -vs- XIncludeFile .pbi

what's the correct and best sequence method to use ??

Load Declares before XIncludeFile .pbi files

or

Load XIncludeFile .pbi files before Declares

or its does not matter which method ??

Pros or Cons ?
by VB6_to_PBx
Wed Apr 24, 2024 7:26 pm
Forum: Applications - Feedback and Discussion
Topic: IceDesign GUI designer
Replies: 726
Views: 293278

Re: IceDesign GUI designer

thanks ChrisR for this new Update
i just sent you a Donation
Transaction ID: 2P440924SS045931U
:)
by VB6_to_PBx
Sat Apr 06, 2024 7:11 pm
Forum: Applications - Feedback and Discussion
Topic: IceDesign GUI designer
Replies: 726
Views: 293278

Re: IceDesign GUI designer

ChrisR ... thank you for another method !

i forgot to Post about this :

with PureBasic's built-in Form Designer
all the Variables get listed sideways or horizontally

and with ICE Designer , all the Variables get listed vertically

example :
Enumeration Gadgets
#Txt_1
#String_1
#Btn_OK ...
by VB6_to_PBx
Fri Apr 05, 2024 10:20 pm
Forum: Applications - Feedback and Discussion
Topic: IceDesign GUI designer
Replies: 726
Views: 293278

Re: IceDesign GUI designer


Yes, yes, I understand the need for the Tab Order, I've made a note of it in my Todo.
I haven't really thought yet about how to do it, how to present it... I'll take a look but I'll let it mature, no rush, slowly, slowly :wink:

For now, it's pretty easy to do it with a macro and SetWindowPos ...
by VB6_to_PBx
Fri Apr 05, 2024 10:16 pm
Forum: Tricks 'n' Tips
Topic: Travel thru Gadgets
Replies: 4
Views: 887

Re: Travel thru Gadgets

Travel thru Gadgets ( example 5)


EnableExplicit

;- Global
Global.i Window_0
Global.i WW, EW, EM, EG, ET, AG ;<<--- WW= WaitWindowEvent() EW= EventWindow() EM= EventMenu() EG= EventGadget() ET= EventType() AG= GetActiveGadget()
Global.i Gad = 10 ;<<--- Gad = Array contains the total number of ...
by VB6_to_PBx
Fri Apr 05, 2024 10:15 pm
Forum: Tricks 'n' Tips
Topic: Travel thru Gadgets
Replies: 4
Views: 887

Re: Travel thru Gadgets

Travel thru Gadgets ( example 4)


EnableExplicit

;- Global
Global.i Window_0
Global.i WW, EW, EM, EG, ET, AG ;<<--- WW= WaitWindowEvent() EW= EventWindow() EM= EventMenu() EG= EventGadget() ET= EventType() AG= GetActiveGadget ...
by VB6_to_PBx
Fri Apr 05, 2024 10:15 pm
Forum: Tricks 'n' Tips
Topic: Travel thru Gadgets
Replies: 4
Views: 887

Re: Travel thru Gadgets

Travel thru Gadgets ( example 3)


EnableExplicit

;- Global
Global.i Window_0
Global.i WW, EW, EM, EG, ET, AG ;<<--- WW= WaitWindowEvent() EW= EventWindow() EM= EventMenu() EG= EventGadget() ET= EventType() AG= GetActiveGadget ...
by VB6_to_PBx
Fri Apr 05, 2024 10:14 pm
Forum: Tricks 'n' Tips
Topic: Travel thru Gadgets
Replies: 4
Views: 887

Re: Travel thru Gadgets

Travel thru Gadgets ( example 2)


EnableExplicit

;- Global
Global.i Window_0
Global.i String_1
Global.i Combo_2
Global.i Combo_3
Global.i Combo_4
Global.i WW, EW, EM, EG, ET, AG ;<<--- WW= WaitWindowEvent() EW= EventWindow() EM= EventMenu() EG= EventGadget() ET= EventType() AG= GetActiveGadget ...
by VB6_to_PBx
Fri Apr 05, 2024 10:12 pm
Forum: Tricks 'n' Tips
Topic: Travel thru Gadgets
Replies: 4
Views: 887

Travel thru Gadgets

Travel thru Gadgets ( example 1)

EnableExplicit

;- Global
Global.i Window_0
Global.i Combo_1
Global.i Combo_2
Global.i Combo_3
Global.i Combo_4
Global.i WW, EW, EM, EG, ET, AG ;<<--- WW= WaitWindowEvent() EW= EventWindow() EM= EventMenu() EG= EventGadget() ET= EventType() AG= GetActiveGadget ...
by VB6_to_PBx
Fri Apr 05, 2024 10:10 pm
Forum: Applications - Feedback and Discussion
Topic: IceDesign GUI designer
Replies: 726
Views: 293278

Re: IceDesign GUI designer

very nice example ChrisR,
thanks !
by VB6_to_PBx
Fri Mar 01, 2024 9:15 pm
Forum: Coding Questions
Topic: Solve 1 Equation with 2 Unknowns
Replies: 23
Views: 3367

Re: Solve 1 Equation with 2 Unknowns

; these 2 Equations give 100% exact real-world correlation results



; these 2 Equations give 100% exact real-world correlation results
; X = (A / (B * Y))
; Y = (A / (B * X))

; i always know in advance what A and B values are
; the Problem is both X and Y must be solved at the same time
; or ...
by VB6_to_PBx
Fri Mar 01, 2024 11:45 am
Forum: Coding Questions
Topic: Solve 1 Equation with 2 Unknowns
Replies: 23
Views: 3367

Re: Solve 1 Equation with 2 Unknowns

thanks Little John, TassyJim, and Stargate
for the quick replies with Code

this is what it should calculate :
real Solution: x=129.6025714796 , y=10100

also Stargate,
the movie "Stargate" is my Wife and I's one of all time favorite Movies !
We watched several times over the years .

For many years ...
by VB6_to_PBx
Fri Mar 01, 2024 7:19 am
Forum: Coding Questions
Topic: Solve 1 Equation with 2 Unknowns
Replies: 23
Views: 3367

Re: Solve 1 Equation with 2 Unknowns



"infinitely many" .... that's what i thought too , unsolveable !
i was hoping it would be solveable with Math advancements or AI ?

This is no advanced math, it is math for elementary school.
No, it is not unsolvable! Unsolvable would mean, no solution. But here you have a rule, how to get X ...
by VB6_to_PBx
Fri Mar 01, 2024 6:50 am
Forum: Coding Questions
Topic: Solve 1 Equation with 2 Unknowns
Replies: 23
Views: 3367

Re: Solve 1 Equation with 2 Unknowns


I also wonder, what do you mean here with solve?
X = 653184000 / (499 * Y)
and
Y = 653184000 / (499 * X)
if you rearrange.

There is not only one solution for x and y, but infinitely many.


"I also wonder, what do you mean here with solve?"
meaning : Solve both X and Y values at the same time ...
by VB6_to_PBx
Fri Mar 01, 2024 6:08 am
Forum: Coding Questions
Topic: Solve 1 Equation with 2 Unknowns
Replies: 23
Views: 3367

Solve 1 Equation with 2 Unknowns

how to Solve 1 Equation with 2 Unknowns ???

Solve both X and Y values :

X = (653184000 / (499 * Y))

is it possible ?