Skip to content

Commit

Permalink
Use semicolon for list separator
Browse files Browse the repository at this point in the history
While a comma works on English systems, it may cause issues when other language settings are used. Fixes #258
  • Loading branch information
joyfullservice committed Sep 10, 2021
1 parent 09e3964 commit f46de79
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Version Control.accda.src/dbs-properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"Type": 10
},
"AppVersion": {
"Value": "3.4.15",
"Value": "3.4.16",
"Type": 10
},
"Auto Compact": {
Expand Down
12 changes: 6 additions & 6 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 =236
Left =-25575
Top =1710
Right =-5925
Bottom =14295
Left =3225
Top =2430
Right =22695
Bottom =15015
RecSrcDt = Begin
0x79e78b777268e540
End
Expand Down Expand Up @@ -3712,15 +3712,15 @@ Private Sub Form_Load()
With Me.cboSanitizeLevel
.RowSource = vbNullString
For intSanitizeLevel = 0 To (eSanitizeLevel.[_Last] - 1)
.AddItem intSanitizeLevel & "," & Options.GetSanitizeLevelName(intSanitizeLevel)
.AddItem intSanitizeLevel & ";" & Options.GetSanitizeLevelName(intSanitizeLevel)
Next intSanitizeLevel
End With

' Load color sanitize options
With Me.cboSanitizeColors
.RowSource = vbNullString
For intSanitizeLevel = 0 To (eSanitizeLevel.[_Last] - 1)
.AddItem intSanitizeLevel & "," & Options.GetSanitizeLevelName(intSanitizeLevel)
.AddItem intSanitizeLevel & ";" & Options.GetSanitizeLevelName(intSanitizeLevel)
Next intSanitizeLevel
End With

Expand Down
2 changes: 1 addition & 1 deletion Version Control.accda.src/vbe-project.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
},
"Items": {
"Name": "MSAccessVCS",
"Description": "Version 3.4.15 deployed on 7/20/2021",
"Description": "Version 3.4.16 deployed on 9/10/2021",
"FileName": "Version Control.accda",
"HelpFile": "",
"HelpContextId": 0,
Expand Down
2 changes: 1 addition & 1 deletion Version Control.accda.src/vcs-options.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"Info": {
"AddinVersion": "3.4.15",
"AddinVersion": "3.4.16",
"AccessVersion": "14.0 32-bit"
},
"Options": {
Expand Down

0 comments on commit f46de79

Please sign in to comment.