![]() |
|
ClipStorage by envasion - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Sharing (https://sinister.ly/Forum-Sharing) +--- Forum: Programs (https://sinister.ly/Forum-Programs) +--- Thread: ClipStorage by envasion (/Thread-ClipStorage-by-envasion) Pages:
1
2
|
ClipStorage by envasion - envasion - 02-15-2018 Hey, here is my newest tool named ClipStorage. With ClipStorage you can save your current clipboard. If you have some ideas for the tool, you can post it here or send me a PM. Features: - 4 Buttons to save the current clipboard content - Hover over the buttons to see the content Sorry for my bad english. - envasion Picture: Download: https://www.anonfiles.cc/file/42219bcf47ed53e4e7c10c4828d8a1f6 Online virus scan report: https://www.virustotal.com/#/file/c6445bfdeb422148e1a6907fb628ccae7332c676702c2fd552984966c0ff49b4/detection RE: ClipStorage by envasion - Bish0pQ - 02-15-2018 The file is clean. Also checked it myself and apart from a user32.dll import there is nothing sketchy at all. I'd say this is completely safe to use. Thank you for sharing this. Some advice: You might want to give your label proper names (lblStore...) instead of label1,label2... Also running a timer all the time in the background from the beginning isn't really the right way to do this I think. It'd be better if you could hook that up with the CTRL + C shortcut and used a thread instead of a timer. Just some advice, take it or leave it. RE: ClipStorage by envasion - chunky - 02-15-2018 Is it just temporary or does it save and load the clipboards after closing the application? Also what about acting some kind of list instead of the buttons so you can use custom names and an unlimited amount of clipboards? I’d appreciate to see some kind of hotkeys to easily paste your saved clipboards. RE: ClipStorage by envasion - Bish0pQ - 02-15-2018 (02-15-2018, 10:45 PM)chunky Wrote: Is it just temporary or does it save and load the clipboards after closing the application? Also what about acting some kind of list instead of the buttons so you can use custom names and an unlimited amount of clipboards? I’d appreciate to see some kind of hotkeys to easily paste your saved clipboards. Seems that it can only store 4 strings temporary, data gets lost when program closes. @OP, you might want to use a list instead of 4 different strings. You can use the following in C# to use lists: Code: string input = string.Empty;
List<string> lstClipboardHistory = new List<string>(); //Declare a list
input = Clipboard.GetText(); //Get the text from clipboard
if(!lstClipboardHistory.Contains(input)) //Check if the list already contains the text
{
lstClipboardHistory.Add(input); //Add something to the list
lstClipboardHistory.RemoveAt(0); //Remove the item in index 0
}
Then you could add a Listbox to your form and make it like this:
lstClipboardHistory.ItemsSource = lstClipboardHistory;If you want to know more, feel free to shoot me a PM anytime. RE: ClipStorage by envasion - envasion - 02-15-2018 (02-15-2018, 11:07 PM)Bish0pQ Wrote:(02-15-2018, 10:45 PM)chunky Wrote: Is it just temporary or does it save and load the clipboards after closing the application? Also what about acting some kind of list instead of the buttons so you can use custom names and an unlimited amount of clipboards? I’d appreciate to see some kind of hotkeys to easily paste your saved clipboards. Thanks for all the tips!
RE: ClipStorage by envasion - Bish0pQ - 02-15-2018 @envasion glad you handle critics well. Hope to see an updated version soon! RE: ClipStorage by envasion - mothered - 02-16-2018 (02-15-2018, 09:07 PM)envasion Wrote: Cant upload files to VirusTotal: Stating the obvious, there are other online virus scanners to use. It's not mandatory to use VT. RE: ClipStorage by envasion - envasion - 02-16-2018 (02-16-2018, 03:43 AM)mothered Wrote:(02-15-2018, 09:07 PM)envasion Wrote: Cant upload files to VirusTotal: Oh okey sorry, im gonna add a link when im at home. RE: ClipStorage by envasion - mothered - 02-16-2018 (02-16-2018, 03:21 PM)envasion Wrote:(02-16-2018, 03:43 AM)mothered Wrote:(02-15-2018, 09:07 PM)envasion Wrote: Cant upload files to VirusTotal: It's all good, not a problem. @Bish0pQ has provided the online virus scan report above, so I've edited your Initial post and added the link. RE: ClipStorage by envasion - envasion - 02-16-2018 (02-16-2018, 03:32 PM)mothered Wrote:(02-16-2018, 03:21 PM)envasion Wrote:(02-16-2018, 03:43 AM)mothered Wrote: Stating the obvious, there are other online virus scanners to use. Thank you
|