Page 92 of 105 FirstFirst ... 428289909192939495102 ... LastLast
Results 3,641 to 3,680 of 4199

Thread: CommonControls (Replacement of the MS common controls)

  1. #3641

    Thread Starter
    PowerPoster
    Join Date
    Jun 2012
    Posts
    2,728

    Re: CommonControls (Replacement of the MS common controls)

    Quote Originally Posted by godeny View Post
    As the VirtualCombo is a new control, it is not a compatibility case, but when setting the ListIndex property of the control, why is the text field not updated ?
    Fixed. Thanks

  2. #3642

    Thread Starter
    PowerPoster
    Join Date
    Jun 2012
    Posts
    2,728

    Re: CommonControls (Replacement of the MS common controls)

    Quote Originally Posted by godeny View Post
    Two incompatibilities I've noticed so far:
    - The HitTest method of the Treeview control needs the coordinates in Pixels. The original MS control needed them in Twips. (The form the control is placed on has ScaleMode=3, it uses Pixels). Pixels seem to me a better choice in this case, but is an incompatibility.

    - When the KeyPreview property of the containing form is set to true, I don't get it though some keystrokes from the TextboxW and ComboBoxW control int the forms KeyDown event - for example, the up and down arrows. I have to use the KeyDown event of that controls - of each of them - to grab this keystrokes, and to redefine, what they are doing.
    Bad for the HitTest... fixing it now would cause an incompatibility in the VBCCR history. So I think need to keep it like that.

    KeyPreview can't be fixed..

  3. #3643
    New Member
    Join Date
    Oct 2019
    Posts
    4

    Re: CommonControls (Replacement of the MS common controls)

    Hittest: it is a very simple change, one can live good with it.

    KeyPreview: I was surprised by the answer, as the original Microsoft controls did it correctly.
    Does VBCCR use another window class, as the original VB controls ?

  4. #3644
    Fanatic Member Mith's Avatar
    Join Date
    Jul 2017
    Location
    Thailand
    Posts
    540

    ListView & TextBoxW SetFocus Bug

    VBCCR OCX 1.7.88
    VB6SP6 Win10

    Problem: The ListView "steals" the focus from a TextBoxW

    1. I use the ListViewW in report mode.
    2. I click on a item.
    3. At the MouseUp event i set the focus to a TextBoxW but the ListView catches the focus again after the MouseUp event is done.

    I tried the same with the MS controls and the focus stays at the TextBox:

    1. MS ListView in report mode.
    2. I click on a item.
    3. At the MouseUp event i set the focus to a MS Textbox and the focus stays in the TextBox.

    Another problem occured with the Validate event of the TextBoxW:

    If the focus is on the TextBox and i click on another control or the form, the TextBox focus is gone but the Validate event of the TextBox isnt triggered to hide the TextBox!

    See attached VB example project.

    Can this 2 issues be fixed?
    Attached Files Attached Files

  5. #3645

    Thread Starter
    PowerPoster
    Join Date
    Jun 2012
    Posts
    2,728

    Re: ListView & TextBoxW SetFocus Bug

    Quote Originally Posted by Mith View Post
    VBCCR OCX 1.7.88
    VB6SP6 Win10

    Problem: The ListView "steals" the focus from a TextBoxW

    1. I use the ListViewW in report mode.
    2. I click on a item.
    3. At the MouseUp event i set the focus to a TextBoxW but the ListView catches the focus again after the MouseUp event is done.

    I tried the same with the MS controls and the focus stays at the TextBox:

    1. MS ListView in report mode.
    2. I click on a item.
    3. At the MouseUp event i set the focus to a MS Textbox and the focus stays in the TextBox.

    Another problem occured with the Validate event of the TextBoxW:

    If the focus is on the TextBox and i click on another control or the form, the TextBox focus is gone but the Validate event of the TextBox isnt triggered to hide the TextBox!

    See attached VB example project.

    Can this 2 issues be fixed?
    Thanks for reporting.
    The list view control enters a modal message loop (DragDetect) on WM_LBUTTONDOWN and WM_RBUTTONDOWN.
    The problem here seems that 'MouseUp' is fired within NM_CLICK and NM_RCLICK.
    And the list view control seems to set the focus in it's handler afterwards.
    The solution may be to use PostMessage to delay firing 'MouseUp' after NM_CLICK, NM_RCLICK.

  6. #3646
    Fanatic Member Mith's Avatar
    Join Date
    Jul 2017
    Location
    Thailand
    Posts
    540

    Re: ListView & TextBoxW SetFocus Bug

    I found a temporary solution to fix this:

    The ItemDblClick event doesnt behave like the MouseUp event. The focus stays in the textbox after the ItemDblClick event is done.

  7. #3647

    Thread Starter
    PowerPoster
    Join Date
    Jun 2012
    Posts
    2,728

    Re: CommonControls (Replacement of the MS common controls)

    The "problem" after NM_CLICK and NM_RCLICK was my code...
    Code:
    Case WM_LBUTTONDOWN
        ' In case DragDetect returns 0 then the control will set focus the focus automatically.
        ' Otherwise not. So check and change focus, if needed.
        If GetFocus() = UserControl.hWnd Then SetFocusAPI hWnd
        If GetFocus() <> hWnd Then SetFocusAPI hWnd
    the red part is the old code and the new code is blue which fixes the issue.. will check to be sure but then release it soon.

    And when the focus is not stolen the problem with the validate event is also fixed of course.

  8. #3648

    Thread Starter
    PowerPoster
    Join Date
    Jun 2012
    Posts
    2,728

    Re: ListView & TextBoxW SetFocus Bug

    Quote Originally Posted by Mith View Post
    VBCCR OCX 1.7.88
    VB6SP6 Win10

    Problem: The ListView "steals" the focus from a TextBoxW

    1. I use the ListViewW in report mode.
    2. I click on a item.
    3. At the MouseUp event i set the focus to a TextBoxW but the ListView catches the focus again after the MouseUp event is done.

    I tried the same with the MS controls and the focus stays at the TextBox:

    1. MS ListView in report mode.
    2. I click on a item.
    3. At the MouseUp event i set the focus to a MS Textbox and the focus stays in the TextBox.

    Another problem occured with the Validate event of the TextBoxW:

    If the focus is on the TextBox and i click on another control or the form, the TextBox focus is gone but the Validate event of the TextBox isnt triggered to hide the TextBox!

    See attached VB example project.

    Can this 2 issues be fixed?
    Update released. Fixed.

  9. #3649
    Fanatic Member Mith's Avatar
    Join Date
    Jul 2017
    Location
    Thailand
    Posts
    540

    Re: ListView & TextBoxW SetFocus Bug

    Quote Originally Posted by Krool View Post
    Update released. Fixed.
    I can confirm that the SetFocus bug is fixed now!

    But the TextBox Validate event is still not triggered when i click on another control or the form.

    I've tested this with my VB example project from my post #3644

  10. #3650

    Thread Starter
    PowerPoster
    Join Date
    Jun 2012
    Posts
    2,728

    Re: ListView & TextBoxW SetFocus Bug

    Quote Originally Posted by Mith View Post
    I can confirm that the SetFocus bug is fixed now!

    But the TextBox Validate event is still not triggered when i click on another control or the form.

    I've tested this with my VB example project from my post #3644
    I can't replicate. For me in the demo both are behaving the same. You use the ListView_Validate event, right ?
    Since the TextBox has the focus it will not trigger any validating when clicking on another control since the ListView does not have the focus.

  11. #3651
    Fanatic Member Mith's Avatar
    Join Date
    Jul 2017
    Location
    Thailand
    Posts
    540

    Re: ListView & TextBoxW SetFocus Bug

    Quote Originally Posted by Krool View Post
    I can't replicate. For me in the demo both are behaving the same. You use the ListView_Validate event, right ?
    Since the TextBox has the focus it will not trigger any validating when clicking on another control since the ListView does not have the focus.
    Your are right! My fault, i used the wrong control event

  12. #3652
    Fanatic Member Mith's Avatar
    Join Date
    Jul 2017
    Location
    Thailand
    Posts
    540

    CommandButtonW with SplitButton not scaled at 150%

    VBCCR OCX 1.7.89

    I use the CommandButtonW with SplitButton=True. Using a UI scale of 150% or higher the DropDown arrow is much bigger and the button width is not adjusted. Tested with Win7. Is this something that can be fixed?

    See screenshots:

    100%
    Name:  100%.png
Views: 6539
Size:  1.1 KB

    125%
    Name:  125%.png
Views: 6633
Size:  1.2 KB

    150%
    Name:  150%.png
Views: 6602
Size:  3.3 KB

    175%
    Name:  175%.png
Views: 6622
Size:  4.2 KB

    200%
    Name:  200%.png
Views: 6527
Size:  4.3 KB
    Last edited by Mith; Jan 12th, 2024 at 05:22 AM.

  13. #3653
    New Member
    Join Date
    Jun 2020
    Location
    UA
    Posts
    13

    Re: CommonControls (Replacement of the MS common controls)

    VBCCR OCX 1.7.82 - 1.7.89
    VB6SP6 Win10

    After the 10-Dec-2023 update there is no dropdown area of ImageCombo. But only a thin line under the combo when I click the dropdown button.
    Strangely, this does not happens on all forms. Somewhere it's works normaly.

    Attachment 189844
    Last edited by tnrprog; Jan 12th, 2024 at 06:49 AM.

  14. #3654
    Fanatic Member Mith's Avatar
    Join Date
    Jul 2017
    Location
    Thailand
    Posts
    540

    Re: CommonControls (Replacement of the MS common controls)

    Quote Originally Posted by tnrprog View Post
    After the 10-Dec-2023 update there is no dropdown area of ImageCombo. But only a thin line under the combo when I click the dropdown button.
    No probem here using VBCCR OCX 1.7.89 with VB6SP6 Win10:

    Name:  VBCCR1789 imagecombo.png
Views: 6612
Size:  9.2 KB

    Maybe you should check the MaxDropDownItems property and the ListCount property of the ImageCombo at runtime.

  15. #3655
    Fanatic Member
    Join Date
    Nov 2015
    Posts
    990

    Re: CommonControls (Replacement of the MS common controls)

    Hi Krool
    I noticed that with Vb updown Dtpicker, I can change up or down the date without getting focus on the control.
    However with your updown Dtpicker, I must first click inside the Dtpicker so that I can change the date value.

  16. #3656

    Thread Starter
    PowerPoster
    Join Date
    Jun 2012
    Posts
    2,728

    Re: CommonControls (Replacement of the MS common controls)

    Update released.

    Improvement in the BuddyControl property in the UpDown control.

    The property value "_Value" was an alias for the DISPID_VALUE property. (default property)
    However, MS UpDown control used an alias "_Default". Thus the UpDown control promotes and shows in the drop-down list "_Default".
    But for compatibility reasons a value of "_Value" is accepted. During UserControl_ReadProperties "_Value" will be replaced by "_Default".
    But again, setting "_Value" later on by code will still work as an alias. But will then be replaced to "_Default".

  17. #3657
    Fanatic Member
    Join Date
    Nov 2015
    Posts
    990

    Re: CommonControls (Replacement of the MS common controls)

    Krool
    Would you update the UpDown DTPicker when the customFormat is set to "yyyy"?
    I can change the MS UpDown date value by just clicking the arrows up or down.
    But for your control, I need to set focus on the control (by clicking inside the control) before I can change the date by means of arrows.

  18. #3658

    Thread Starter
    PowerPoster
    Join Date
    Jun 2012
    Posts
    2,728

    Re: CommonControls (Replacement of the MS common controls)

    Quote Originally Posted by newbie2 View Post
    Krool
    Would you update the UpDown DTPicker when the customFormat is set to "yyyy"?
    I can change the MS UpDown date value by just clicking the arrows up or down.
    But for your control, I need to set focus on the control (by clicking inside the control) before I can change the date by means of arrows.
    The UpDown window doesn't take over the focus. That's normal for msctls_updown32.
    Solution will be following code addition. Which seems to be exactly what the MS DTPicker control is doing. (for example keep pressing up or down button and try to tab key away, focus will be set back instantly in MS DTPicker control)
    Code:
    Case UDN_DELTAPOS
        If GetFocus() <> hWnd Then UCNoSetFocusFwd = True: SetFocusAPI UserControl.hWnd: UCNoSetFocusFwd = False
        WindowProcControl = ComCtlsDefaultProc(hWnd, wMsg, wParam, lParam)
        ' Fallback just in case the control would not set the focus automatically.
        If GetFocus() = UserControl.hWnd Then SetFocusAPI hWnd
        Exit Function
    The SysDateTimePick32 handles of course UDN_DELTAPOS but will set the focus then to itself. Here it is just important to let VB know that the UserControl has focus so that the SysDateTimePick32 will not be disturbed when it will set the focus to itself. This also ensures that the correct "field" will have the focus and that the up down arrow will work without clicking first on the control.

    Update will follow soon ..
    Last edited by Krool; Jan 15th, 2024 at 07:17 AM.

  19. #3659

    Thread Starter
    PowerPoster
    Join Date
    Jun 2012
    Posts
    2,728

    Re: CommonControls (Replacement of the MS common controls)

    Quote Originally Posted by newbie2 View Post
    Krool
    Would you update the UpDown DTPicker when the customFormat is set to "yyyy"?
    I can change the MS UpDown date value by just clicking the arrows up or down.
    But for your control, I need to set focus on the control (by clicking inside the control) before I can change the date by means of arrows.
    Done. Thanks for bringing this up.

  20. #3660
    Fanatic Member
    Join Date
    Jan 2016
    Posts
    834

    Re: CommonControls (Replacement of the MS common controls)

    Thank you Krool

  21. #3661
    New Member
    Join Date
    Jun 2020
    Location
    UA
    Posts
    13

    Re: CommonControls (Replacement of the MS common controls)

    Quote Originally Posted by Mith View Post
    No probem here using VBCCR OCX 1.7.89 with VB6SP6 Win10:

    Maybe you should check the MaxDropDownItems property and the ListCount property of the ImageCombo at runtime.

    1) When I using an earlier version of the OCX, the bug does not appear in my project.


    2) At runtime MaxDropDownItems correctly returns 9

    But this code removes the bug.

    Code:
    Img Combo.MaxDropDownItems = 1
    Img Combo.MaxDropDownItems = 9

  22. #3662
    PowerPoster
    Join Date
    Jan 2020
    Posts
    5,538

    Re: CommonControls (Replacement of the MS common controls)

    Can you add the transparency attribute to all your controls?
    In addition, if we can develop a second set of controls, similar to the flat buttons of Android or iOS systems. The UI component
    Attached Images Attached Images  

  23. #3663

    Thread Starter
    PowerPoster
    Join Date
    Jun 2012
    Posts
    2,728

    Re: CommonControls (Replacement of the MS common controls)

    Quote Originally Posted by tnrprog View Post
    1) When I using an earlier version of the OCX, the bug does not appear in my project.


    2) At runtime MaxDropDownItems correctly returns 9

    But this code removes the bug.

    Code:
    Img Combo.MaxDropDownItems = 1
    Img Combo.MaxDropDownItems = 9
    I found the bug. You have probably missing _ExtentX/_ExtentY meta data in your .frm for the ImageCombo.

    Update will follow soon.

    ComboBoxW/FontCombo/VirtualCombo are not affected.
    Last edited by Krool; Jan 16th, 2024 at 02:44 AM.

  24. #3664

    Thread Starter
    PowerPoster
    Join Date
    Jun 2012
    Posts
    2,728

    Re: CommonControls (Replacement of the MS common controls)

    Quote Originally Posted by xiaoyao View Post
    Can you add the transparency attribute to all your controls?
    In addition, if we can develop a second set of controls, similar to the flat buttons of Android or iOS systems. The UI component
    What controls are missing ? The FrameW control for example has already a transparent property.

  25. #3665

    Thread Starter
    PowerPoster
    Join Date
    Jun 2012
    Posts
    2,728

    Re: CommonControls (Replacement of the MS common controls)

    Quote Originally Posted by tnrprog View Post
    VBCCR OCX 1.7.82 - 1.7.89
    VB6SP6 Win10

    After the 10-Dec-2023 update there is no dropdown area of ImageCombo. But only a thin line under the combo when I click the dropdown button.
    Strangely, this does not happens on all forms. Somewhere it's works normaly.

    Attachment 189844
    Done. Fixed.

  26. #3666
    Fanatic Member Mith's Avatar
    Join Date
    Jul 2017
    Location
    Thailand
    Posts
    540

    Richtextbox Clear command sound problem

    VBCCR OCX1.7.89
    VB6SP6 Win10

    I have a sound problem with the CLEAR command of the RichTextBox:

    Windows always plays a annoying sound jingle when i use the CLEAR command to delete the content.

    Is there any difference using .Text="" or .Clear to delete the content of the RichTextBox?

    Can i disable this sound somehow or should i only use .Text="" and avoid .Clear?

  27. #3667
    New Member
    Join Date
    Jun 2020
    Location
    UA
    Posts
    13

    Re: CommonControls (Replacement of the MS common controls)

    Quote Originally Posted by Krool View Post
    Done. Fixed.
    Thank you. But I think that not everything is OK yet.

    Now the dropdown shows only one item. Although MaxItemCount returns 9. And in the old version everything is OK.

    Attachment 189938

  28. #3668

    Thread Starter
    PowerPoster
    Join Date
    Jun 2012
    Posts
    2,728

    Re: CommonControls (Replacement of the MS common controls)

    Quote Originally Posted by tnrprog View Post
    Thank you. But I think that not everything is OK yet.

    Now the dropdown shows only one item. Although MaxItemCount returns 9. And in the old version everything is OK.

    Attachment 189938
    How many combo items are added?
    MaxDropDownItems of 9 means when there are no items, it won't show 9.

  29. #3669

    Thread Starter
    PowerPoster
    Join Date
    Jun 2012
    Posts
    2,728

    Re: Richtextbox Clear command sound problem

    Quote Originally Posted by Mith View Post
    VBCCR OCX1.7.89
    VB6SP6 Win10

    I have a sound problem with the CLEAR command of the RichTextBox:

    Windows always plays a annoying sound jingle when i use the CLEAR command to delete the content.

    Is there any difference using .Text="" or .Clear to delete the content of the RichTextBox?

    Can i disable this sound somehow or should i only use .Text="" and avoid .Clear?
    I can't replicate. Normally such a beep occurs within KeyPress and enter when KeyAscii was not set to 0.
    Can you provide a small demo ? Thx

  30. #3670
    Fanatic Member Mith's Avatar
    Join Date
    Jul 2017
    Location
    Thailand
    Posts
    540

    Re: Richtextbox Clear command sound problem

    Quote Originally Posted by Krool View Post
    I can't replicate. Normally such a beep occurs within KeyPress and enter when KeyAscii was not set to 0.
    Can you provide a small demo ? Thx
    I found the reason:

    the sound is played if the Locked property is set to TRUE.

  31. #3671

    Thread Starter
    PowerPoster
    Join Date
    Jun 2012
    Posts
    2,728

    Re: Richtextbox Clear command sound problem

    Quote Originally Posted by Mith View Post
    I found the reason:

    the sound is played if the Locked property is set to TRUE.
    ok, that seems to be then a reacton of WM_CLEAR itself.

  32. #3672
    New Member
    Join Date
    Jun 2020
    Location
    UA
    Posts
    13

    Re: CommonControls (Replacement of the MS common controls)

    Quote Originally Posted by Krool View Post
    How many combo items are added?
    The Combo from the screenshot has 4 items (ComboItems.Count returns 4). But it shows 1, no matter how many of them are real.



    Quote Originally Posted by Krool View Post
    MaxDropDownItems of 9 means when there are no items, it won't show 9.
    I understand how MaxDropDownItems works.
    I just reported that MaxDropDownItems=9. Because On the screenshot it looks like MaxDropDownItems=1
    Last edited by tnrprog; Jan 17th, 2024 at 06:11 AM.

  33. #3673

    Thread Starter
    PowerPoster
    Join Date
    Jun 2012
    Posts
    2,728

    Re: CommonControls (Replacement of the MS common controls)

    Quote Originally Posted by tnrprog View Post
    The Combo from the screenshot has 4 items (ComboItems.Count returns 4). But it shows 1, no matter how many of them are real.



    I understand how MaxDropDownItems works.
    I just reported that MaxDropDownItems=9. Because On the screenshot it looks like MaxDropDownItems=1
    the screenshot is not working. Can you provide a demo project ?

  34. #3674
    New Member Plohish's Avatar
    Join Date
    Jan 2024
    Posts
    1

    Re: CommonControls (Replacement of the MS common controls)

    Hello! The definition "CCMousePointerConstants" has been lost in recent versions : Standard EXE Version\Builds\Slider; Standard EXE Version\Builds\UpDown.

  35. #3675

    Thread Starter
    PowerPoster
    Join Date
    Jun 2012
    Posts
    2,728

    Re: CommonControls (Replacement of the MS common controls)

    Quote Originally Posted by Plohish View Post
    Hello! The definition "CCMousePointerConstants" has been lost in recent versions : Standard EXE Version\Builds\Slider; Standard EXE Version\Builds\UpDown.
    Please replace the other components as well. I am gradually replacing the MousePointer properties to enums.

  36. #3676
    New Member
    Join Date
    Jun 2020
    Location
    UA
    Posts
    13

    Re: CommonControls (Replacement of the MS common controls)

    Quote Originally Posted by Krool View Post
    Can you provide a demo project ?
    I found that the bug occurs due to a change the 'DropDownWidth' property in the 'DropDown' event. So I can get around it.
    However, in earlier versions there was no problem at all.

    Demo.zip
    Last edited by tnrprog; Jan 17th, 2024 at 06:59 AM.

  37. #3677
    PowerPoster
    Join Date
    Jan 2020
    Posts
    5,538

    Re: CommonControls (Replacement of the MS common controls)

    Quote Originally Posted by Krool View Post
    What controls are missing ? The FrameW control for example has already a transparent property.
    Text boxes, buttons, picture controls. There are many, if each control can set the background image or transparent, that would be the best.

  38. #3678

    Thread Starter
    PowerPoster
    Join Date
    Jun 2012
    Posts
    2,728

    Re: CommonControls (Replacement of the MS common controls)

    Quote Originally Posted by tnrprog View Post
    I found that the bug occurs due to a change the 'DropDownWidth' property in the 'DropDown' event. So I can get around it.
    However, in earlier versions there was no problem at all.

    Demo.zip
    Ok, a part of the 10-Dec-2023 change for ImageCombo got now reversed as it seems the ImageCombo is caching something and it does need a resize on the control itself rather then SetWindowPos on the list handly only. (for CheckDropDownHeight)
    So, fixed.

    ComboBoxW/FontCombo/VirtualCombo are not affected and use still the initial change of 10-Dec-2023.
    Last edited by Krool; Jan 17th, 2024 at 09:52 AM.

  39. #3679

    Thread Starter
    PowerPoster
    Join Date
    Jun 2012
    Posts
    2,728

    Re: CommonControls (Replacement of the MS common controls)

    Quote Originally Posted by godeny View Post
    KeyPreview: I was surprised by the answer, as the original Microsoft controls did it correctly.
    Does VBCCR use another window class, as the original VB controls ?
    I don't know how..

    The trick once wrote, quote:
    The form won't get that message because that message is processed by the control. A control processes the IOleInPlaceActiveObject::TranslateAccelerator and then can pass the call to container by calling IOleControlSite::TranslateAccelerator. The runtime checks if the form has the KeyPreview = True and calls the event.
    However, calling IOleControlSite always return S_OK and does not case the frame top-level container IOleInPlaceFrame to raise the KeyDown event.
    I can get the IOleInPlaceFrame object from within IOleInPlaceActiveObject::TranslateAccelerator and the hWndFrame (which is VB.Form or VB.UserControl)
    However, how to know the KeyPreview state or invoke something ? I need some help here. I can cast IOleInPlaceFrame to IDispatch and get the KeyPreview property of a VB.Form, but that looks odd and hacky.

  40. #3680
    Fanatic Member Mith's Avatar
    Join Date
    Jul 2017
    Location
    Thailand
    Posts
    540

    Re: CommandButtonW with SplitButton not scaled at 150%

    Quote Originally Posted by Mith View Post
    VBCCR OCX 1.7.89

    I use the CommandButtonW with SplitButton=True. Using a UI scale of 150% or higher the DropDown arrow is much bigger and the button width is not adjusted. Tested with Win7. Is this something that can be fixed?

    See screenshots:

    100%
    Name:  100%.png
Views: 6539
Size:  1.1 KB

    125%
    Name:  125%.png
Views: 6633
Size:  1.2 KB

    150%
    Name:  150%.png
Views: 6602
Size:  3.3 KB

    175%
    Name:  175%.png
Views: 6622
Size:  4.2 KB

    200%
    Name:  200%.png
Views: 6527
Size:  4.3 KB
    I just wanted to let you know that the scaling problem doesn't occur with Windows 10/11.
    I guess this is a specific problem of the Win7 UI scaler that cant be fixed by code.

Page 92 of 105 FirstFirst ... 428289909192939495102 ... LastLast

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