Skip to content

Commit

Permalink
・付箋「メモ」青のアイコンが表示されない不具合を修正。
Browse files Browse the repository at this point in the history
・「ブックの静的チェック」のボタンを「検索」→「チェック」に修正。
  • Loading branch information
RelaxTools committed Sep 11, 2017
1 parent a10caa4 commit 3d5674e
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 3 deletions.
Binary file modified RelaxTools.xlam
Binary file not shown.
Binary file modified Source/RelaxTools.xlsm
Binary file not shown.
5 changes: 4 additions & 1 deletion Source/customUI/_rels/customUI.xml.rels

Large diffs are not rendered by default.

17 changes: 16 additions & 1 deletion Source/src/Form/frmStaticCheck.frm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
VERSION 5.00
Begin {C62A69F0-16DC-11CE-9E98-00AA00574A4F} frmStaticCheck
Caption = "ブックの静的チェック"
ClientHeight = 7125
ClientHeight = 7395
ClientLeft = 120
ClientTop = 465
ClientWidth = 11970
Expand Down Expand Up @@ -220,6 +220,21 @@ Private Sub cmdOk_Click()

End If
Next


Dim lngAns As Long

txtChk.Value = lstResult.ListCount
lngAns = txtTotal.Value - (Val(txtTen.Value) * Val(txtChk.Value))

If lngAns < 0 Then
txtANS.ForeColor = vbRed
Else
txtANS.ForeColor = vbBlack
End If
txtANS.Text = lngAns


End Sub

Private Sub cmdCancel_Click()
Expand Down
7 changes: 6 additions & 1 deletion Version.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
2017/09/10(sun) RelaxTools-Addin Version 4.14.1(RustRemover)
2017/09/11(mon) RelaxTools-Addin Version 4.14.2(RustRemover)
◇バグ修正
・付箋「メモ」青のアイコンが表示されない不具合を修正。
・「ブックの静的チェック」のボタンを「検索」→「チェック」に修正。

2017/09/10(sun) RelaxTools-Addin Version 4.14.1(RustRemover)
◇機能改善
・「ブックの静的チェック」のヘルプで「複数セルに対応」という記述を削除。

Expand Down

0 comments on commit 3d5674e

Please sign in to comment.