Skip to content

Commit 7358241

Browse files
authored
Add files via upload
1 parent 5992e9f commit 7358241

File tree

8 files changed

+19
-10
lines changed

8 files changed

+19
-10
lines changed

DemoMain.twinproj

-445 Bytes
Binary file not shown.

FileDialogDemo.twinproj

309 Bytes
Binary file not shown.

ShellControls.twinproj

41.9 KB
Binary file not shown.

ShellControlsTB.twinpack

510 Bytes
Binary file not shown.

UCSBDemoVB.twinproj

192 Bytes
Binary file not shown.

tbShellTree.twinproj

-303 Bytes
Binary file not shown.

ucShellBrowse.twin

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Public Class ucShellBrowse
55
Option Explicit
66

7-
Private Const mVersionStr = "ucShellBrowse 12.0"
7+
Private Const mVersionStr = "ucShellBrowse 12.0 R1"
88
Private Const mVersionApp = "ucShellBrowse"
99
Private Const mVersionMjr = 12
1010
Private Const mVersionMnr = 0
@@ -214,6 +214,11 @@ Private Const mVersionMnr = 0
214214
'
215215
'------------------------------------CHANGELOG------------------------------------
216216
'
217+
'New in v12.0 R1 (Released 02 Feb 2023)
218+
'
219+
'-Updated tbShellLib to 2.6.62 with fixed hex literals, and fixed a couple (unused)
220+
' ones in this control.
221+
'
217222
'New in v12.0 (Released 02 Feb 2023)
218223
'
219224
'-There's now a RegisterWindow option that, if True, will register this control as
@@ -3743,8 +3748,8 @@ Public Enum ucsb_StaticControlStyles
37433748
SS_EDITCONTROL = &H2000
37443749
SS_ENDELLIPSIS = &H4000
37453750
SS_PATHELLIPSIS = &H8000&
3746-
SS_WORDELLIPSIS = &HC000
3747-
SS_ELLIPSISMASK = &HC000
3751+
SS_WORDELLIPSIS = &HC000&
3752+
SS_ELLIPSISMASK = &HC000&
37483753
End Enum
37493754

37503755
Private Const ANSI_CHARSET As Byte = &H0
@@ -4509,7 +4514,7 @@ Private Enum ucsb_LVStyles
45094514
LVS_NOSCROLL = &H2000
45104515
LVS_NOCOLUMNHEADER = &H4000
45114516
LVS_NOSORTHEADER = &H8000&
4512-
LVS_TYPESTYLEMASK = &HFC00
4517+
LVS_TYPESTYLEMASK = &HFC00&
45134518
LVS_ALIGNTOP = &H0
45144519
LVS_ALIGNMASK = &HC00
45154520
End Enum ' LVStyles
@@ -4949,7 +4954,7 @@ Private Enum LVITEM_state
49494954
LVIS_ACTIVATING = &H20
49504955

49514956
LVIS_OVERLAYMASK = &HF00
4952-
LVIS_STATEIMAGEMASK = &HF000
4957+
LVIS_STATEIMAGEMASK = &HF000&
49534958
End Enum
49544959
Private Type LVBKIMAGE
49554960
ulFlags As LVBKIMAGE_Flags

ucShellTree.twin

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
Public Class ucShellTree
55
Option Explicit
66

7-
Private Const mVersionStr As String = "Shell Tree Control 2.8 R1"
7+
Private Const mVersionStr As String = "Shell Tree Control 2.8 R2"
88
#Region "README"
99
''*********************************************************************************************
1010
'
1111
'ucShellTree.twin
12-
'Shell Tree Control v2.8 R1 - twinBASIC Implementation
12+
'Shell Tree Control v2.8 R2 - twinBASIC Implementation
1313
'
1414
'Author: fafalone
1515
'(c) 2018-2023
@@ -62,6 +62,10 @@ Private Const mVersionStr As String = "Shell Tree Control 2.8 R1"
6262
'
6363
'---------------------------------------CHANGELOG----------------------------------------
6464
'
65+
'v2.8 R2
66+
'-Updated tbShellLib to 2.6.62 with fixed hex literals, and fixed a couple ones in this
67+
' control.
68+
'
6569
'v2.8
6670
'
6771
'(R1) IPAO hooking code integrated so as to not conflict with ucShellBrowse.
@@ -913,7 +917,7 @@ Private Enum ucst_IL_CreateFlags
913917
ILC_PALETTE = &H800 ' (no longer supported...never worked anyway)
914918
'5.0
915919
ILC_MIRROR = &H2000
916-
ILC_PERITEMMIRROR = &H8000
920+
ILC_PERITEMMIRROR = &H8000&
917921
'6.0
918922
ILC_ORIGINALSIZE = &H10000
919923
ILC_HIGHQUALITYSCALE = &H20000
@@ -1336,8 +1340,8 @@ Private Enum ucst_TVITEM_State
13361340
TVIS_EXPANDEDONCE = &H40
13371341
TVIS_EXPANDPARTIAL = &H80
13381342
TVIS_OVERLAYMASK = &HF00
1339-
TVIS_STATEIMAGEMASK = &HF000
1340-
TVIS_USERMASK = &HF000
1343+
TVIS_STATEIMAGEMASK = &HF000&
1344+
TVIS_USERMASK = &HF000&
13411345
End Enum
13421346
Private Enum ucst_TVITEM_State_Ex
13431347
'6.0

0 commit comments

Comments
 (0)