Announcement

Collapse
No announcement yet.

PB9 / Unicode

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

  • PB9 / Unicode

    Dear Beta-Testers!

    I look forward to the new versions (pb9+cc5).
    Is the documentation already complete?

    Is there commands for file names in the
    unicode format type (OPEN_W, DIR_W)?

  • #2
    As for documentation, see for yourself: http://www.powerbasic.com/support/

    Both help files can be viewed there.

    Comment


    • #3
      I heard that the final version is not yet available.
      I thought, maybe the documentation is too not completely ready.

      Comment


      • #4
        PB 9 is shipping. Many already have it. As a former beta tester I know that products are not announced prior to their released.

        Now that this is 9.0, we will probably see a minor bug fix for free to those who already purchased and receved 9.0

        (former via my own decision.)
        Last edited by Barry Erick; 28 Aug 2008, 02:57 PM.
        Barry

        Comment


        • #5
          Is there commands for file names in the unicode format type (OPEN_W, DIR_W)?
          I posted something on this maybe six months ago, but it was not in Source Code Forum. IIRC I had some errors and someone else posted fixes to the original.

          Try a 'find' on "FindFirstFileW"


          [OOPS]
          My bad, I did keep a record...

          Directory List with Non-ASCII (Unicode) characters in file names 5-31-08
          [/OOPS]




          MCM
          Last edited by Michael Mattias; 28 Aug 2008, 08:14 AM. Reason: Oops
          Michael Mattias
          Tal Systems (retired)
          Port Washington WI USA
          [email protected]
          http://www.talsystems.com

          Comment


          • #6
            The new compilers are released to the public (see PB's online shop and Bob's announcement here at the top of the forum).

            And as Barry said, "regular" users (i.e. non beta testers) have received their ordered copies meanwhile (that includes me *smile*).

            Comment


            • #7
              @Knuth Konrad
              I have my orders not yet received.
              I was told that there is still worked.
              Therefore my question.

              @Michael Mattias
              My program works with the PB commands (OPEN, DIR, etc.).
              For me it would be much easier if I could replace the commands
              (OPEN to OPEN_W, DIR to DIR_W, etc.).

              Unfortunately, there is in PB9/CC5 again not these commands.

              Comment


              • #8
                I did a forum search on "OPEN_W" and this was the only thread that was returned. Perhaps with the latest changes the need for it will grow. Best send in an NFS.
                Rod
                In some future era, dark matter and dark energy will only be found in Astronomy's Dark Ages.

                Comment


                • #9
                  For me it would be much easier if I could replace the commands (OPEN to OPEN_W,
                  Start with this:

                  Create and use a file which will be deleted on close

                  Change references to "szFile" to a dynamic string (of unicode characters).

                  Change CreateFile to CreateFileW (requires NT4+; on Win9x may use MSLU) (Passing STRPTR BYVAL for name)

                  Drop the FILE_FLAG_DELETE_ON_CLOSE attribute.

                  Done.

                  MCM
                  Michael Mattias
                  Tal Systems (retired)
                  Port Washington WI USA
                  [email protected]
                  http://www.talsystems.com

                  Comment

                  Working...
                  X