Results 1 to 3 of 3

Thread: Do manifest files enable unicode support?

  1. #1

    Thread Starter
    New Member
    Join Date
    Feb 2011
    Posts
    5

    Do manifest files enable unicode support?

    For some reason Unicode characters appear correctly (no question marks) within all my text boxes after creating a manifest file. Does anyone know anything about this? Are any other controls supported? Treeview?

  2. #2
    Default Member Bonnie West's Avatar
    Join Date
    Jun 2012
    Location
    InIDE
    Posts
    4,060

    Re: Do manifest files enable unicode support?

    Can you post the Unicode character(s) that you saw on your TextBox(es)? What are their character codes? Note that while you can paste Unicode characters to a Visual Styles enabled TextBox, VB6 still won't be able to "read" them.
    On Local Error Resume Next: If Not Empty Is Nothing Then Do While Null: ReDim i(True To False) As Currency: Loop: Else Debug.Assert CCur(CLng(CInt(CBool(False Imp True Xor False Eqv True)))): Stop: On Local Error GoTo 0
    Declare Sub CrashVB Lib "msvbvm60" (Optional DontPassMe As Any)

  3. #3
    PowerPoster dilettante's Avatar
    Join Date
    Feb 2006
    Posts
    24,487

    Re: Do manifest files enable unicode support?

    Quote Originally Posted by Bonnie West View Post
    Note that while you can paste Unicode characters to a Visual Styles enabled TextBox, VB6 still won't be able to "read" them.
    True:

    Code:
    Option Explicit
    
    Private Sub Command1_Click()
        Text2.Text = Text1.Text
    End Sub
    Name:  sshot.png
Views: 467
Size:  12.2 KB

    Even if you can read/write to them using API calls (e.g. SendMessage) debugging would be a nightmare since you really don't want to apply a styles manifest to the VB6 IDE. Thus in the end it is probably worthless.

Tags for this Thread

Posting Permissions

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



Click Here to Expand Forum to Full Width