Skip to content

Commit

Permalink
Adjust detection of system tables
Browse files Browse the repository at this point in the history
Switching to just using a bit flag check to solve joyfullservice#462
  • Loading branch information
joyfullservice committed Nov 17, 2023
1 parent 259a8df commit 8776104
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Version Control.accda.src/forms/frmVCSOptions.bas
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ Begin Form
Width =10080
DatasheetFontHeight =11
ItemSuffix =252
Left =-25575
Top =1500
Right =-255
Bottom =14085
Left =3225
Top =2430
Right =18945
Bottom =14175
RecSrcDt = Begin
0x79e78b777268e540
End
Expand Down Expand Up @@ -3897,7 +3897,7 @@ Private Sub LoadTableList()
rstTableData.AddNew
rstTableData!TableName = Nz(!Name)
rstTableData!Flags = Nz(!Flags)
rstTableData!IsSystem = ((lngFlags <> 0) And (lngFlags <> 8) And (lngType = 1))
rstTableData!IsSystem = BitSet(lngFlags, 2)
rstTableData!IsHidden = BitSet(lngFlags, 8)
rstTableData!IsLocal = (lngType = 1)
' Determine table icon
Expand Down

0 comments on commit 8776104

Please sign in to comment.