Hi,
I released an update to the amp# software to version v.1.1.0.1 😀
- Added a possibility to copy a playlist into a single directory.
Have fun again 🎵
Hi,
I released an update to the amp# software to version v.1.1.0.1 😀
Have fun again 🎵
Hi,
I’m proud to release the initial version of a software I’m been working (hobby) for about a year called ScriptNotepad.
The software is based on the Scintilla project via the ScintillaNET wrapper library.
The idea is that you can write scripts for text manipulation in C# programming language and run them within the software. There is still a lot to do but I can get no input on feature requests, bugs or otherwise, if the software isn’t available with the public. The software has also spawned many libraries released as NuGet packages and in the GitHub, because I didn’t want to include all the code in a same project.
The main window
Do have fun playing with it 😅 – PS. I have used this on my work place for three weeks now 😏
A tabbed notepad software with scripting support (C#; for manipulating a file contents).
The main window containing text while editing this article
The script runner window with a template script
The settings dialog
Hi,
For the frustration of trying to get a code signing certificate from the Comodo company I have something to say 😠
I decided to try and find a reasonable priced code signing certificate authorities (“low budget for a not a wealthy person”) and the solution from there (Comodo) seemed reasonable enough.
The rant begins 💦
So now and not very soon to be fixed you are going to cope with this:
And the second one:
Well – I’m not spreading any viruses here – but I can’t / won’t do this ridiculous notarizing with extra costs (💸)!
PS. The home “infrastructure” is behind a double firewall and all the PC‘s are protected with an antivirus software depending of the OS they using and all computers are behind a NAT.
If any of you have an idea of an easier code signing certificate, please do not hesitate to contact me via email 📧
Have fun again Br. not a certified individual 😅
Hi,
I released these libraries for the ScintillaNET to help with lexer definitions and visualization.
The first:
A class library containing lexer definitions for the ScintillaNET.
The second:
VPKSoft.ScintillaTabbedTextControl
A tabbed control for ScintillaNET to display multiple documents.
Have fun and happy new year and here is the link to the misc libraries section!
Hi,
I released a simple C# code generator called XMLLexerRead for the ScintillaNET to help to generate a lexer from the famous Notepad++‘ language definition files.
This is just a tool so I’m not going to write any other article about the software, but do enjoy!
Hi,
I released an update to the amp# software to version v.1.1.0.0 🙂
Have fun again 🎵
Some randomization utilities which includes biased randomization, weighted randomization and some extensions for double randomization for the Random class.
Download
A class library containing lexer definitions for the ScintillaNET.
Download
A tabbed control for ScintillaNET to display multiple documents.
Screenshot
Download
A spell checking library for the ScintillaNET.
Screenshot
Download
A simple plain text search and replace library.
Screenshot in use with the ScriptNotepad software
Download
Add print functionality to ScintillaNET.
Screenshot with the ScriptNotepad software
Download
An utility for an application to check if a newer version of the application exists. You can also maintain your own releases within the web site.
The VersionMaintenance software
Download
A library to detect URLs with the ScintillaNET control.
The TestApp
Download
A library to print RichTextBox contents from a Windows Forms application.
Download
A spell checking interface for both real-time and postponed spell checking using the fantastic WeCantSpell: Hunspell class library.
Screenshot
Download
An (library) utility to access Windows (SMB/CIFS) shares with credentials.
private void Test()
{
try // an error might occur..
{
// IDisposable so using..
using (UNCLogin share1 = new UNCLogin(@"\\server1\share1",
new System.Net.NetworkCredential("username1", "password1", "domain1")))
{
// IDisposable so using..
using (UNCLogin share2 =
new UNCLogin(@"\\server2\share2", new System.Net.NetworkCredential("username2", "password2", "domain2")))
{
// a normal file operation with the given credentials.
File.Copy(@"\\server1\share1\somefile.dat", @"\\server2\share2\somefile.dat");
}
}
}
catch (Exception ex)
{
// show the error message..
MessageBox.Show(ex.Message);
}
}