Dropdown for Subsystems
- Kaeru Gaman
- Addict
- Posts: 4826
- Joined: Sun Mar 19, 2006 1:57 pm
- Location: Germany
Dropdown for Subsystems
it would be nice if the Subsystem field in the Compiler Options would be a DropDownList.
it's a bit unconveniant and typo-happy having to enter it manually.
additionally, DirectX7 should be an entry, even tho it means "no additional Subsystem"...
it's a bit unconveniant and typo-happy having to enter it manually.
additionally, DirectX7 should be an entry, even tho it means "no additional Subsystem"...
oh... and have a nice day.
- Fluid Byte
- Addict
- Posts: 2336
- Joined: Fri Jul 21, 2006 4:41 am
- Location: Berlin, Germany
Totally agreed. Having to type the subsystem yourself leads to typos and a dropdown can give you instant overview about all subsystems available.
Windows 10 Pro, 64-Bit / Whose Hoff is it anyway?
what is about more than one subsystem?
dropdownbox is not a way
dropdownbox is not a way
PureBasic 5.73 | SpiderBasic 2.30 | Windows 10 Pro (x64) | Linux Mint 20.1 (x64)
Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.

Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.

- netmaestro
- PureBasic Bullfrog
- Posts: 8451
- Joined: Wed Jul 06, 2005 5:42 am
- Location: Fort Nelson, BC, Canada
Sorry no.netmaestro wrote:A dropdown with checkboxes beside the items would be ideal. Perfect, in fact.A drop down doesn't work. As ts-soft said, there would be no way to have multiple subsystems.
If you have an own Subsystem...how can you select it?
e.g.: DX9 subsystem from S.M.
Belive! C++ version of Puzzle of Mystralia
<Wrapper>4PB, PB<game>, =QONK=, PetriDish, Movie2Image, PictureManager,...
<Wrapper>4PB, PB<game>, =QONK=, PetriDish, Movie2Image, PictureManager,...
IceSoft wrote:Sorry no.netmaestro wrote:A dropdown with checkboxes beside the items would be ideal. Perfect, in fact.A drop down doesn't work. As ts-soft said, there would be no way to have multiple subsystems.
If you have an own Subsystem...how can you select it?
e.g.: DX9 subsystem from S.M.
Code: Select all
If ExamineDirectory(0, #PB_Compiler_Home + "SubSystems", "")
While NextDirectoryEntry(0)
If DirectoryEntryType(0) = #PB_DirectoryEntry_Directory
If Left(DirectoryEntryName(0),1) <>"."
Debug DirectoryEntryName(0)
EndIf
EndIf
Wend
FinishDirectory(0)
EndIf

PureBasic 5.73 | SpiderBasic 2.30 | Windows 10 Pro (x64) | Linux Mint 20.1 (x64)
Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.

Old bugs good, new bugs bad! Updates are evil: might fix old bugs and introduce no new ones.

- Kaeru Gaman
- Addict
- Posts: 4826
- Joined: Sun Mar 19, 2006 1:57 pm
- Location: Germany
1.
anything would be better than an enter-text-field.
2.ts-soft wrote:The IDE can add all available subsystems
there are ways to do it properly.Mistrel wrote:Or a list view with check boxes. Or a blank list view with Add and Remove buttons.netmaestro wrote:A dropdown with checkboxes beside the items would be ideal. Perfect, in fact.
anything would be better than an enter-text-field.
oh... and have a nice day.
Or a text field where you can enter what you wantMistrel wrote:Or a list view with check boxes. Or a blank list view with Add and Remove buttons.netmaestro wrote:A dropdown with checkboxes beside the items would be ideal. Perfect, in fact.A drop down doesn't work. As ts-soft said, there would be no way to have multiple subsystems.

quidquid Latine dictum sit altum videtur
It's not user-friendly. You have to read the doc to know that there are several subsystems, that you have to type in *this* textfield that you want a different subsystem, you have to check the subsystem dir to know the names, you have to type correctly the name. I know typing is the C or the Unix way to do things, maybe it's not really difficult, but the point is that it's not easy, nor obvious...freak wrote:Or a text field where you can enter what you wantMistrel wrote:Or a list view with check boxes. Or a blank list view with Add and Remove buttons.netmaestro wrote:A dropdown with checkboxes beside the items would be ideal. Perfect, in fact.A drop down doesn't work. As ts-soft said, there would be no way to have multiple subsystems.Seriously, how difficult can this be?
Use a drop down / edit combo. Ie. either pick your flavour, or add it by hand in the field.
( PB6.00 LTS Win11 x64 Asrock AB350 Pro4 Ryzen 5 3600 32GB GTX1060 6GB)
( The path to enlightenment and the PureBasic Survival Guide right here... )
( The path to enlightenment and the PureBasic Survival Guide right here... )
- Kaeru Gaman
- Addict
- Posts: 4826
- Joined: Sun Mar 19, 2006 1:57 pm
- Location: Germany
I just happened today to need to tell a Beginner "Enter 'DirectX9' manually into the Textfield"
I have to say, it feels ugly improfessional in opposite to "chose the subsystem from the dropdown list there and there"
is it so hard to create a dropdown where you can add entries?
the autocomplete does this if you define variables and procedures, so where should be the problem?
I just renew my request for a dropdown!
I have to say, it feels ugly improfessional in opposite to "chose the subsystem from the dropdown list there and there"
is it so hard to create a dropdown where you can add entries?
the autocomplete does this if you define variables and procedures, so where should be the problem?
I just renew my request for a dropdown!
oh... and have a nice day.