Application wizards...

Got an idea for enhancing PureBasic? New command(s) you'd like to see?
GypsyPrince
User
User
Posts: 20
Joined: Sun Apr 05, 2015 9:13 pm

Application wizards...

Post by GypsyPrince »

I would like to see some application wizards/templates for say...

SDI applications
MDI applications (especially this one)
basic splitter window application (especially this one too - I know there are sample apps but I'm not yet advanced enough to strip out the stuff I don't want from them)
simple console applications
database applications using SQLite

I know the creators want to differentiate PureBasic from Visual Basic as much as possible, but these trinkets would be nice for those of us who are slow learners...
infratec
Always Here
Always Here
Posts: 7588
Joined: Sun Sep 07, 2008 12:45 pm
Location: Germany

Re: Application wizards...

Post by infratec »

Hi,

only a note:

You'll never learn something from cut and paste.
You only learn something from doing it yourself.
GypsyPrince
User
User
Posts: 20
Joined: Sun Apr 05, 2015 9:13 pm

Re: Application wizards...

Post by GypsyPrince »

I don't have time to learn. I only have time to produce apps. If it weren't for .NET being unsecured bloatware running through a virtual machine, I would have stuck with the RAD of Visual Basic.
User avatar
DK_PETER
Addict
Addict
Posts: 904
Joined: Sat Feb 19, 2011 10:06 am
Location: Denmark
Contact:

Re: Application wizards...

Post by DK_PETER »

GypsyPrince wrote:......but these trinkets would be nice for those of us who are slow learners...
GypsyPrince wrote:I don't have time to learn. I only have time to produce apps.
Equilibrium. :lol:
Current configurations:
Ubuntu 20.04/64 bit - Window 10 64 bit
Intel 6800K, GeForce Gtx 1060, 32 gb ram.
Amd Ryzen 9 5950X, GeForce 3070, 128 gb ram.
infratec
Always Here
Always Here
Posts: 7588
Joined: Sun Sep 07, 2008 12:45 pm
Location: Germany

Re: Application wizards...

Post by infratec »

GypsyPrince wrote:I don't have time to learn. I only have time to produce apps.
Sorry to say, but ...

So you'll not fit this forum, because then you also have no time to help someone else.
GypsyPrince
User
User
Posts: 20
Joined: Sun Apr 05, 2015 9:13 pm

Re: Application wizards...

Post by GypsyPrince »

No... I'll not fit this forum because when I ask a question I expect a straightforward answer to it without it being followed up with sarcasm or useless verbage.

If the people who create this program don't see adding wizards to a program that I paid for as feasable, then let them be the one to say so in a rational, straightforward manner, and the others who have nothing to do with implementing said improvements can keep their snide remarks to themselves. As I don't have time for learning new concepts, I also do not have time to deal with smart-asses who like to hear the sound of their own voice because everyone else has discovered that he/she is not as intelligent as he/she would like everyone to think he/she is. Smart-ass and sarcasm seem to be the order of the day in these forums with very little actual help of any value from people who think they know everything.

Again, if you can answer my questions without being a narcissistic smart-ass and the snide commentary, then please do so. And I'll return the favor
juror
Enthusiast
Enthusiast
Posts: 228
Joined: Mon Jul 09, 2007 4:47 pm
Location: Courthouse

Re: Application wizards...

Post by juror »

GypsyPrince wrote:without being a narcissistic smart-ass and the snide commentary, then please do so.
Shoe fit maybe? :D
User avatar
Tenaja
Addict
Addict
Posts: 1959
Joined: Tue Nov 09, 2010 10:15 pm

Re: Application wizards...

Post by Tenaja »

GypsyPrince wrote:If the people who create this program don't see adding wizards to a program that I paid for as feasable, then let them be the one to say so in a rational, straightforward manner...
If that is your expectation, then be prepared to be disappointed. If you look at the majority of the posts on the Wishlist forum, they do not get a response from the dev team. Those that do get a response are not always positive nor negative. They just do not respond to every post. Good, bad, or otherwise, it is the way it is here.
User avatar
DK_PETER
Addict
Addict
Posts: 904
Joined: Sat Feb 19, 2011 10:06 am
Location: Denmark
Contact:

Re: Application wizards...

Post by DK_PETER »

@GP
Mine was both a smart-ass and a snide commentary.
This is directed towards a person, who 'flat out' has no intention of
learning the language and wants everything premade and ready to ship to his customers.
For the life of me, I can't understand why you're even here, Since you have no time and
no intention of learning? You should hire a developer and let that person use the time you don't have
to make the product you want.
I find your reasons for not learning a language ........ extremely unreasonable.
Current configurations:
Ubuntu 20.04/64 bit - Window 10 64 bit
Intel 6800K, GeForce Gtx 1060, 32 gb ram.
Amd Ryzen 9 5950X, GeForce 3070, 128 gb ram.
Trond
Always Here
Always Here
Posts: 7446
Joined: Mon Sep 22, 2003 6:45 pm
Location: Norway

Re: Application wizards...

Post by Trond »

GypsyPrince wrote:I would like to see some application wizards/templates for say...
The examples in the documentation should work as templates. For instance, when I look up SplitterGadget() I see this example is at the bottom:

Code: Select all

  If OpenWindow(0, 0, 0, 230, 180, "SplitterGadget", #PB_Window_SystemMenu | #PB_Window_ScreenCentered)
    #Button1  = 0
    #Button2  = 1
    #Splitter = 2

    ButtonGadget(#Button1, 0, 0, 0, 0, "Button 1") ; No need to specify size or coordinates
    ButtonGadget(#Button2, 0, 0, 0, 0, "Button 2") ; as they will be sized automatically
    SplitterGadget(#Splitter, 5, 5, 220, 120, #Button1, #Button2, #PB_Splitter_Separator)

    TextGadget(3, 10, 135, 210, 40, "Above GUI part shows two automatically resizing buttons inside the 220x120 SplitterGadget area.",#PB_Text_Center )

    Repeat
    Until WaitWindowEvent() = #PB_Event_CloseWindow
  EndIf
User avatar
kenmo
Addict
Addict
Posts: 2033
Joined: Tue Dec 23, 2003 3:54 am

Re: Application wizards...

Post by kenmo »

Hi GP. I think application wizards / templates are a perfectly reasonable request. Personally I envision it more as a community-developed IDE tool than an official feature though -- I prefer the team spending their time on the language/libraries :) . Maybe you could further discuss what you'd like to see in a wizard?
Post Reply