Results 1 to 40 of 274

Thread: [VB6] TaskDialogIndirect - Complete class implementation of Vista+ Task Dialogs

Threaded View

  1. #11
    Addicted Member
    Join Date
    Jun 2010
    Posts
    208

    Re: [VB6] TaskDialogIndirect - Complete class implementation of Vista+ Task Dialogs

    Hi, I'm doing some quality control of my code as I'm setting up unit testing, and wonder is this a bug?
    Code:
    Public Property Get DefaultRadioButton() As Long: DefaultButton = uTDC.nDefaultRadioButton: End Property
    shouldn't it be

    Code:
    Public Property Get DefaultRadioButton() As Long: DefaultRadioButton = uTDC.nDefaultRadioButton: End Property
    ?
    in cTaskDialog

    EDIT/ADDING:
    and same with this
    Code:
    Public Property Get DateTimeAlign() As TDInputBoxAlign: ComboAlign = nDateTimeAlign: End Property
    to be
    Code:
    Public Property Get DateTimeAlign() As TDInputBoxAlign: DateTimeAlign = nDateTimeAlign: End Property
    and this
    Code:
    Public Property Get DateTimeAlignInButtons() As TDControlAlign: DateTimeAlignInFooter = nDTButtonAlign: End Property
    to be
    Code:
    Public Property Get DateTimeAlignInButtons() As TDControlAlign: DateTimeAlignInButtons = nDTButtonAlign: End Property
    Last edited by 7edm; May 22nd, 2021 at 01:16 PM.
    M$ vs. VB6 = The biggest betrayal and strategic mistake of the century!?

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