Home All Groups Group Topic Archive Search About
Author
8 Jul 2009 4:02 AM
TMC
Hello All,

I was wondering if anyone has any familiarity with any of these 3rd party
unicode VB6 support products below:

http://www.iconico.com/UniToolbox2/

http://www.hexagora.com/en_dw_unictrl.asp

http://www.unisuite.com/product008.htm

If so, do you have any review comments or favor one over the other?

Thanks

Author
8 Jul 2009 4:33 AM
Randem
No, but you can use Unicode on most VB controls via a couple of API's and a
little work. Here is a little project I made up to show you how it is done.

Ref: http://www.randem.com/freesoftutil.html

go to "Display Unicode in Controls" at the bottom of the page.

--
Randem Systems
Your Installation Specialist
The Top Inno Setup Script Generator
http://www.randem.com/innoscript.html
Find Out What Your VB Program is Really Doing
http://www.randem.com/rstools.html



Show quoteHide quote
"TMC" <getmyema***@yahoo.com> wrote in message
news:uZ5e7D4$JHA.5068@TK2MSFTNGP03.phx.gbl...
> Hello All,
>
> I was wondering if anyone has any familiarity with any of these 3rd party
> unicode VB6 support products below:
>
> http://www.iconico.com/UniToolbox2/
>
> http://www.hexagora.com/en_dw_unictrl.asp
>
> http://www.unisuite.com/product008.htm
>
> If so, do you have any review comments or favor one over the other?
>
> Thanks
Are all your drivers up to date? click for free checkup

Author
8 Jul 2009 7:33 AM
Bill McCarthy
By most do you mean TextBox and Labels ?

Show quoteHide quote
"Randem" <newsgro***@randem.com> wrote in message
news:eFR2MV4$JHA.1340@TK2MSFTNGP05.phx.gbl...
> No, but you can use Unicode on most VB controls via a couple of API's and
> a little work. Here is a little project I made up to show you how it is
> done.
>
> Ref: http://www.randem.com/freesoftutil.html
>
> go to "Display Unicode in Controls" at the bottom of the page.
>
> --
> Randem Systems
> Your Installation Specialist
> The Top Inno Setup Script Generator
> http://www.randem.com/innoscript.html
> Find Out What Your VB Program is Really Doing
> http://www.randem.com/rstools.html
>
>
>
> "TMC" <getmyema***@yahoo.com> wrote in message
> news:uZ5e7D4$JHA.5068@TK2MSFTNGP03.phx.gbl...
>> Hello All,
>>
>> I was wondering if anyone has any familiarity with any of these 3rd party
>> unicode VB6 support products below:
>>
>> http://www.iconico.com/UniToolbox2/
>>
>> http://www.hexagora.com/en_dw_unictrl.asp
>>
>> http://www.unisuite.com/product008.htm
>>
>> If so, do you have any review comments or favor one over the other?
>>
>> Thanks
>
>
Author
8 Jul 2009 8:05 AM
Randem
No, but perhaps I should expand the term to

1 - Buttons
2 - Frames
3 - Text Boxes
4 - Option Boxes
5 - Check Boxes
6 - Combo Boxes
7 - Tab Strip
8 - List Boxes

Oh Yeah and the Label

Any questions????

--
Randem Systems
Your Installation Specialist
The Top Inno Setup Script Generator
http://www.randem.com/innoscript.html
Find Out What Your VB Program is Really Doing
http://www.randem.com/rstools.html



Show quoteHide quote
"Bill McCarthy" <TPASoft.com Are Identity Thieves> wrote in message
news:OVfWy75$JHA.4680@TK2MSFTNGP02.phx.gbl...
> By most do you mean TextBox and Labels ?
>
> "Randem" <newsgro***@randem.com> wrote in message
> news:eFR2MV4$JHA.1340@TK2MSFTNGP05.phx.gbl...
>> No, but you can use Unicode on most VB controls via a couple of API's and
>> a little work. Here is a little project I made up to show you how it is
>> done.
>>
>> Ref: http://www.randem.com/freesoftutil.html
>>
>> go to "Display Unicode in Controls" at the bottom of the page.
>>
>> --
>> Randem Systems
>> Your Installation Specialist
>> The Top Inno Setup Script Generator
>> http://www.randem.com/innoscript.html
>> Find Out What Your VB Program is Really Doing
>> http://www.randem.com/rstools.html
>>
>>
>>
>> "TMC" <getmyema***@yahoo.com> wrote in message
>> news:uZ5e7D4$JHA.5068@TK2MSFTNGP03.phx.gbl...
>>> Hello All,
>>>
>>> I was wondering if anyone has any familiarity with any of these 3rd
>>> party unicode VB6 support products below:
>>>
>>> http://www.iconico.com/UniToolbox2/
>>>
>>> http://www.hexagora.com/en_dw_unictrl.asp
>>>
>>> http://www.unisuite.com/product008.htm
>>>
>>> If so, do you have any review comments or favor one over the other?
>>>
>>> Thanks
>>
>>
>
Author
8 Jul 2009 9:18 AM
Bill McCarthy
Well your sample says it doesn't support textboxes nor labels.  So lets say
I have a label with the font set to arial unicode.  And I want to display in
that label Chrw(&H2460).  Can you show how to do that ?

BTW: in your code you have:

   For Each frm In Forms

        ' Attempt each form

        With frm
            .Font = "Arial Unicode MS"
            .Caption = sStr
            .Text = sStr
            DefWindowProc ctl.hWnd, WM_SETTEXT, 0, ByVal StrPtr(sStr)
            .Refresh
        End With

        ' Attempt each control on the form

        For Each ctl In Me.Controls


Clearly ctl is not in scope inside your With frm block.





Show quoteHide quote
"Randem" <newsgro***@randem.com> wrote in message
news:ePEzZL6$JHA.4984@TK2MSFTNGP05.phx.gbl...
> No, but perhaps I should expand the term to
>
> 1 - Buttons
> 2 - Frames
> 3 - Text Boxes
> 4 - Option Boxes
> 5 - Check Boxes
> 6 - Combo Boxes
> 7 - Tab Strip
> 8 - List Boxes
>
> Oh Yeah and the Label
>
> Any questions????
>
> --
> Randem Systems
> Your Installation Specialist
> The Top Inno Setup Script Generator
> http://www.randem.com/innoscript.html
> Find Out What Your VB Program is Really Doing
> http://www.randem.com/rstools.html
>
>
>
> "Bill McCarthy" <TPASoft.com Are Identity Thieves> wrote in message
> news:OVfWy75$JHA.4680@TK2MSFTNGP02.phx.gbl...
>> By most do you mean TextBox and Labels ?
>>
>> "Randem" <newsgro***@randem.com> wrote in message
>> news:eFR2MV4$JHA.1340@TK2MSFTNGP05.phx.gbl...
>>> No, but you can use Unicode on most VB controls via a couple of API's
>>> and a little work. Here is a little project I made up to show you how it
>>> is done.
>>>
>>> Ref: http://www.randem.com/freesoftutil.html
>>>
>>> go to "Display Unicode in Controls" at the bottom of the page.
>>>
>>> --
>>> Randem Systems
>>> Your Installation Specialist
>>> The Top Inno Setup Script Generator
>>> http://www.randem.com/innoscript.html
>>> Find Out What Your VB Program is Really Doing
>>> http://www.randem.com/rstools.html
>>>
>>>
>>>
>>> "TMC" <getmyema***@yahoo.com> wrote in message
>>> news:uZ5e7D4$JHA.5068@TK2MSFTNGP03.phx.gbl...
>>>> Hello All,
>>>>
>>>> I was wondering if anyone has any familiarity with any of these 3rd
>>>> party unicode VB6 support products below:
>>>>
>>>> http://www.iconico.com/UniToolbox2/
>>>>
>>>> http://www.hexagora.com/en_dw_unictrl.asp
>>>>
>>>> http://www.unisuite.com/product008.htm
>>>>
>>>> If so, do you have any review comments or favor one over the other?
>>>>
>>>> Thanks
>>>
>>>
>>
>
>
Author
8 Jul 2009 9:17 PM
Randem
It take a genius to find all the inclusions, it takes someone far less
applicable to find exceptions...

BTW: Does it work. You are so busy attempting to take it apart you don't
even see what it actually does. I never sated that it does not work for
Labels or Textboxes but clearly state an issue with a partitcular approach

  ' This works for all controls having an hWnd which respond to the
WM_SETTEXT message.
  ' A Label has no hWnd and the textbox and combobox do not respond to
WM_SETTEXT.

Taken that into affect, the other approach rectifies that issue and Labels
and Textboxes do work. But I guess the actual PROOF seem to elude you.

--
Randem Systems
Your Installation Specialist
The Top Inno Setup Script Generator
http://www.randem.com/innoscript.html
Find Out What Your VB Program is Really Doing
http://www.randem.com/rstools.html



Show quoteHide quote
"Bill McCarthy" <TPASoft.com Are Identity Thieves> wrote in message
news:uuvW206$JHA.3732@TK2MSFTNGP02.phx.gbl...
>
> Well your sample says it doesn't support textboxes nor labels.  So lets
> say I have a label with the font set to arial unicode.  And I want to
> display in that label Chrw(&H2460).  Can you show how to do that ?
>
> BTW: in your code you have:
>
>   For Each frm In Forms
>
>        ' Attempt each form
>
>        With frm
>            .Font = "Arial Unicode MS"
>            .Caption = sStr
>            .Text = sStr
>            DefWindowProc ctl.hWnd, WM_SETTEXT, 0, ByVal StrPtr(sStr)
>            .Refresh
>        End With
>
>        ' Attempt each control on the form
>
>        For Each ctl In Me.Controls
>
>
> Clearly ctl is not in scope inside your With frm block.
>
>
>
>
>
> "Randem" <newsgro***@randem.com> wrote in message
> news:ePEzZL6$JHA.4984@TK2MSFTNGP05.phx.gbl...
>> No, but perhaps I should expand the term to
>>
>> 1 - Buttons
>> 2 - Frames
>> 3 - Text Boxes
>> 4 - Option Boxes
>> 5 - Check Boxes
>> 6 - Combo Boxes
>> 7 - Tab Strip
>> 8 - List Boxes
>>
>> Oh Yeah and the Label
>>
>> Any questions????
>>
>> --
>> Randem Systems
>> Your Installation Specialist
>> The Top Inno Setup Script Generator
>> http://www.randem.com/innoscript.html
>> Find Out What Your VB Program is Really Doing
>> http://www.randem.com/rstools.html
>>
>>
>>
>> "Bill McCarthy" <TPASoft.com Are Identity Thieves> wrote in message
>> news:OVfWy75$JHA.4680@TK2MSFTNGP02.phx.gbl...
>>> By most do you mean TextBox and Labels ?
>>>
>>> "Randem" <newsgro***@randem.com> wrote in message
>>> news:eFR2MV4$JHA.1340@TK2MSFTNGP05.phx.gbl...
>>>> No, but you can use Unicode on most VB controls via a couple of API's
>>>> and a little work. Here is a little project I made up to show you how
>>>> it is done.
>>>>
>>>> Ref: http://www.randem.com/freesoftutil.html
>>>>
>>>> go to "Display Unicode in Controls" at the bottom of the page.
>>>>
>>>> --
>>>> Randem Systems
>>>> Your Installation Specialist
>>>> The Top Inno Setup Script Generator
>>>> http://www.randem.com/innoscript.html
>>>> Find Out What Your VB Program is Really Doing
>>>> http://www.randem.com/rstools.html
>>>>
>>>>
>>>>
>>>> "TMC" <getmyema***@yahoo.com> wrote in message
>>>> news:uZ5e7D4$JHA.5068@TK2MSFTNGP03.phx.gbl...
>>>>> Hello All,
>>>>>
>>>>> I was wondering if anyone has any familiarity with any of these 3rd
>>>>> party unicode VB6 support products below:
>>>>>
>>>>> http://www.iconico.com/UniToolbox2/
>>>>>
>>>>> http://www.hexagora.com/en_dw_unictrl.asp
>>>>>
>>>>> http://www.unisuite.com/product008.htm
>>>>>
>>>>> If so, do you have any review comments or favor one over the other?
>>>>>
>>>>> Thanks
>>>>
>>>>
>>>
>>
>>
>
Author
8 Jul 2009 10:00 PM
Karl E. Peterson
Randem wrote:
> It take a genius to find all the inclusions, it takes someone far less
> applicable to find exceptions...

Touche'  :-)

> Taken that into affect, the other approach rectifies that issue and Labels
> and Textboxes do work.

Unless I misunderstand, which is entirely possible, no, not so.  It seems to work
with more Forms 2.0 controls than intrinsic ones, but those are not redistributable.
In your example, it does work with the Command, Checkbox, Option, and Frame
controls.  But none of the other natives.  Actually, I'm impressed it's working with
those that it does work with, because (again, as I understood it) they're not
Unicode windows in the first place!
--
..NET: It's About Trust!
http://vfred.mvps.org
Author
8 Jul 2009 11:36 PM
Randem
Yes, that is correct. It was not meant to be a end all for the solution but
a possible way for it to work.

--
Randem Systems
Your Installation Specialist
The Top Inno Setup Script Generator
http://www.randem.com/innoscript.html
Find Out What Your VB Program is Really Doing
http://www.randem.com/rstools.html



Show quoteHide quote
"Karl E. Peterson" <k***@exmvps.org> wrote in message
news:ORtt0dBAKHA.3556@TK2MSFTNGP04.phx.gbl...
> Randem wrote:
>> It take a genius to find all the inclusions, it takes someone far less
>> applicable to find exceptions...
>
> Touche'  :-)
>
>> Taken that into affect, the other approach rectifies that issue and
>> Labels
>> and Textboxes do work.
>
> Unless I misunderstand, which is entirely possible, no, not so.  It seems
> to work with more Forms 2.0 controls than intrinsic ones, but those are
> not redistributable. In your example, it does work with the Command,
> Checkbox, Option, and Frame controls.  But none of the other natives.
> Actually, I'm impressed it's working with those that it does work with,
> because (again, as I understood it) they're not Unicode windows in the
> first place!
> --
> .NET: It's About Trust!
> http://vfred.mvps.org
>
Author
9 Jul 2009 4:51 AM
TMC
I noticed that it does not seem to work with Form captions or ssTab.  Are
there similar results with ListView, Common Dialog, MsgBox, etc.?


Show quoteHide quote
"Randem" <newsgro***@randem.com> wrote in message
news:e1wzdTCAKHA.4168@TK2MSFTNGP05.phx.gbl...
> Yes, that is correct. It was not meant to be a end all for the solution
> but a possible way for it to work.
>
> --
> Randem Systems
> Your Installation Specialist
> The Top Inno Setup Script Generator
> http://www.randem.com/innoscript.html
> Find Out What Your VB Program is Really Doing
> http://www.randem.com/rstools.html
>
>
>
> "Karl E. Peterson" <k***@exmvps.org> wrote in message
> news:ORtt0dBAKHA.3556@TK2MSFTNGP04.phx.gbl...
>> Randem wrote:
>>> It take a genius to find all the inclusions, it takes someone far less
>>> applicable to find exceptions...
>>
>> Touche'  :-)
>>
>>> Taken that into affect, the other approach rectifies that issue and
>>> Labels
>>> and Textboxes do work.
>>
>> Unless I misunderstand, which is entirely possible, no, not so.  It seems
>> to work with more Forms 2.0 controls than intrinsic ones, but those are
>> not redistributable. In your example, it does work with the Command,
>> Checkbox, Option, and Frame controls.  But none of the other natives.
>> Actually, I'm impressed it's working with those that it does work with,
>> because (again, as I understood it) they're not Unicode windows in the
>> first place!
>> --
>> .NET: It's About Trust!
>> http://vfred.mvps.org
>>
>
>
Author
9 Jul 2009 5:03 AM
Bill McCarthy
For the form caption try fixing his code as per my early post.  he's using
ctl.hwnd outside of the ctl loop scope where he should be using the form's
hwnd.



Show quoteHide quote
"TMC" <getmyema***@yahoo.com> wrote in message
news:%230qgxDFAKHA.528@TK2MSFTNGP03.phx.gbl...
>
> I noticed that it does not seem to work with Form captions or ssTab.  Are
> there similar results with ListView, Common Dialog, MsgBox, etc.?
>
>
> "Randem" <newsgro***@randem.com> wrote in message
> news:e1wzdTCAKHA.4168@TK2MSFTNGP05.phx.gbl...
>> Yes, that is correct. It was not meant to be a end all for the solution
>> but a possible way for it to work.
>>
>> --
>> Randem Systems
>> Your Installation Specialist
>> The Top Inno Setup Script Generator
>> http://www.randem.com/innoscript.html
>> Find Out What Your VB Program is Really Doing
>> http://www.randem.com/rstools.html
>>
>>
>>
>> "Karl E. Peterson" <k***@exmvps.org> wrote in message
>> news:ORtt0dBAKHA.3556@TK2MSFTNGP04.phx.gbl...
>>> Randem wrote:
>>>> It take a genius to find all the inclusions, it takes someone far less
>>>> applicable to find exceptions...
>>>
>>> Touche'  :-)
>>>
>>>> Taken that into affect, the other approach rectifies that issue and
>>>> Labels
>>>> and Textboxes do work.
>>>
>>> Unless I misunderstand, which is entirely possible, no, not so.  It
>>> seems to work with more Forms 2.0 controls than intrinsic ones, but
>>> those are not redistributable. In your example, it does work with the
>>> Command, Checkbox, Option, and Frame controls.  But none of the other
>>> natives. Actually, I'm impressed it's working with those that it does
>>> work with, because (again, as I understood it) they're not Unicode
>>> windows in the first place!
>>> --
>>> .NET: It's About Trust!
>>> http://vfred.mvps.org
>>>
>>
>>
>
Author
9 Jul 2009 5:21 AM
Randem
Then you don't know how the collections work...

--
Randem Systems
Your Installation Specialist
The Top Inno Setup Script Generator
http://www.randem.com/innoscript.html
Find Out What Your VB Program is Really Doing
http://www.randem.com/rstools.html



Show quoteHide quote
"Bill McCarthy" <TPASoft.com Are Identity Thieves> wrote in message
news:%234nxQQFAKHA.5040@TK2MSFTNGP04.phx.gbl...
>
> For the form caption try fixing his code as per my early post.  he's using
> ctl.hwnd outside of the ctl loop scope where he should be using the form's
> hwnd.
>
>
>
> "TMC" <getmyema***@yahoo.com> wrote in message
> news:%230qgxDFAKHA.528@TK2MSFTNGP03.phx.gbl...
>>
>> I noticed that it does not seem to work with Form captions or ssTab.  Are
>> there similar results with ListView, Common Dialog, MsgBox, etc.?
>>
>>
>> "Randem" <newsgro***@randem.com> wrote in message
>> news:e1wzdTCAKHA.4168@TK2MSFTNGP05.phx.gbl...
>>> Yes, that is correct. It was not meant to be a end all for the solution
>>> but a possible way for it to work.
>>>
>>> --
>>> Randem Systems
>>> Your Installation Specialist
>>> The Top Inno Setup Script Generator
>>> http://www.randem.com/innoscript.html
>>> Find Out What Your VB Program is Really Doing
>>> http://www.randem.com/rstools.html
>>>
>>>
>>>
>>> "Karl E. Peterson" <k***@exmvps.org> wrote in message
>>> news:ORtt0dBAKHA.3556@TK2MSFTNGP04.phx.gbl...
>>>> Randem wrote:
>>>>> It take a genius to find all the inclusions, it takes someone far less
>>>>> applicable to find exceptions...
>>>>
>>>> Touche'  :-)
>>>>
>>>>> Taken that into affect, the other approach rectifies that issue and
>>>>> Labels
>>>>> and Textboxes do work.
>>>>
>>>> Unless I misunderstand, which is entirely possible, no, not so.  It
>>>> seems to work with more Forms 2.0 controls than intrinsic ones, but
>>>> those are not redistributable. In your example, it does work with the
>>>> Command, Checkbox, Option, and Frame controls.  But none of the other
>>>> natives. Actually, I'm impressed it's working with those that it does
>>>> work with, because (again, as I understood it) they're not Unicode
>>>> windows in the first place!
>>>> --
>>>> .NET: It's About Trust!
>>>> http://vfred.mvps.org
>>>>
>>>
>>>
>>
>
Author
9 Jul 2009 5:47 AM
Bill McCarthy
Here's your code, in case you still don't get it.  I've add a >>>>>>>>>> at
the point of the bad code.  I guess you didn't see it because of your On
Error Resume Next. (or as you so quaintly put it "Then you don't know how
the collections work...
" <g>) HTH's.


    On Error Resume Next

    ' Attempt to show language on each control on each form

    For Each frm In Forms

        ' Attempt each form

        With frm
            .Font = "Arial Unicode MS"
            .Caption = sStr
            .Text = sStr
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
            DefWindowProc ctl.hWnd, WM_SETTEXT, 0, ByVal StrPtr(sStr)
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
            .Refresh
        End With

        ' Attempt each control on the form

        For Each ctl In Me.Controls
            With ctl
                .Tab = 0
                .Row = 0
                .Col = 0
                .Font = "Arial Unicode MS"
                .Font.Bold = False
                .Font.Size = 10
                .Caption = sStr
                .Text = sStr
                .AddItem sStr
                .Tabs(0).Caption = sStr
                DefWindowProc ctl.hWnd, WM_SETTEXT, 0, ByVal StrPtr(sStr)
                .Refresh
            End With
        Next

    Next









Show quoteHide quote
"Randem" <newsgro***@randem.com> wrote in message
news:%23HeNiUFAKHA.5040@TK2MSFTNGP04.phx.gbl...
> Then you don't know how the collections work...
>
> --
> Randem Systems
> Your Installation Specialist
> The Top Inno Setup Script Generator
> http://www.randem.com/innoscript.html
> Find Out What Your VB Program is Really Doing
> http://www.randem.com/rstools.html
>
>
>
> "Bill McCarthy" <TPASoft.com Are Identity Thieves> wrote in message
> news:%234nxQQFAKHA.5040@TK2MSFTNGP04.phx.gbl...
>>
>> For the form caption try fixing his code as per my early post.  he's
>> using ctl.hwnd outside of the ctl loop scope where he should be using the
>> form's hwnd.
>>
>>
>>
>> "TMC" <getmyema***@yahoo.com> wrote in message
>> news:%230qgxDFAKHA.528@TK2MSFTNGP03.phx.gbl...
>>>
>>> I noticed that it does not seem to work with Form captions or ssTab.
>>> Are there similar results with ListView, Common Dialog, MsgBox, etc.?
>>>
>>>
>>> "Randem" <newsgro***@randem.com> wrote in message
>>> news:e1wzdTCAKHA.4168@TK2MSFTNGP05.phx.gbl...
>>>> Yes, that is correct. It was not meant to be a end all for the solution
>>>> but a possible way for it to work.
>>>>
>>>> --
>>>> Randem Systems
>>>> Your Installation Specialist
>>>> The Top Inno Setup Script Generator
>>>> http://www.randem.com/innoscript.html
>>>> Find Out What Your VB Program is Really Doing
>>>> http://www.randem.com/rstools.html
>>>>
>>>>
>>>>
>>>> "Karl E. Peterson" <k***@exmvps.org> wrote in message
>>>> news:ORtt0dBAKHA.3556@TK2MSFTNGP04.phx.gbl...
>>>>> Randem wrote:
>>>>>> It take a genius to find all the inclusions, it takes someone far
>>>>>> less
>>>>>> applicable to find exceptions...
>>>>>
>>>>> Touche'  :-)
>>>>>
>>>>>> Taken that into affect, the other approach rectifies that issue and
>>>>>> Labels
>>>>>> and Textboxes do work.
>>>>>
>>>>> Unless I misunderstand, which is entirely possible, no, not so.  It
>>>>> seems to work with more Forms 2.0 controls than intrinsic ones, but
>>>>> those are not redistributable. In your example, it does work with the
>>>>> Command, Checkbox, Option, and Frame controls.  But none of the other
>>>>> natives. Actually, I'm impressed it's working with those that it does
>>>>> work with, because (again, as I understood it) they're not Unicode
>>>>> windows in the first place!
>>>>> --
>>>>> .NET: It's About Trust!
>>>>> http://vfred.mvps.org
>>>>>
>>>>
>>>>
>>>
>>
>
>
Author
9 Jul 2009 6:20 AM
Randem
And it took you five post to say that... Yes it does fix it.

--
Randem Systems
Your Installation Specialist
The Top Inno Setup Script Generator
http://www.randem.com/innoscript.html
Find Out What Your VB Program is Really Doing
http://www.randem.com/rstools.html



Show quoteHide quote
"Bill McCarthy" <TPASoft.com Are Identity Thieves> wrote in message
news:OARXrjFAKHA.4336@TK2MSFTNGP04.phx.gbl...
> Here's your code, in case you still don't get it.  I've add a >>>>>>>>>>
> at the point of the bad code.  I guess you didn't see it because of your
> On Error Resume Next. (or as you so quaintly put it "Then you don't know
> how the collections work...
> " <g>) HTH's.
>
>
>    On Error Resume Next
>
>    ' Attempt to show language on each control on each form
>
>    For Each frm In Forms
>
>        ' Attempt each form
>
>        With frm
>            .Font = "Arial Unicode MS"
>            .Caption = sStr
>            .Text = sStr
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>            DefWindowProc ctl.hWnd, WM_SETTEXT, 0, ByVal StrPtr(sStr)
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>            .Refresh
>        End With
>
>        ' Attempt each control on the form
>
>        For Each ctl In Me.Controls
>            With ctl
>                .Tab = 0
>                .Row = 0
>                .Col = 0
>                .Font = "Arial Unicode MS"
>                .Font.Bold = False
>                .Font.Size = 10
>                .Caption = sStr
>                .Text = sStr
>                .AddItem sStr
>                .Tabs(0).Caption = sStr
>                DefWindowProc ctl.hWnd, WM_SETTEXT, 0, ByVal StrPtr(sStr)
>                .Refresh
>            End With
>        Next
>
>    Next
>
>
>
>
>
>
>
>
>
> "Randem" <newsgro***@randem.com> wrote in message
> news:%23HeNiUFAKHA.5040@TK2MSFTNGP04.phx.gbl...
>> Then you don't know how the collections work...
>>
>> --
>> Randem Systems
>> Your Installation Specialist
>> The Top Inno Setup Script Generator
>> http://www.randem.com/innoscript.html
>> Find Out What Your VB Program is Really Doing
>> http://www.randem.com/rstools.html
>>
>>
>>
>> "Bill McCarthy" <TPASoft.com Are Identity Thieves> wrote in message
>> news:%234nxQQFAKHA.5040@TK2MSFTNGP04.phx.gbl...
>>>
>>> For the form caption try fixing his code as per my early post.  he's
>>> using ctl.hwnd outside of the ctl loop scope where he should be using
>>> the form's hwnd.
>>>
>>>
>>>
>>> "TMC" <getmyema***@yahoo.com> wrote in message
>>> news:%230qgxDFAKHA.528@TK2MSFTNGP03.phx.gbl...
>>>>
>>>> I noticed that it does not seem to work with Form captions or ssTab.
>>>> Are there similar results with ListView, Common Dialog, MsgBox, etc.?
>>>>
>>>>
>>>> "Randem" <newsgro***@randem.com> wrote in message
>>>> news:e1wzdTCAKHA.4168@TK2MSFTNGP05.phx.gbl...
>>>>> Yes, that is correct. It was not meant to be a end all for the
>>>>> solution but a possible way for it to work.
>>>>>
>>>>> --
>>>>> Randem Systems
>>>>> Your Installation Specialist
>>>>> The Top Inno Setup Script Generator
>>>>> http://www.randem.com/innoscript.html
>>>>> Find Out What Your VB Program is Really Doing
>>>>> http://www.randem.com/rstools.html
>>>>>
>>>>>
>>>>>
>>>>> "Karl E. Peterson" <k***@exmvps.org> wrote in message
>>>>> news:ORtt0dBAKHA.3556@TK2MSFTNGP04.phx.gbl...
>>>>>> Randem wrote:
>>>>>>> It take a genius to find all the inclusions, it takes someone far
>>>>>>> less
>>>>>>> applicable to find exceptions...
>>>>>>
>>>>>> Touche'  :-)
>>>>>>
>>>>>>> Taken that into affect, the other approach rectifies that issue and
>>>>>>> Labels
>>>>>>> and Textboxes do work.
>>>>>>
>>>>>> Unless I misunderstand, which is entirely possible, no, not so.  It
>>>>>> seems to work with more Forms 2.0 controls than intrinsic ones, but
>>>>>> those are not redistributable. In your example, it does work with the
>>>>>> Command, Checkbox, Option, and Frame controls.  But none of the other
>>>>>> natives. Actually, I'm impressed it's working with those that it does
>>>>>> work with, because (again, as I understood it) they're not Unicode
>>>>>> windows in the first place!
>>>>>> --
>>>>>> .NET: It's About Trust!
>>>>>> http://vfred.mvps.org
>>>>>>
>>>>>
>>>>>
>>>>
>>>
>>
>>
>
Author
9 Jul 2009 7:53 AM
Bill McCarthy
Actually you should go back and read what I said five posts ago; and you
should have looked at your own code before saying to people that they "don't
know how collections work".   But hey, at least you and I both know your
mistake ;)

Show quoteHide quote
"Randem" <newsgro***@randem.com> wrote in message
news:O8Soq1FAKHA.4608@TK2MSFTNGP02.phx.gbl...
> And it took you five post to say that... Yes it does fix it.
>
> --
> Randem Systems
> Your Installation Specialist
> The Top Inno Setup Script Generator
> http://www.randem.com/innoscript.html
> Find Out What Your VB Program is Really Doing
> http://www.randem.com/rstools.html
>
>
>
> "Bill McCarthy" <TPASoft.com Are Identity Thieves> wrote in message
> news:OARXrjFAKHA.4336@TK2MSFTNGP04.phx.gbl...
>> Here's your code, in case you still don't get it.  I've add a >>>>>>>>>>
>> at the point of the bad code.  I guess you didn't see it because of your
>> On Error Resume Next. (or as you so quaintly put it "Then you don't know
>> how the collections work...
>> " <g>) HTH's.
>>
>>
>>    On Error Resume Next
>>
>>    ' Attempt to show language on each control on each form
>>
>>    For Each frm In Forms
>>
>>        ' Attempt each form
>>
>>        With frm
>>            .Font = "Arial Unicode MS"
>>            .Caption = sStr
>>            .Text = sStr
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>            DefWindowProc ctl.hWnd, WM_SETTEXT, 0, ByVal StrPtr(sStr)
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>            .Refresh
>>        End With
>>
>>        ' Attempt each control on the form
>>
>>        For Each ctl In Me.Controls
>>            With ctl
>>                .Tab = 0
>>                .Row = 0
>>                .Col = 0
>>                .Font = "Arial Unicode MS"
>>                .Font.Bold = False
>>                .Font.Size = 10
>>                .Caption = sStr
>>                .Text = sStr
>>                .AddItem sStr
>>                .Tabs(0).Caption = sStr
>>                DefWindowProc ctl.hWnd, WM_SETTEXT, 0, ByVal StrPtr(sStr)
>>                .Refresh
>>            End With
>>        Next
>>
>>    Next
>>
>>
>>
>>
>>
>>
>>
>>
>>
>> "Randem" <newsgro***@randem.com> wrote in message
>> news:%23HeNiUFAKHA.5040@TK2MSFTNGP04.phx.gbl...
>>> Then you don't know how the collections work...
>>>
>>> --
>>> Randem Systems
>>> Your Installation Specialist
>>> The Top Inno Setup Script Generator
>>> http://www.randem.com/innoscript.html
>>> Find Out What Your VB Program is Really Doing
>>> http://www.randem.com/rstools.html
>>>
>>>
>>>
>>> "Bill McCarthy" <TPASoft.com Are Identity Thieves> wrote in message
>>> news:%234nxQQFAKHA.5040@TK2MSFTNGP04.phx.gbl...
>>>>
>>>> For the form caption try fixing his code as per my early post.  he's
>>>> using ctl.hwnd outside of the ctl loop scope where he should be using
>>>> the form's hwnd.
>>>>
>>>>
>>>>
>>>> "TMC" <getmyema***@yahoo.com> wrote in message
>>>> news:%230qgxDFAKHA.528@TK2MSFTNGP03.phx.gbl...
>>>>>
>>>>> I noticed that it does not seem to work with Form captions or ssTab.
>>>>> Are there similar results with ListView, Common Dialog, MsgBox, etc.?
>>>>>
>>>>>
>>>>> "Randem" <newsgro***@randem.com> wrote in message
>>>>> news:e1wzdTCAKHA.4168@TK2MSFTNGP05.phx.gbl...
>>>>>> Yes, that is correct. It was not meant to be a end all for the
>>>>>> solution but a possible way for it to work.
>>>>>>
>>>>>> --
>>>>>> Randem Systems
>>>>>> Your Installation Specialist
>>>>>> The Top Inno Setup Script Generator
>>>>>> http://www.randem.com/innoscript.html
>>>>>> Find Out What Your VB Program is Really Doing
>>>>>> http://www.randem.com/rstools.html
>>>>>>
>>>>>>
>>>>>>
>>>>>> "Karl E. Peterson" <k***@exmvps.org> wrote in message
>>>>>> news:ORtt0dBAKHA.3556@TK2MSFTNGP04.phx.gbl...
>>>>>>> Randem wrote:
>>>>>>>> It take a genius to find all the inclusions, it takes someone far
>>>>>>>> less
>>>>>>>> applicable to find exceptions...
>>>>>>>
>>>>>>> Touche'  :-)
>>>>>>>
>>>>>>>> Taken that into affect, the other approach rectifies that issue and
>>>>>>>> Labels
>>>>>>>> and Textboxes do work.
>>>>>>>
>>>>>>> Unless I misunderstand, which is entirely possible, no, not so.  It
>>>>>>> seems to work with more Forms 2.0 controls than intrinsic ones, but
>>>>>>> those are not redistributable. In your example, it does work with
>>>>>>> the Command, Checkbox, Option, and Frame controls.  But none of the
>>>>>>> other natives. Actually, I'm impressed it's working with those that
>>>>>>> it does work with, because (again, as I understood it) they're not
>>>>>>> Unicode windows in the first place!
>>>>>>> --
>>>>>>> .NET: It's About Trust!
>>>>>>> http://vfred.mvps.org
>>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>
>>>
>>>
>>
>
>
Author
9 Jul 2009 5:18 AM
Randem
Yes, the controls that I have checked that it works on at on the form. It
may work on others, especially if they support the SET_TEXT message call.

--
Randem Systems
Your Installation Specialist
The Top Inno Setup Script Generator
http://www.randem.com/innoscript.html
Find Out What Your VB Program is Really Doing
http://www.randem.com/rstools.html



Show quoteHide quote
"TMC" <getmyema***@yahoo.com> wrote in message
news:%230qgxDFAKHA.528@TK2MSFTNGP03.phx.gbl...
>
> I noticed that it does not seem to work with Form captions or ssTab.  Are
> there similar results with ListView, Common Dialog, MsgBox, etc.?
>
>
> "Randem" <newsgro***@randem.com> wrote in message
> news:e1wzdTCAKHA.4168@TK2MSFTNGP05.phx.gbl...
>> Yes, that is correct. It was not meant to be a end all for the solution
>> but a possible way for it to work.
>>
>> --
>> Randem Systems
>> Your Installation Specialist
>> The Top Inno Setup Script Generator
>> http://www.randem.com/innoscript.html
>> Find Out What Your VB Program is Really Doing
>> http://www.randem.com/rstools.html
>>
>>
>>
>> "Karl E. Peterson" <k***@exmvps.org> wrote in message
>> news:ORtt0dBAKHA.3556@TK2MSFTNGP04.phx.gbl...
>>> Randem wrote:
>>>> It take a genius to find all the inclusions, it takes someone far less
>>>> applicable to find exceptions...
>>>
>>> Touche'  :-)
>>>
>>>> Taken that into affect, the other approach rectifies that issue and
>>>> Labels
>>>> and Textboxes do work.
>>>
>>> Unless I misunderstand, which is entirely possible, no, not so.  It
>>> seems to work with more Forms 2.0 controls than intrinsic ones, but
>>> those are not redistributable. In your example, it does work with the
>>> Command, Checkbox, Option, and Frame controls.  But none of the other
>>> natives. Actually, I'm impressed it's working with those that it does
>>> work with, because (again, as I understood it) they're not Unicode
>>> windows in the first place!
>>> --
>>> .NET: It's About Trust!
>>> http://vfred.mvps.org
>>>
>>
>>
>
Author
9 Jul 2009 3:28 AM
Bill McCarthy
Hi Randem,

> Taken that into affect, the other approach rectifies that issue and Labels
> and Textboxes do work. But I guess the actual PROOF seem to elude you.

Yes it has, so perhaps you can actually show it here.  As I asked
previously, how for example can I display Chrw(&H2460) in a label ?





Show quoteHide quote
"Randem" <newsgro***@randem.com> wrote in message
news:%23pfI4FBAKHA.5040@TK2MSFTNGP04.phx.gbl...
> It take a genius to find all the inclusions, it takes someone far less
> applicable to find exceptions...
>
> BTW: Does it work. You are so busy attempting to take it apart you don't
> even see what it actually does. I never sated that it does not work for
> Labels or Textboxes but clearly state an issue with a partitcular approach
>
>  ' This works for all controls having an hWnd which respond to the
> WM_SETTEXT message.
>  ' A Label has no hWnd and the textbox and combobox do not respond to
> WM_SETTEXT.
>
> Taken that into affect, the other approach rectifies that issue and Labels
> and Textboxes do work. But I guess the actual PROOF seem to elude you.
>
> --
> Randem Systems
> Your Installation Specialist
> The Top Inno Setup Script Generator
> http://www.randem.com/innoscript.html
> Find Out What Your VB Program is Really Doing
> http://www.randem.com/rstools.html
>
>
>
> "Bill McCarthy" <TPASoft.com Are Identity Thieves> wrote in message
> news:uuvW206$JHA.3732@TK2MSFTNGP02.phx.gbl...
>>
>> Well your sample says it doesn't support textboxes nor labels.  So lets
>> say I have a label with the font set to arial unicode.  And I want to
>> display in that label Chrw(&H2460).  Can you show how to do that ?
>>
>> BTW: in your code you have:
>>
>>   For Each frm In Forms
>>
>>        ' Attempt each form
>>
>>        With frm
>>            .Font = "Arial Unicode MS"
>>            .Caption = sStr
>>            .Text = sStr
>>            DefWindowProc ctl.hWnd, WM_SETTEXT, 0, ByVal StrPtr(sStr)
>>            .Refresh
>>        End With
>>
>>        ' Attempt each control on the form
>>
>>        For Each ctl In Me.Controls
>>
>>
>> Clearly ctl is not in scope inside your With frm block.
>>
>>
>>
>>
>>
>> "Randem" <newsgro***@randem.com> wrote in message
>> news:ePEzZL6$JHA.4984@TK2MSFTNGP05.phx.gbl...
>>> No, but perhaps I should expand the term to
>>>
>>> 1 - Buttons
>>> 2 - Frames
>>> 3 - Text Boxes
>>> 4 - Option Boxes
>>> 5 - Check Boxes
>>> 6 - Combo Boxes
>>> 7 - Tab Strip
>>> 8 - List Boxes
>>>
>>> Oh Yeah and the Label
>>>
>>> Any questions????
>>>
>>> --
>>> Randem Systems
>>> Your Installation Specialist
>>> The Top Inno Setup Script Generator
>>> http://www.randem.com/innoscript.html
>>> Find Out What Your VB Program is Really Doing
>>> http://www.randem.com/rstools.html
>>>
>>>
>>>
>>> "Bill McCarthy" <TPASoft.com Are Identity Thieves> wrote in message
>>> news:OVfWy75$JHA.4680@TK2MSFTNGP02.phx.gbl...
>>>> By most do you mean TextBox and Labels ?
>>>>
>>>> "Randem" <newsgro***@randem.com> wrote in message
>>>> news:eFR2MV4$JHA.1340@TK2MSFTNGP05.phx.gbl...
>>>>> No, but you can use Unicode on most VB controls via a couple of API's
>>>>> and a little work. Here is a little project I made up to show you how
>>>>> it is done.
>>>>>
>>>>> Ref: http://www.randem.com/freesoftutil.html
>>>>>
>>>>> go to "Display Unicode in Controls" at the bottom of the page.
>>>>>
>>>>> --
>>>>> Randem Systems
>>>>> Your Installation Specialist
>>>>> The Top Inno Setup Script Generator
>>>>> http://www.randem.com/innoscript.html
>>>>> Find Out What Your VB Program is Really Doing
>>>>> http://www.randem.com/rstools.html
>>>>>
>>>>>
>>>>>
>>>>> "TMC" <getmyema***@yahoo.com> wrote in message
>>>>> news:uZ5e7D4$JHA.5068@TK2MSFTNGP03.phx.gbl...
>>>>>> Hello All,
>>>>>>
>>>>>> I was wondering if anyone has any familiarity with any of these 3rd
>>>>>> party unicode VB6 support products below:
>>>>>>
>>>>>> http://www.iconico.com/UniToolbox2/
>>>>>>
>>>>>> http://www.hexagora.com/en_dw_unictrl.asp
>>>>>>
>>>>>> http://www.unisuite.com/product008.htm
>>>>>>
>>>>>> If so, do you have any review comments or favor one over the other?
>>>>>>
>>>>>> Thanks
>>>>>
>>>>>
>>>>
>>>
>>>
>>
>
>
Author
9 Jul 2009 4:01 AM
Randem
You have everything you need to figure it out. You have the code... The
files EVERYTHING...

--
Randem Systems
Your Installation Specialist
The Top Inno Setup Script Generator
http://www.randem.com/innoscript.html
Find Out What Your VB Program is Really Doing
http://www.randem.com/rstools.html



Show quoteHide quote
"Bill McCarthy" <TPASoft.com Are Identity Thieves> wrote in message
news:uWkODbEAKHA.3732@TK2MSFTNGP02.phx.gbl...
> Hi Randem,
>
>> Taken that into affect, the other approach rectifies that issue and
>> Labels and Textboxes do work. But I guess the actual PROOF seem to elude
>> you.
>
> Yes it has, so perhaps you can actually show it here.  As I asked
> previously, how for example can I display Chrw(&H2460) in a label ?
>
>
>
>
>
> "Randem" <newsgro***@randem.com> wrote in message
> news:%23pfI4FBAKHA.5040@TK2MSFTNGP04.phx.gbl...
>> It take a genius to find all the inclusions, it takes someone far less
>> applicable to find exceptions...
>>
>> BTW: Does it work. You are so busy attempting to take it apart you don't
>> even see what it actually does. I never sated that it does not work for
>> Labels or Textboxes but clearly state an issue with a partitcular
>> approach
>>
>>  ' This works for all controls having an hWnd which respond to the
>> WM_SETTEXT message.
>>  ' A Label has no hWnd and the textbox and combobox do not respond to
>> WM_SETTEXT.
>>
>> Taken that into affect, the other approach rectifies that issue and
>> Labels and Textboxes do work. But I guess the actual PROOF seem to elude
>> you.
>>
>> --
>> Randem Systems
>> Your Installation Specialist
>> The Top Inno Setup Script Generator
>> http://www.randem.com/innoscript.html
>> Find Out What Your VB Program is Really Doing
>> http://www.randem.com/rstools.html
>>
>>
>>
>> "Bill McCarthy" <TPASoft.com Are Identity Thieves> wrote in message
>> news:uuvW206$JHA.3732@TK2MSFTNGP02.phx.gbl...
>>>
>>> Well your sample says it doesn't support textboxes nor labels.  So lets
>>> say I have a label with the font set to arial unicode.  And I want to
>>> display in that label Chrw(&H2460).  Can you show how to do that ?
>>>
>>> BTW: in your code you have:
>>>
>>>   For Each frm In Forms
>>>
>>>        ' Attempt each form
>>>
>>>        With frm
>>>            .Font = "Arial Unicode MS"
>>>            .Caption = sStr
>>>            .Text = sStr
>>>            DefWindowProc ctl.hWnd, WM_SETTEXT, 0, ByVal StrPtr(sStr)
>>>            .Refresh
>>>        End With
>>>
>>>        ' Attempt each control on the form
>>>
>>>        For Each ctl In Me.Controls
>>>
>>>
>>> Clearly ctl is not in scope inside your With frm block.
>>>
>>>
>>>
>>>
>>>
>>> "Randem" <newsgro***@randem.com> wrote in message
>>> news:ePEzZL6$JHA.4984@TK2MSFTNGP05.phx.gbl...
>>>> No, but perhaps I should expand the term to
>>>>
>>>> 1 - Buttons
>>>> 2 - Frames
>>>> 3 - Text Boxes
>>>> 4 - Option Boxes
>>>> 5 - Check Boxes
>>>> 6 - Combo Boxes
>>>> 7 - Tab Strip
>>>> 8 - List Boxes
>>>>
>>>> Oh Yeah and the Label
>>>>
>>>> Any questions????
>>>>
>>>> --
>>>> Randem Systems
>>>> Your Installation Specialist
>>>> The Top Inno Setup Script Generator
>>>> http://www.randem.com/innoscript.html
>>>> Find Out What Your VB Program is Really Doing
>>>> http://www.randem.com/rstools.html
>>>>
>>>>
>>>>
>>>> "Bill McCarthy" <TPASoft.com Are Identity Thieves> wrote in message
>>>> news:OVfWy75$JHA.4680@TK2MSFTNGP02.phx.gbl...
>>>>> By most do you mean TextBox and Labels ?
>>>>>
>>>>> "Randem" <newsgro***@randem.com> wrote in message
>>>>> news:eFR2MV4$JHA.1340@TK2MSFTNGP05.phx.gbl...
>>>>>> No, but you can use Unicode on most VB controls via a couple of API's
>>>>>> and a little work. Here is a little project I made up to show you how
>>>>>> it is done.
>>>>>>
>>>>>> Ref: http://www.randem.com/freesoftutil.html
>>>>>>
>>>>>> go to "Display Unicode in Controls" at the bottom of the page.
>>>>>>
>>>>>> --
>>>>>> Randem Systems
>>>>>> Your Installation Specialist
>>>>>> The Top Inno Setup Script Generator
>>>>>> http://www.randem.com/innoscript.html
>>>>>> Find Out What Your VB Program is Really Doing
>>>>>> http://www.randem.com/rstools.html
>>>>>>
>>>>>>
>>>>>>
>>>>>> "TMC" <getmyema***@yahoo.com> wrote in message
>>>>>> news:uZ5e7D4$JHA.5068@TK2MSFTNGP03.phx.gbl...
>>>>>>> Hello All,
>>>>>>>
>>>>>>> I was wondering if anyone has any familiarity with any of these 3rd
>>>>>>> party unicode VB6 support products below:
>>>>>>>
>>>>>>> http://www.iconico.com/UniToolbox2/
>>>>>>>
>>>>>>> http://www.hexagora.com/en_dw_unictrl.asp
>>>>>>>
>>>>>>> http://www.unisuite.com/product008.htm
>>>>>>>
>>>>>>> If so, do you have any review comments or favor one over the other?
>>>>>>>
>>>>>>> Thanks
>>>>>>
>>>>>>
>>>>>
>>>>
>>>>
>>>
>>
>>
>
Author
9 Jul 2009 5:00 AM
Bill McCarthy
Nope, not working here.  So perhaps you can show how ?  I want to display
Chrw(&H2460) in a label.


Show quoteHide quote
"Randem" <newsgro***@randem.com> wrote in message
news:ebUt6nEAKHA.4376@TK2MSFTNGP04.phx.gbl...
> You have everything you need to figure it out. You have the code... The
> files EVERYTHING...
>
> --
> Randem Systems
> Your Installation Specialist
> The Top Inno Setup Script Generator
> http://www.randem.com/innoscript.html
> Find Out What Your VB Program is Really Doing
> http://www.randem.com/rstools.html
>
>
>
> "Bill McCarthy" <TPASoft.com Are Identity Thieves> wrote in message
> news:uWkODbEAKHA.3732@TK2MSFTNGP02.phx.gbl...
>> Hi Randem,
>>
>>> Taken that into affect, the other approach rectifies that issue and
>>> Labels and Textboxes do work. But I guess the actual PROOF seem to elude
>>> you.
>>
>> Yes it has, so perhaps you can actually show it here.  As I asked
>> previously, how for example can I display Chrw(&H2460) in a label ?
>>
>>
>>
>>
>>
>> "Randem" <newsgro***@randem.com> wrote in message
>> news:%23pfI4FBAKHA.5040@TK2MSFTNGP04.phx.gbl...
>>> It take a genius to find all the inclusions, it takes someone far less
>>> applicable to find exceptions...
>>>
>>> BTW: Does it work. You are so busy attempting to take it apart you don't
>>> even see what it actually does. I never sated that it does not work for
>>> Labels or Textboxes but clearly state an issue with a partitcular
>>> approach
>>>
>>>  ' This works for all controls having an hWnd which respond to the
>>> WM_SETTEXT message.
>>>  ' A Label has no hWnd and the textbox and combobox do not respond to
>>> WM_SETTEXT.
>>>
>>> Taken that into affect, the other approach rectifies that issue and
>>> Labels and Textboxes do work. But I guess the actual PROOF seem to elude
>>> you.
>>>
>>> --
>>> Randem Systems
>>> Your Installation Specialist
>>> The Top Inno Setup Script Generator
>>> http://www.randem.com/innoscript.html
>>> Find Out What Your VB Program is Really Doing
>>> http://www.randem.com/rstools.html
>>>
>>>
>>>
>>> "Bill McCarthy" <TPASoft.com Are Identity Thieves> wrote in message
>>> news:uuvW206$JHA.3732@TK2MSFTNGP02.phx.gbl...
>>>>
>>>> Well your sample says it doesn't support textboxes nor labels.  So lets
>>>> say I have a label with the font set to arial unicode.  And I want to
>>>> display in that label Chrw(&H2460).  Can you show how to do that ?
>>>>
>>>> BTW: in your code you have:
>>>>
>>>>   For Each frm In Forms
>>>>
>>>>        ' Attempt each form
>>>>
>>>>        With frm
>>>>            .Font = "Arial Unicode MS"
>>>>            .Caption = sStr
>>>>            .Text = sStr
>>>>            DefWindowProc ctl.hWnd, WM_SETTEXT, 0, ByVal StrPtr(sStr)
>>>>            .Refresh
>>>>        End With
>>>>
>>>>        ' Attempt each control on the form
>>>>
>>>>        For Each ctl In Me.Controls
>>>>
>>>>
>>>> Clearly ctl is not in scope inside your With frm block.
>>>>
>>>>
>>>>
>>>>
>>>>
>>>> "Randem" <newsgro***@randem.com> wrote in message
>>>> news:ePEzZL6$JHA.4984@TK2MSFTNGP05.phx.gbl...
>>>>> No, but perhaps I should expand the term to
>>>>>
>>>>> 1 - Buttons
>>>>> 2 - Frames
>>>>> 3 - Text Boxes
>>>>> 4 - Option Boxes
>>>>> 5 - Check Boxes
>>>>> 6 - Combo Boxes
>>>>> 7 - Tab Strip
>>>>> 8 - List Boxes
>>>>>
>>>>> Oh Yeah and the Label
>>>>>
>>>>> Any questions????
>>>>>
>>>>> --
>>>>> Randem Systems
>>>>> Your Installation Specialist
>>>>> The Top Inno Setup Script Generator
>>>>> http://www.randem.com/innoscript.html
>>>>> Find Out What Your VB Program is Really Doing
>>>>> http://www.randem.com/rstools.html
>>>>>
>>>>>
>>>>>
>>>>> "Bill McCarthy" <TPASoft.com Are Identity Thieves> wrote in message
>>>>> news:OVfWy75$JHA.4680@TK2MSFTNGP02.phx.gbl...
>>>>>> By most do you mean TextBox and Labels ?
>>>>>>
>>>>>> "Randem" <newsgro***@randem.com> wrote in message
>>>>>> news:eFR2MV4$JHA.1340@TK2MSFTNGP05.phx.gbl...
>>>>>>> No, but you can use Unicode on most VB controls via a couple of
>>>>>>> API's and a little work. Here is a little project I made up to show
>>>>>>> you how it is done.
>>>>>>>
>>>>>>> Ref: http://www.randem.com/freesoftutil.html
>>>>>>>
>>>>>>> go to "Display Unicode in Controls" at the bottom of the page.
>>>>>>>
>>>>>>> --
>>>>>>> Randem Systems
>>>>>>> Your Installation Specialist
>>>>>>> The Top Inno Setup Script Generator
>>>>>>> http://www.randem.com/innoscript.html
>>>>>>> Find Out What Your VB Program is Really Doing
>>>>>>> http://www.randem.com/rstools.html
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> "TMC" <getmyema***@yahoo.com> wrote in message
>>>>>>> news:uZ5e7D4$JHA.5068@TK2MSFTNGP03.phx.gbl...
>>>>>>>> Hello All,
>>>>>>>>
>>>>>>>> I was wondering if anyone has any familiarity with any of these 3rd
>>>>>>>> party unicode VB6 support products below:
>>>>>>>>
>>>>>>>> http://www.iconico.com/UniToolbox2/
>>>>>>>>
>>>>>>>> http://www.hexagora.com/en_dw_unictrl.asp
>>>>>>>>
>>>>>>>> http://www.unisuite.com/product008.htm
>>>>>>>>
>>>>>>>> If so, do you have any review comments or favor one over the other?
>>>>>>>>
>>>>>>>> Thanks
>>>>>>>
>>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>
>>>
>>>
>>
>
>
Author
9 Jul 2009 5:22 AM
Randem
Why you are not going to use it...

--
Randem Systems
Your Installation Specialist
The Top Inno Setup Script Generator
http://www.randem.com/innoscript.html
Find Out What Your VB Program is Really Doing
http://www.randem.com/rstools.html



Show quoteHide quote
"Bill McCarthy" <TPASoft.com Are Identity Thieves> wrote in message
news:%23a3KQQFAKHA.5040@TK2MSFTNGP04.phx.gbl...
> Nope, not working here.  So perhaps you can show how ?  I want to display
> Chrw(&H2460) in a label.
>
>
> "Randem" <newsgro***@randem.com> wrote in message
> news:ebUt6nEAKHA.4376@TK2MSFTNGP04.phx.gbl...
>> You have everything you need to figure it out. You have the code... The
>> files EVERYTHING...
>>
>> --
>> Randem Systems
>> Your Installation Specialist
>> The Top Inno Setup Script Generator
>> http://www.randem.com/innoscript.html
>> Find Out What Your VB Program is Really Doing
>> http://www.randem.com/rstools.html
>>
>>
>>
>> "Bill McCarthy" <TPASoft.com Are Identity Thieves> wrote in message
>> news:uWkODbEAKHA.3732@TK2MSFTNGP02.phx.gbl...
>>> Hi Randem,
>>>
>>>> Taken that into affect, the other approach rectifies that issue and
>>>> Labels and Textboxes do work. But I guess the actual PROOF seem to
>>>> elude you.
>>>
>>> Yes it has, so perhaps you can actually show it here.  As I asked
>>> previously, how for example can I display Chrw(&H2460) in a label ?
>>>
>>>
>>>
>>>
>>>
>>> "Randem" <newsgro***@randem.com> wrote in message
>>> news:%23pfI4FBAKHA.5040@TK2MSFTNGP04.phx.gbl...
>>>> It take a genius to find all the inclusions, it takes someone far less
>>>> applicable to find exceptions...
>>>>
>>>> BTW: Does it work. You are so busy attempting to take it apart you
>>>> don't even see what it actually does. I never sated that it does not
>>>> work for Labels or Textboxes but clearly state an issue with a
>>>> partitcular approach
>>>>
>>>>  ' This works for all controls having an hWnd which respond to the
>>>> WM_SETTEXT message.
>>>>  ' A Label has no hWnd and the textbox and combobox do not respond to
>>>> WM_SETTEXT.
>>>>
>>>> Taken that into affect, the other approach rectifies that issue and
>>>> Labels and Textboxes do work. But I guess the actual PROOF seem to
>>>> elude you.
>>>>
>>>> --
>>>> Randem Systems
>>>> Your Installation Specialist
>>>> The Top Inno Setup Script Generator
>>>> http://www.randem.com/innoscript.html
>>>> Find Out What Your VB Program is Really Doing
>>>> http://www.randem.com/rstools.html
>>>>
>>>>
>>>>
>>>> "Bill McCarthy" <TPASoft.com Are Identity Thieves> wrote in message
>>>> news:uuvW206$JHA.3732@TK2MSFTNGP02.phx.gbl...
>>>>>
>>>>> Well your sample says it doesn't support textboxes nor labels.  So
>>>>> lets say I have a label with the font set to arial unicode.  And I
>>>>> want to display in that label Chrw(&H2460).  Can you show how to do
>>>>> that ?
>>>>>
>>>>> BTW: in your code you have:
>>>>>
>>>>>   For Each frm In Forms
>>>>>
>>>>>        ' Attempt each form
>>>>>
>>>>>        With frm
>>>>>            .Font = "Arial Unicode MS"
>>>>>            .Caption = sStr
>>>>>            .Text = sStr
>>>>>            DefWindowProc ctl.hWnd, WM_SETTEXT, 0, ByVal StrPtr(sStr)
>>>>>            .Refresh
>>>>>        End With
>>>>>
>>>>>        ' Attempt each control on the form
>>>>>
>>>>>        For Each ctl In Me.Controls
>>>>>
>>>>>
>>>>> Clearly ctl is not in scope inside your With frm block.
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> "Randem" <newsgro***@randem.com> wrote in message
>>>>> news:ePEzZL6$JHA.4984@TK2MSFTNGP05.phx.gbl...
>>>>>> No, but perhaps I should expand the term to
>>>>>>
>>>>>> 1 - Buttons
>>>>>> 2 - Frames
>>>>>> 3 - Text Boxes
>>>>>> 4 - Option Boxes
>>>>>> 5 - Check Boxes
>>>>>> 6 - Combo Boxes
>>>>>> 7 - Tab Strip
>>>>>> 8 - List Boxes
>>>>>>
>>>>>> Oh Yeah and the Label
>>>>>>
>>>>>> Any questions????
>>>>>>
>>>>>> --
>>>>>> Randem Systems
>>>>>> Your Installation Specialist
>>>>>> The Top Inno Setup Script Generator
>>>>>> http://www.randem.com/innoscript.html
>>>>>> Find Out What Your VB Program is Really Doing
>>>>>> http://www.randem.com/rstools.html
>>>>>>
>>>>>>
>>>>>>
>>>>>> "Bill McCarthy" <TPASoft.com Are Identity Thieves> wrote in message
>>>>>> news:OVfWy75$JHA.4680@TK2MSFTNGP02.phx.gbl...
>>>>>>> By most do you mean TextBox and Labels ?
>>>>>>>
>>>>>>> "Randem" <newsgro***@randem.com> wrote in message
>>>>>>> news:eFR2MV4$JHA.1340@TK2MSFTNGP05.phx.gbl...
>>>>>>>> No, but you can use Unicode on most VB controls via a couple of
>>>>>>>> API's and a little work. Here is a little project I made up to show
>>>>>>>> you how it is done.
>>>>>>>>
>>>>>>>> Ref: http://www.randem.com/freesoftutil.html
>>>>>>>>
>>>>>>>> go to "Display Unicode in Controls" at the bottom of the page.
>>>>>>>>
>>>>>>>> --
>>>>>>>> Randem Systems
>>>>>>>> Your Installation Specialist
>>>>>>>> The Top Inno Setup Script Generator
>>>>>>>> http://www.randem.com/innoscript.html
>>>>>>>> Find Out What Your VB Program is Really Doing
>>>>>>>> http://www.randem.com/rstools.html
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> "TMC" <getmyema***@yahoo.com> wrote in message
>>>>>>>> news:uZ5e7D4$JHA.5068@TK2MSFTNGP03.phx.gbl...
>>>>>>>>> Hello All,
>>>>>>>>>
>>>>>>>>> I was wondering if anyone has any familiarity with any of these
>>>>>>>>> 3rd party unicode VB6 support products below:
>>>>>>>>>
>>>>>>>>> http://www.iconico.com/UniToolbox2/
>>>>>>>>>
>>>>>>>>> http://www.hexagora.com/en_dw_unictrl.asp
>>>>>>>>>
>>>>>>>>> http://www.unisuite.com/product008.htm
>>>>>>>>>
>>>>>>>>> If so, do you have any review comments or favor one over the
>>>>>>>>> other?
>>>>>>>>>
>>>>>>>>> Thanks
>>>>>>>>
>>>>>>>>
>>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>
>>>>
>>>
>>
>>
>
Author
9 Jul 2009 5:48 AM
Bill McCarthy
Again I asked how to display Chrw(&H2460) in a label.  You seem to be
avoiding that


Show quoteHide quote
"Randem" <newsgro***@randem.com> wrote in message
news:OK110UFAKHA.1208@TK2MSFTNGP03.phx.gbl...
> Why you are not going to use it...
>
> --
> Randem Systems
> Your Installation Specialist
> The Top Inno Setup Script Generator
> http://www.randem.com/innoscript.html
> Find Out What Your VB Program is Really Doing
> http://www.randem.com/rstools.html
>
>
>
> "Bill McCarthy" <TPASoft.com Are Identity Thieves> wrote in message
> news:%23a3KQQFAKHA.5040@TK2MSFTNGP04.phx.gbl...
>> Nope, not working here.  So perhaps you can show how ?  I want to display
>> Chrw(&H2460) in a label.
>>
>>
>> "Randem" <newsgro***@randem.com> wrote in message
>> news:ebUt6nEAKHA.4376@TK2MSFTNGP04.phx.gbl...
>>> You have everything you need to figure it out. You have the code... The
>>> files EVERYTHING...
>>>
>>> --
>>> Randem Systems
>>> Your Installation Specialist
>>> The Top Inno Setup Script Generator
>>> http://www.randem.com/innoscript.html
>>> Find Out What Your VB Program is Really Doing
>>> http://www.randem.com/rstools.html
>>>
>>>
>>>
>>> "Bill McCarthy" <TPASoft.com Are Identity Thieves> wrote in message
>>> news:uWkODbEAKHA.3732@TK2MSFTNGP02.phx.gbl...
>>>> Hi Randem,
>>>>
>>>>> Taken that into affect, the other approach rectifies that issue and
>>>>> Labels and Textboxes do work. But I guess the actual PROOF seem to
>>>>> elude you.
>>>>
>>>> Yes it has, so perhaps you can actually show it here.  As I asked
>>>> previously, how for example can I display Chrw(&H2460) in a label ?
>>>>
>>>>
>>>>
>>>>
>>>>
>>>> "Randem" <newsgro***@randem.com> wrote in message
>>>> news:%23pfI4FBAKHA.5040@TK2MSFTNGP04.phx.gbl...
>>>>> It take a genius to find all the inclusions, it takes someone far less
>>>>> applicable to find exceptions...
>>>>>
>>>>> BTW: Does it work. You are so busy attempting to take it apart you
>>>>> don't even see what it actually does. I never sated that it does not
>>>>> work for Labels or Textboxes but clearly state an issue with a
>>>>> partitcular approach
>>>>>
>>>>>  ' This works for all controls having an hWnd which respond to the
>>>>> WM_SETTEXT message.
>>>>>  ' A Label has no hWnd and the textbox and combobox do not respond to
>>>>> WM_SETTEXT.
>>>>>
>>>>> Taken that into affect, the other approach rectifies that issue and
>>>>> Labels and Textboxes do work. But I guess the actual PROOF seem to
>>>>> elude you.
>>>>>
>>>>> --
>>>>> Randem Systems
>>>>> Your Installation Specialist
>>>>> The Top Inno Setup Script Generator
>>>>> http://www.randem.com/innoscript.html
>>>>> Find Out What Your VB Program is Really Doing
>>>>> http://www.randem.com/rstools.html
>>>>>
>>>>>
>>>>>
>>>>> "Bill McCarthy" <TPASoft.com Are Identity Thieves> wrote in message
>>>>> news:uuvW206$JHA.3732@TK2MSFTNGP02.phx.gbl...
>>>>>>
>>>>>> Well your sample says it doesn't support textboxes nor labels.  So
>>>>>> lets say I have a label with the font set to arial unicode.  And I
>>>>>> want to display in that label Chrw(&H2460).  Can you show how to do
>>>>>> that ?
>>>>>>
>>>>>> BTW: in your code you have:
>>>>>>
>>>>>>   For Each frm In Forms
>>>>>>
>>>>>>        ' Attempt each form
>>>>>>
>>>>>>        With frm
>>>>>>            .Font = "Arial Unicode MS"
>>>>>>            .Caption = sStr
>>>>>>            .Text = sStr
>>>>>>            DefWindowProc ctl.hWnd, WM_SETTEXT, 0, ByVal StrPtr(sStr)
>>>>>>            .Refresh
>>>>>>        End With
>>>>>>
>>>>>>        ' Attempt each control on the form
>>>>>>
>>>>>>        For Each ctl In Me.Controls
>>>>>>
>>>>>>
>>>>>> Clearly ctl is not in scope inside your With frm block.
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>> "Randem" <newsgro***@randem.com> wrote in message
>>>>>> news:ePEzZL6$JHA.4984@TK2MSFTNGP05.phx.gbl...
>>>>>>> No, but perhaps I should expand the term to
>>>>>>>
>>>>>>> 1 - Buttons
>>>>>>> 2 - Frames
>>>>>>> 3 - Text Boxes
>>>>>>> 4 - Option Boxes
>>>>>>> 5 - Check Boxes
>>>>>>> 6 - Combo Boxes
>>>>>>> 7 - Tab Strip
>>>>>>> 8 - List Boxes
>>>>>>>
>>>>>>> Oh Yeah and the Label
>>>>>>>
>>>>>>> Any questions????
>>>>>>>
>>>>>>> --
>>>>>>> Randem Systems
>>>>>>> Your Installation Specialist
>>>>>>> The Top Inno Setup Script Generator
>>>>>>> http://www.randem.com/innoscript.html
>>>>>>> Find Out What Your VB Program is Really Doing
>>>>>>> http://www.randem.com/rstools.html
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> "Bill McCarthy" <TPASoft.com Are Identity Thieves> wrote in message
>>>>>>> news:OVfWy75$JHA.4680@TK2MSFTNGP02.phx.gbl...
>>>>>>>> By most do you mean TextBox and Labels ?
>>>>>>>>
>>>>>>>> "Randem" <newsgro***@randem.com> wrote in message
>>>>>>>> news:eFR2MV4$JHA.1340@TK2MSFTNGP05.phx.gbl...
>>>>>>>>> No, but you can use Unicode on most VB controls via a couple of
>>>>>>>>> API's and a little work. Here is a little project I made up to
>>>>>>>>> show you how it is done.
>>>>>>>>>
>>>>>>>>> Ref: http://www.randem.com/freesoftutil.html
>>>>>>>>>
>>>>>>>>> go to "Display Unicode in Controls" at the bottom of the page.
>>>>>>>>>
>>>>>>>>> --
>>>>>>>>> Randem Systems
>>>>>>>>> Your Installation Specialist
>>>>>>>>> The Top Inno Setup Script Generator
>>>>>>>>> http://www.randem.com/innoscript.html
>>>>>>>>> Find Out What Your VB Program is Really Doing
>>>>>>>>> http://www.randem.com/rstools.html
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> "TMC" <getmyema***@yahoo.com> wrote in message
>>>>>>>>> news:uZ5e7D4$JHA.5068@TK2MSFTNGP03.phx.gbl...
>>>>>>>>>> Hello All,
>>>>>>>>>>
>>>>>>>>>> I was wondering if anyone has any familiarity with any of these
>>>>>>>>>> 3rd party unicode VB6 support products below:
>>>>>>>>>>
>>>>>>>>>> http://www.iconico.com/UniToolbox2/
>>>>>>>>>>
>>>>>>>>>> http://www.hexagora.com/en_dw_unictrl.asp
>>>>>>>>>>
>>>>>>>>>> http://www.unisuite.com/product008.htm
>>>>>>>>>>
>>>>>>>>>> If so, do you have any review comments or favor one over the
>>>>>>>>>> other?
>>>>>>>>>>
>>>>>>>>>> Thanks
>>>>>>>>>
>>>>>>>>>
>>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>
>>>
>>>
>>
>
>
Author
9 Jul 2009 1:28 AM
TMC
This seems to have turned into a discussion about a possible approach which
works for SOME controls.

Again, has anyone used or reviewed the tools that I mentioned.

If not, does anyone have approaches that EASILY cover the controls / use
cases which these mentioned libraries handle?  Or perhaps source code
samples which cover the controls and use cases mentioned with the libraries
mentioned?

Thanks


Show quoteHide quote
"TMC" <getmyema***@yahoo.com> wrote in message
news:uZ5e7D4$JHA.5068@TK2MSFTNGP03.phx.gbl...
> Hello All,
>
> I was wondering if anyone has any familiarity with any of these 3rd party
> unicode VB6 support products below:
>
> http://www.iconico.com/UniToolbox2/
>
> http://www.hexagora.com/en_dw_unictrl.asp
>
> http://www.unisuite.com/product008.htm
>
> If so, do you have any review comments or favor one over the other?
>
> Thanks
Author
9 Jul 2009 3:32 AM
Bill McCarthy
Hi TMC,

I don't believe there is an easy approach for VB6 other than a complete set
of 3rd party controls. For VB versions later than VB6, then unicode is
supported with the intrinsic controls.  So that's one low cost option that
provides you with great flexibility: you can write the controls in VB.NET,
and use then in VB6.

Show quoteHide quote
"TMC" <getmyema***@yahoo.com> wrote in message
news:%23ibyfSDAKHA.1488@TK2MSFTNGP03.phx.gbl...
> This seems to have turned into a discussion about a possible approach
> which works for SOME controls.
>
> Again, has anyone used or reviewed the tools that I mentioned.
>
> If not, does anyone have approaches that EASILY cover the controls / use
> cases which these mentioned libraries handle?  Or perhaps source code
> samples which cover the controls and use cases mentioned with the
> libraries mentioned?
>
> Thanks
>
>
> "TMC" <getmyema***@yahoo.com> wrote in message
> news:uZ5e7D4$JHA.5068@TK2MSFTNGP03.phx.gbl...
>> Hello All,
>>
>> I was wondering if anyone has any familiarity with any of these 3rd party
>> unicode VB6 support products below:
>>
>> http://www.iconico.com/UniToolbox2/
>>
>> http://www.hexagora.com/en_dw_unictrl.asp
>>
>> http://www.unisuite.com/product008.htm
>>
>> If so, do you have any review comments or favor one over the other?
>>
>> Thanks
>
Author
9 Jul 2009 4:54 AM
TMC
Thanks Bill.  I figured as much.

The real issue then becomes ROI regarding writing the controls in .Net vs.
just buying controls from someone else ;-)

I just wondered if anyone else had used any of the 3 3rd party tools
mentioned, if there were others that could be recommended, etc.




Show quoteHide quote
"Bill McCarthy" <TPASoft.com Are Identity Thieves> wrote in message
news:%238TyDbEAKHA.3732@TK2MSFTNGP02.phx.gbl...
> Hi TMC,
>
> I don't believe there is an easy approach for VB6 other than a complete
> set of 3rd party controls. For VB versions later than VB6, then unicode is
> supported with the intrinsic controls.  So that's one low cost option that
> provides you with great flexibility: you can write the controls in VB.NET,
> and use then in VB6.
>
> "TMC" <getmyema***@yahoo.com> wrote in message
> news:%23ibyfSDAKHA.1488@TK2MSFTNGP03.phx.gbl...
>> This seems to have turned into a discussion about a possible approach
>> which works for SOME controls.
>>
>> Again, has anyone used or reviewed the tools that I mentioned.
>>
>> If not, does anyone have approaches that EASILY cover the controls / use
>> cases which these mentioned libraries handle?  Or perhaps source code
>> samples which cover the controls and use cases mentioned with the
>> libraries mentioned?
>>
>> Thanks
>>
>>
>> "TMC" <getmyema***@yahoo.com> wrote in message
>> news:uZ5e7D4$JHA.5068@TK2MSFTNGP03.phx.gbl...
>>> Hello All,
>>>
>>> I was wondering if anyone has any familiarity with any of these 3rd
>>> party unicode VB6 support products below:
>>>
>>> http://www.iconico.com/UniToolbox2/
>>>
>>> http://www.hexagora.com/en_dw_unictrl.asp
>>>
>>> http://www.unisuite.com/product008.htm
>>>
>>> If so, do you have any review comments or favor one over the other?
>>>
>>> Thanks
>>
>
Author
9 Jul 2009 5:13 AM
Bill McCarthy
Hi TMC,

The ROI really depends on how complex you want your controls to be. Like
using a .NET control, you can inherit from base controls and add
functionality easily.  If you decide to extend a 3rd party control in VB6,
you have to encapsulate it in a user control (or do cut and paste with the
relevant code blocks each time you use it). So there's that flexibility.
If I was taking the .Net from VB6 approach, I'd basically write the Ui in
..NET. Depending how much you have already, it's be either UserControls that
constitute much of the form, or entire forms, or the entire UI (.NEt app
that calls on VB6 dll instead of other way around).

That said, if your needs are simple, an off the shelf 3rd party control set
might be quickest to get up and running; then again there is that whole
"looking for the right set" that your currently doing.  I'd seriously want
the source with the controls.  I've seen too many of those companies
disappear over the last five years or so, or just drop support for a set of
controls.




Show quoteHide quote
"TMC" <getmyema***@yahoo.com> wrote in message
news:e2OWXFFAKHA.3696@TK2MSFTNGP05.phx.gbl...
> Thanks Bill.  I figured as much.
>
> The real issue then becomes ROI regarding writing the controls in .Net vs.
> just buying controls from someone else ;-)
>
> I just wondered if anyone else had used any of the 3 3rd party tools
> mentioned, if there were others that could be recommended, etc.
>
>
>
>
> "Bill McCarthy" <TPASoft.com Are Identity Thieves> wrote in message
> news:%238TyDbEAKHA.3732@TK2MSFTNGP02.phx.gbl...
>> Hi TMC,
>>
>> I don't believe there is an easy approach for VB6 other than a complete
>> set of 3rd party controls. For VB versions later than VB6, then unicode
>> is supported with the intrinsic controls.  So that's one low cost option
>> that provides you with great flexibility: you can write the controls in
>> VB.NET, and use then in VB6.
>>
>> "TMC" <getmyema***@yahoo.com> wrote in message
>> news:%23ibyfSDAKHA.1488@TK2MSFTNGP03.phx.gbl...
>>> This seems to have turned into a discussion about a possible approach
>>> which works for SOME controls.
>>>
>>> Again, has anyone used or reviewed the tools that I mentioned.
>>>
>>> If not, does anyone have approaches that EASILY cover the controls / use
>>> cases which these mentioned libraries handle?  Or perhaps source code
>>> samples which cover the controls and use cases mentioned with the
>>> libraries mentioned?
>>>
>>> Thanks
>>>
>>>
>>> "TMC" <getmyema***@yahoo.com> wrote in message
>>> news:uZ5e7D4$JHA.5068@TK2MSFTNGP03.phx.gbl...
>>>> Hello All,
>>>>
>>>> I was wondering if anyone has any familiarity with any of these 3rd
>>>> party unicode VB6 support products below:
>>>>
>>>> http://www.iconico.com/UniToolbox2/
>>>>
>>>> http://www.hexagora.com/en_dw_unictrl.asp
>>>>
>>>> http://www.unisuite.com/product008.htm
>>>>
>>>> If so, do you have any review comments or favor one over the other?
>>>>
>>>> Thanks
>>>
>>
>
Author
9 Jul 2009 2:25 PM
-mhd
"TMC" <getmyema***@yahoo.com> wrote:

>I just wondered if anyone else had used any of the 3 3rd party tools
>mentioned, if there were others that could be recommended, etc.

Codejock has Unicode support in their controls.

-mhd
Author
9 Jul 2009 7:21 AM
Mike Williams
"Bill McCarthy" <TPASoft.com Are Identity Thieves> wrote in message
news:%238TyDbEAKHA.3732@TK2MSFTNGP02.phx.gbl...

> For VB versions later than VB6, then unicode is supported with the
> intrinsic controls.

There is no version of VB later than VB6. The dotnet stuf you are talking
about is built on a lie and is NOT VB at all and VB6 code will not work in
it. If you're going to suggest alternative tools with Controls that do
natively support unicode then suggest ALL of them, and not just those
produced and sold by your Micro$oft puppet masters. You're just a troll
McCarthy. A Micro$oft stooge.

Mike

Bookmark and Share