CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Dec 2001
    Posts
    8

    Excel and multilanguage

    Hello all,
    I am using the code below to retrieve some fields from Excel and display them to a label.Unfortunatly the fields are in Greek language and although my system has multilanguage support,the words don't appear properly.Anyone knows what can i do about it?

    ....
    Set es = excel1.Sheets(1)
    Label1.Caption = es.Range("B1")
    ....



  2. #2
    Join Date
    Jun 2001
    Posts
    7

    Re: Excel and multilanguage

    Hi
    If your language codepage is UNICODE then
    you need use Microsoft Form 2 ActiveX for
    display.

    Good luck!



  3. #3
    Join Date
    Dec 2001
    Posts
    8

    Re: Excel and multilanguage

    Ummm....can u please explain me the procedure to do that???I am new at this


  4. #4
    Join Date
    Dec 2001
    Posts
    8

    Re: Excel and multilanguage

    Nevermind i got it

    Thank you!


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

Featured