Search found 611 matches

by VB6_to_PBx
Sat Apr 06, 2024 7:11 pm
Forum: Applications - Feedback and Discussion
Topic: IceDesign GUI designer
Replies: 572
Views: 137432

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 #Txt_2 #String_...
by VB6_to_PBx
Fri Apr 05, 2024 10:20 pm
Forum: Applications - Feedback and Discussion
Topic: IceDesign GUI designer
Replies: 572
Views: 137432

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() Api,...
by VB6_to_PBx
Fri Apr 05, 2024 10:16 pm
Forum: Tricks 'n' Tips
Topic: Travel thru Gadgets
Replies: 4
Views: 139

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 User i...
by VB6_to_PBx
Fri Apr 05, 2024 10:15 pm
Forum: Tricks 'n' Tips
Topic: Travel thru Gadgets
Replies: 4
Views: 139

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() ;======================================================== ;-[ Keyboard S...
by VB6_to_PBx
Fri Apr 05, 2024 10:15 pm
Forum: Tricks 'n' Tips
Topic: Travel thru Gadgets
Replies: 4
Views: 139

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() ;======================================================== ;-[ Keyboard S...
by VB6_to_PBx
Fri Apr 05, 2024 10:14 pm
Forum: Tricks 'n' Tips
Topic: Travel thru Gadgets
Replies: 4
Views: 139

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: 139

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: 572
Views: 137432

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: 760

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 both X ...
by VB6_to_PBx
Fri Mar 01, 2024 11:45 am
Forum: Coding Questions
Topic: Solve 1 Equation with 2 Unknowns
Replies: 23
Views: 760

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 man...
by VB6_to_PBx
Fri Mar 01, 2024 7:19 am
Forum: Coding Questions
Topic: Solve 1 Equation with 2 Unknowns
Replies: 23
Views: 760

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...
by VB6_to_PBx
Fri Mar 01, 2024 6:50 am
Forum: Coding Questions
Topic: Solve 1 Equation with 2 Unknowns
Replies: 23
Views: 760

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 ti...
by VB6_to_PBx
Fri Mar 01, 2024 6:08 am
Forum: Coding Questions
Topic: Solve 1 Equation with 2 Unknowns
Replies: 23
Views: 760

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 ?
by VB6_to_PBx
Mon Jan 01, 2024 9:34 am
Forum: General Discussion
Topic: PureBasic is a Great Programming Language with Limited Resources
Replies: 18
Views: 2161

Re: PureBasic is a Great Programming Language with Limited Resources

The matter is not about "what's the topic I need to learn" or "Go & search this great form". I'm sure you know what I'm talking about! very nice PureBasic Tutorials on this YouTube Link : https://www.youtube.com/@PureProgramming/videos Hello, my name is Guillaume and I am a ...
by VB6_to_PBx
Mon Oct 02, 2023 7:20 pm
Forum: Coding Questions
Topic: FontID(0) or FontID which is correct ?
Replies: 6
Views: 408

Re: FontID(0) or FontID which is correct ?

just a quick question

About the PureBasic Constant :
#PB_Font_HighQuality

i thought "#PB_Font_HighQuality" constant should not be used anymore because it had some issues ???