Announcement

Collapse
No announcement yet.

Official wish list?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Official wish list?

    Is there an official wish list anywhere? Wish lists seem to be
    scattered all over the forum making it challenging to know where
    to add our wishes.

    My wishes:

    I wish I could have a compile listing. I'd rather have one document
    with all errors on it than having to view them one by one in the
    ide. I'd like to have a listing with object addresses which I can
    find when I get gpf's.


    ------------------
    Thanks,

    John Kovacich
    Ivory Tower Software

  • #2
    - Ability to have an XREF on any keyword/variable/function.
    - Integrated Debugger/XREF/IDE you can just click the tabs,
    kinda like Visual C++

    My vote is the XREF, I got hooked on that with TestPoint and OOP
    environment and I love it.

    Thanks



    ------------------
    -Greg
    -Greg
    [email protected]
    MCP,MCSA,MCSE,MCSD

    Comment


    • #3
      The suggestions are compiled, so don't worry too much... you can always email them to Tech Support just to be sure!

      John, there is no "magic" list of 'object addresses' for GPF tracking as a GPF can occur at any arbitrary point in a program or even within an API, but the real cause could be elsewhere in the code (ie, data corruption through pointer mis-use, etc).

      Greg, I'll ask for R&D to add another tick next to the XREF facility suggestion on the wish list... I also asked for this (some months back), so we'll have to see what "develops".

      Keep the suggestions rolling folks! Thanks!


      ------------------
      Lance
      PowerBASIC Support
      mailto:[email protected][email protected]</A>
      Lance
      mailto:[email protected]

      Comment


      • #4
        I've seen a wishlist on this site once (I think) but all I can find now is:
        http://www.powerbasic.com/feedback.asp

        Peter.


        ------------------
        [email protected]

        Comment


        • #5
          Lance,

          I have a feeling that more then just you and I like that feature.

          ------------------
          -Greg
          -Greg
          [email protected]
          MCP,MCSA,MCSE,MCSD

          Comment


          • #6
            You can add my name to list of those wanting XREF.

            ------------------

            Comment


            • #7
              Me too!

              I think I've requested XREF a couple of times already though.

              One feature would be nice and attract new customers, I'm not looking for this myself:

              Built in screensaver compilation (generating .SCR files) with help how to get a screensaver running.

              Peter.


              ------------------
              [email protected]

              Comment


              • #8
                Peter,

                SCR files are just .EXE files. They are rather simple to make
                I'll post the format when I get some time.

                Thanks,
                Greg

                ------------------
                -Greg
                -Greg
                [email protected]
                MCP,MCSA,MCSE,MCSD

                Comment


                • #9
                  - add the function call "execute" similar to VBA Control's
                  execute function that allows users to compile code on the fly
                  eg.

                  g&=execute("msgbox ""hello""")


                  ------------------
                  -Greg
                  -Greg
                  [email protected]
                  MCP,MCSA,MCSE,MCSD

                  Comment


                  • #10
                    That one would be unlikely as it would mean that the compiler itself would need to added into the runtime library.

                    Because VB still contains a (p-code?) interpreter, it can offer these features, but you pay for them in app size and speed, etc.


                    ------------------
                    Lance
                    PowerBASIC Support
                    mailto:[email protected][email protected]</A>
                    Lance
                    mailto:[email protected]

                    Comment


                    • #11
                      Gregery,

                      SCR files are just .EXE files. They are rather simple to make
                      I'll post the format when I get some time.
                      I know that, but you just made my point. You have to go find the code while I bet lots of people would be interested in a simple "Compile a .SCR file" switch.
                      Personally I don't have the time to create screensavers but there must be many people who would buy the compiler just for this purpose, if the feature was available. It certainly won't be much coding for the PB staff and will not affect your code nor compilation speed when not used.

                      Peter.


                      ------------------
                      [email protected]

                      Comment


                      • #12
                        Peter;

                        A screensaver is simply made up of a few predefined
                        Windows procedures. Every Screen saver must have these
                        functions. Beyond that there is no predefined screensaver
                        engine.

                        The three defined functions every screensaver must have are :

                        ScreenSaverProc(...)
                        ScreenSaverConfigureDialog(...)
                        RegisterDialogClasses(...)


                        ScreenSaverProc is similiar to a Window procedure, but uses
                        the DefScreenSaverProc function, rather than DefWindowProc.

                        You compile to an EXE and then change the EXE to SCR.

                        For more info read the book
                        "Windows 98 programming from the Ground Up" by Herbert Schilt.

                        The code is in C, but is easily converted to PB.




                        ------------------
                        Chris Boss
                        Computer Workshop
                        Developer of "EZGUI"
                        http://cwsof.com
                        http://twitter.com/EZGUIProGuy

                        Comment

                        Working...
                        X