Skip to content

Commit 88fde71

Browse files
committed
GenSendManyText v5: Add specifying the from wallet address label. Adjust program icon
1 parent ebef415 commit 88fde71

File tree

7 files changed

+105
-82
lines changed

7 files changed

+105
-82
lines changed

AirDrop_16_32_48_256.ico

-846 Bytes
Binary file not shown.

FormMain.Designer.vb

Lines changed: 87 additions & 76 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

FormMain.vb

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@
3939
GenerateText()
4040
End Sub
4141

42+
Private Sub txtFromWallet_TextChanged(sender As Object, e As EventArgs) Handles txtFromWallet.TextChanged
43+
GenerateText()
44+
End Sub
45+
4246
Private Sub cboDecimalPlaces_SelectedIndexChanged(sender As Object, e As EventArgs) Handles cboDecimalPlaces.SelectedIndexChanged
4347
GenerateText()
4448
End Sub
@@ -130,7 +134,7 @@
130134
m_iEnd = strAddr.Length - 1
131135

132136
'Build the output text
133-
m_sbMsg.Append("sendmany """" ""{")
137+
m_sbMsg.Append("sendmany """ & Me.txtFromWallet.Text & """ ""{")
134138
For i = 0 To m_iEnd
135139
m_dRndAmt = FixDbl((m_rNum.NextDouble * (m_dMax - m_dMin)) + m_dMin)
136140
'Add the new amount to the total

GenSendManyText - Status - ToDo List.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,17 @@ Other Ideas, Improvements, Tasks, Longer-Term Goals:
1414

1515

1616
-Highlight/flag/remove duplicate addresses in the list?
17-
-Find text in the address list, for looking for an address?
17+
-Search for text in the address list, for finding an address?
1818

1919

2020

2121

2222
======================================================================================================
2323
Change Log - Release Notes - Tasks completed:
2424
======================================================================================================
25-
25+
v5 Release (2023-01-14)
26+
[DONE] -Add specifying the from wallet address label
27+
[DONE] -Adjust program icon to look better with the Windows shortcut arrow in the lower left of it
2628
v4 Release (2022-06-26)
2729
[DONE] -Add specifying the comment text
2830
[DONE] -Re-generate when comment text changes

0 commit comments

Comments
 (0)