Page 1 of 2

Dropdown for Subsystems

Posted: Tue Feb 24, 2009 11:12 pm
by Kaeru Gaman
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"...

Posted: Tue Feb 24, 2009 11:25 pm
by Fluid Byte
Totally agreed. Having to type the subsystem yourself leads to typos and a dropdown can give you instant overview about all subsystems available.

Posted: Wed Feb 25, 2009 4:25 am
by ts-soft
what is about more than one subsystem?
dropdownbox is not a way

Posted: Wed Feb 25, 2009 4:27 am
by Mistrel
A drop down doesn't work. As ts-soft said, there would be no way to have multiple subsystems.

Posted: Wed Feb 25, 2009 5:05 am
by netmaestro
A drop down doesn't work. As ts-soft said, there would be no way to have multiple subsystems.
A dropdown with checkboxes beside the items would be ideal. Perfect, in fact.

Posted: Wed Feb 25, 2009 6:30 am
by IceSoft
netmaestro wrote:
A drop down doesn't work. As ts-soft said, there would be no way to have multiple subsystems.
A dropdown with checkboxes beside the items would be ideal. Perfect, in fact.
Sorry no.
If you have an own Subsystem...how can you select it?
e.g.: DX9 subsystem from S.M.

Posted: Wed Feb 25, 2009 7:15 am
by ts-soft
IceSoft wrote:
netmaestro wrote:
A drop down doesn't work. As ts-soft said, there would be no way to have multiple subsystems.
A dropdown with checkboxes beside the items would be ideal. Perfect, in fact.
Sorry no.
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
The IDE can add all available subsystems :wink:

Posted: Wed Feb 25, 2009 10:06 am
by djes
+1

Posted: Wed Feb 25, 2009 11:59 am
by Mistrel
netmaestro wrote:
A drop down doesn't work. As ts-soft said, there would be no way to have multiple subsystems.
A dropdown with checkboxes beside the items would be ideal. Perfect, in fact.
Or a list view with check boxes. Or a blank list view with Add and Remove buttons.

Posted: Wed Feb 25, 2009 12:19 pm
by Kaeru Gaman
1.
ts-soft wrote:The IDE can add all available subsystems :wink:
2.
Mistrel wrote:
netmaestro wrote:A dropdown with checkboxes beside the items would be ideal. Perfect, in fact.
Or a list view with check boxes. Or a blank list view with Add and Remove buttons.
there are ways to do it properly.
anything would be better than an enter-text-field.

Posted: Wed Feb 25, 2009 12:43 pm
by freak
Mistrel wrote:
netmaestro wrote:
A drop down doesn't work. As ts-soft said, there would be no way to have multiple subsystems.
A dropdown with checkboxes beside the items would be ideal. Perfect, in fact.
Or a list view with check boxes. Or a blank list view with Add and Remove buttons.
Or a text field where you can enter what you want :P Seriously, how difficult can this be?

Posted: Wed Feb 25, 2009 1:14 pm
by djes
freak wrote:
Mistrel wrote:
netmaestro wrote:
A drop down doesn't work. As ts-soft said, there would be no way to have multiple subsystems.
A dropdown with checkboxes beside the items would be ideal. Perfect, in fact.
Or a list view with check boxes. Or a blank list view with Add and Remove buttons.
Or a text field where you can enter what you want :P Seriously, how difficult can this be?
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...

Posted: Wed Feb 25, 2009 4:08 pm
by blueznl
Use a drop down / edit combo. Ie. either pick your flavour, or add it by hand in the field.

Posted: Thu May 14, 2009 4:16 pm
by Kaeru Gaman
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!

Posted: Thu May 14, 2009 4:22 pm
by freak
Ok ok, i will see what i can do :)