PBP Editor Wish List:


Closed Thread
Results 1 to 8 of 8
  1. #1
    blainecf's Avatar
    blainecf Guest

    Default PBP Editor Wish List:

    1. Editor would automatically change "END IF" to "ENDIF"

    2. Ability to customize the Code Explorer to leave the Labels node expanded while leaving all other nodes collapsed. (I use the Labels node to quickly jump to a portion of the code referenced by a GOSUB - very handy!!!)

    3. Online Updating has no ability (that I can find) to manually ask for updates (?) ... now that I play with it, I can't seem to make it work at all, automatically or otherwise.

    4. VB has the ability to "mark" one or more places in the code, and then jump to the next or previously "marked" spot. This is very useful.

    These are pretty minor things; overall I love the development environment!

    Thanks,

  2. #2
    Join Date
    Sep 2004
    Location
    montreal, canada
    Posts
    6,898


    Did you find this post helpful? Yes | No

    Default

    Melabs don't create the Editor. If you have MicroCode Studio... all the credit goes to Mr David Baker from Mecanique.... yeah the same guy who create at least the Free Easy HID Maker.

    All excellent an used daily by myself. Thank you David for such great stuff!

    David is also a member of this forum, his website is bellow.
    www.mecanique.co.uk
    Steve

    It's not a bug, it's a random feature.
    There's no problem, only learning opportunities.

  3. #3
    Join Date
    Feb 2003
    Posts
    432


    Did you find this post helpful? Yes | No

    Default

    Quote Originally Posted by mister_e
    Melabs don't create the Editor. If you have MicroCode Studio... all the credit goes to Mr David Baker from Mecanique.... yeah the same guy who create at least the Free Easy HID Maker.

    All excellent an used daily by myself. Thank you David for such great stuff!

    David is also a member of this forum, his website is bellow.
    www.mecanique.co.uk
    I agree.

    Microcode Studio Plus is superb but I also agree with the first point raised by the original poster as by far my biggest mistake is putting "END IF" instead of "ENDIF"

    What I would like to see added to MCS is the ability to insert "Page Breaks" into the source code so that a printout can be made to look neater, eg force a new sheet before a particularly long section of code to stop it appearing over two pages.
    Keith

    www.diyha.co.uk
    www.kat5.tv

  4. #4
    Join Date
    Sep 2004
    Location
    montreal, canada
    Posts
    6,898


    Did you find this post helpful? Yes | No

    Default

    the only thing you can do, is to import your .BAS to Word and do all formating there. But your point is interesting.
    Steve

    It's not a bug, it's a random feature.
    There's no problem, only learning opportunities.

  5. #5
    blainecf's Avatar
    blainecf Guest


    Did you find this post helpful? Yes | No

    Default One more improvement request for PBP: String Assignment to an array

    Since this is possible:

    MyArray VAR BYTE[20]
    MyArray[0] = "H"
    MyArray[1] = "i"
    MyArray[2] = " "
    MyArray[3] = "B"
    ...

    Why not:

    MyArray[0] = "Hi Blaine"

    ...
    and then
    ...
    MyArray[3] = "Rhonda"

    ??????

    I'm not asking for full blown BASIC variable length string handling capabilities with garbage collection, but this one piece of functionality would be WONDERBAR!!!

  6. #6
    Join Date
    Sep 2004
    Location
    montreal, canada
    Posts
    6,898


    Did you find this post helpful? Yes | No

    Default

    MyArray[0]="String" will never work as each index must be a byte. but

    MyArray var byte[20]

    MyArray="String"

    could be interesting. But as i don't really use array for string but prefer the 'embedded string in your code space' style or using an external eeprom... i can't see any benefit of... but maybe if

    MyArray var byte[20]
    Array2 var byte[20]

    MyArray="Hello"

    '
    '
    '
    '
    '
    Hserin [STR Array2\20\13]
    If array2=Myarray then DoSomething

    now we talk of something easy to write and understand... usefull... yeas, no, toaster, hamburger... depending the way you think.
    Steve

    It's not a bug, it's a random feature.
    There's no problem, only learning opportunities.

  7. #7
    blainecf's Avatar
    blainecf Guest


    Did you find this post helpful? Yes | No

    Default String assignments to arrays

    Has anyone written assembler functions that would stuff strings into arrays?

    If someone would give me the basics of it, I'd love to write a set of low-level string functions for manipulating strings withing PBP arrays. Someone please help me get to first base and I'll run with it, posting the results as I go !

    Just show me how to accomplish: MyArray = "Hi Blaine" via something like:

    call stringassign MyArray, "Hi Blaine"

    Then I'll try to write corresponding functions for mid, left, right, and concatenation. We'll debate, refine, and GO FORWARD CONQUERING!

  8. #8
    Join Date
    Sep 2004
    Location
    montreal, canada
    Posts
    6,898


    Did you find this post helpful? Yes | No

    Default

    you can play around the 'embedded string in your code space' stuff
    http://www.pbpgroup.com/modules/wfse...p?articleid=10

    just change the StringOut subroutine to send value to an array instead of sending it with HSEROUT.

    it's still far of what you need but have a look at different method...take your time to read from the begining'till the end. You need the use of Macro.. there's few example in and there
    http://www.picbasic.co.uk/forum/show...rings+embedded

    and now we are far of the original topic
    Last edited by mister_e; - 12th July 2006 at 21:26.
    Steve

    It's not a bug, it's a random feature.
    There's no problem, only learning opportunities.

Similar Threads

  1. PBP Book
    By Bruce in forum Off Topic
    Replies: 83
    Last Post: - 4th October 2021, 12:55
  2. PBP List file???
    By MOUNTAIN747 in forum General
    Replies: 2
    Last Post: - 28th February 2010, 19:48
  3. List of instructions used in PBP ?
    By AndrewC in forum mel PIC BASIC Pro
    Replies: 2
    Last Post: - 2nd November 2007, 11:22
  4. PBP wish list.....
    By muddy0409 in forum PBP Wish List
    Replies: 7
    Last Post: - 21st November 2005, 09:51
  5. PBP Wish List
    By Radiance in forum PBP Wish List
    Replies: 5
    Last Post: - 1st February 2005, 17:30

Members who have read this thread : 2

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts