Skip to content

Commit

Permalink
Fix barcode start and end codea
Browse files Browse the repository at this point in the history
  • Loading branch information
khaled-alshamaa authored Feb 10, 2021
1 parent a438f17 commit 6d4d7ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ICARDA_VBA_Toolkit.bas
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ Public Function Barcode(myLabel As String) As Variant
checksum = checksum + 105
End If

Barcode = "Ì" & myLabel & Chr(checksum) & "Î"
Barcode = Chr(204) & myLabel & Chr(checksum) & Chr(206)
End Function

' Convert Degrees Minutes Seconds (DMS) coordinates to Decimal Degrees (DD)
Expand Down

0 comments on commit 6d4d7ab

Please sign in to comment.