Hello,
I have developed a plugin for Notepad++ using PB
The plugin allows you to automatically create backups of all open files if the text has changed (using a timer schedule)
I call it "Autosave2" but actually it is more are Autobackup rather than a Autosave.
I'd be interested in opinions ...
Search found 14 matches
- Sat Apr 20, 2013 4:38 pm
- Forum: Announcement
- Topic: Notpad++ plugin : Autosave2
- Replies: 0
- Views: 1907
- Mon Apr 08, 2013 5:11 pm
- Forum: Coding Questions
- Topic: add timer to DLL
- Replies: 6
- Views: 1172
Re: add timer to DLL
yes, right... Notepad++ / Scintilla have window handles...so maybe I can use them.
Thank you for the hint
Heinz
Thank you for the hint
Heinz
- Sun Apr 07, 2013 6:26 pm
- Forum: Coding Questions
- Topic: add timer to DLL
- Replies: 6
- Views: 1172
Re: add timer to DLL
OK... the description here http://msdn.microsoft.com/de-de/library ... s.85).aspx says that hwnd parameter is optional...so will try it...
thank you
thank you
- Sun Apr 07, 2013 5:04 pm
- Forum: Coding Questions
- Topic: add timer to DLL
- Replies: 6
- Views: 1172
add timer to DLL
Hello,
I need to add a timer to a DLL.
This DLL will be used as a plugin for Notepad++.
It seems that the PB timer must be bound to a window...but my DLL has no window.
So what would be the best approach?
-add a window (plus timer) and hide the window
-other options ...?
thanks
Heinz
I need to add a timer to a DLL.
This DLL will be used as a plugin for Notepad++.
It seems that the PB timer must be bound to a window...but my DLL has no window.
So what would be the best approach?
-add a window (plus timer) and hide the window
-other options ...?
thanks
Heinz
- Wed Apr 03, 2013 4:35 pm
- Forum: Announcement
- Topic: Notepad++ plugin - LinefilterPosted: Mon Apr 01, 2013 7:27 p
- Replies: 4
- Views: 2633
Re: Notepad++ plugin - LinefilterPosted: Mon Apr 01, 2013 7:
thank you for the information.Tenaja wrote:Seems to be a bug with a split screen.
I will try to fix it
- Wed Apr 03, 2013 3:35 pm
- Forum: Announcement
- Topic: Notepad++ plugin - LinefilterPosted: Mon Apr 01, 2013 7:27 p
- Replies: 4
- Views: 2633
Re: Notepad++ plugin - LinefilterPosted: Mon Apr 01, 2013 7:
Just today I have add RegEx support, so maybe you could use a Regual expression to filter columns
For example if you have this data:
111 222 333
111 222 333
222 111 333
111 333 222
bal bal bla
xxxxxxxxxxxx
If there are 4 spaces between the columns then the following RegEx will find only the "222 ...
For example if you have this data:
111 222 333
111 222 333
222 111 333
111 333 222
bal bal bla
xxxxxxxxxxxx
If there are 4 spaces between the columns then the following RegEx will find only the "222 ...
- Tue Apr 02, 2013 6:38 pm
- Forum: Announcement
- Topic: Notepad++ plugin - LinefilterPosted: Mon Apr 01, 2013 7:27 p
- Replies: 4
- Views: 2633
Notepad++ plugin - LinefilterPosted: Mon Apr 01, 2013 7:27 p
Hello,
I have developed a plugin for Notepad++ using PB
The plugin allows you to filter a text for a search string and as result only lines containing the search string will be displayed.
I'd be interested in opinions about the plugin...bugs..problems..feature ideas
So if someone is interested ...
I have developed a plugin for Notepad++ using PB
The plugin allows you to filter a text for a search string and as result only lines containing the search string will be displayed.
I'd be interested in opinions about the plugin...bugs..problems..feature ideas
So if someone is interested ...
- Mon Apr 01, 2013 7:27 pm
- Forum: Off Topic
- Topic: Beta tester for Notepad++ plugin - Linefilter
- Replies: 0
- Views: 528
Beta tester for Notepad++ plugin - Linefilter
Hello,
I have developed a plugin for Notepad++ using PB
The plugin allows you to filter a text for a search string and as result only lines containing the search string will be displayed.
I'd be interested in opinions about the plugin...bugs..problems..feature ideas
So if someone is interested ...
I have developed a plugin for Notepad++ using PB
The plugin allows you to filter a text for a search string and as result only lines containing the search string will be displayed.
I'd be interested in opinions about the plugin...bugs..problems..feature ideas
So if someone is interested ...
- Mon Apr 01, 2013 3:40 pm
- Forum: Coding Questions
- Topic: Problem adding icon to Notepad++
- Replies: 5
- Views: 1816
Re: Problem adding icon to Notepad++
I think how it is stored or loaded probably doesn't matter
Just 30 minutes ago I was able to add an icon :-)
What I did was that I now use a Resourcefile (.RC) to add the icon to the .DLL (the plugin)
Once the plugin starts it reads the icon basically from itself...
But I would prefer to use ...
Just 30 minutes ago I was able to add an icon :-)
What I did was that I now use a Resourcefile (.RC) to add the icon to the .DLL (the plugin)
Once the plugin starts it reads the icon basically from itself...
But I would prefer to use ...
- Sun Mar 31, 2013 8:02 pm
- Forum: Coding Questions
- Topic: Problem adding icon to Notepad++
- Replies: 5
- Views: 1816
Re: Problem adding icon to Notepad++
perhaps the code function is not quite right.
Well, yes this is possible.
Maybe I need to use LoadImage_ and MAKEINTRESOURCE ?
All C++ Snippets that I can find regarding this problem use MAKEINTRESOURCE , for example:
g_TBWndMgr.hToolbarBmp = (HBITMAP)::LoadImage( (HINSTANCE)g_hInstance ...
Well, yes this is possible.
Maybe I need to use LoadImage_ and MAKEINTRESOURCE ?
All C++ Snippets that I can find regarding this problem use MAKEINTRESOURCE , for example:
g_TBWndMgr.hToolbarBmp = (HBITMAP)::LoadImage( (HINSTANCE)g_hInstance ...
- Fri Mar 29, 2013 7:59 am
- Forum: Coding Questions
- Topic: Problem adding icon to Notepad++
- Replies: 5
- Views: 1816
Problem adding icon to Notepad++
Hello,
as part of an attempt to write a simple plugin for Notepad++ I want to add a new icon to the Notepad++ toolbar
For doing so I need to call sendMessage_ with the correct paramters are described here in this C snippet:
g_TBWndMgr.hToolbarBmp = (HBITMAP)::LoadImage( (HINSTANCE)g_hInstance ...
as part of an attempt to write a simple plugin for Notepad++ I want to add a new icon to the Notepad++ toolbar
For doing so I need to call sendMessage_ with the correct paramters are described here in this C snippet:
g_TBWndMgr.hToolbarBmp = (HBITMAP)::LoadImage( (HINSTANCE)g_hInstance ...
- Thu Mar 28, 2013 11:28 am
- Forum: Coding Questions
- Topic: Need help with messaging/notifications with Scintilla/Notepa
- Replies: 2
- Views: 1057
Re: Need help with messaging/notifications with Scintilla/No
thank you - this has helped me a lot
- Wed Mar 27, 2013 6:29 pm
- Forum: Coding Questions
- Topic: Need help with messaging/notifications with Scintilla/Notepa
- Replies: 2
- Views: 1057
Need help with messaging/notifications with Scintilla/Notepa
Hello,
I plan to developed a simple plugin for Notepad++ and I wonder how I could add an icon to Notepadd++ to start the plugin.
I know that I need to use the „beNotified“ procedure for this and catch a certain notification there before I can add my icon.
To the "beNotified" procedure Notepad ...
I plan to developed a simple plugin for Notepad++ and I wonder how I could add an icon to Notepadd++ to start the plugin.
I know that I need to use the „beNotified“ procedure for this and catch a certain notification there before I can add my icon.
To the "beNotified" procedure Notepad ...
- Sat Feb 25, 2012 9:03 am
- Forum: Windows
- Topic: Change printerproperties permanently
- Replies: 1
- Views: 1150
Change printerproperties permanently
Hi,
I'm looking for a way to display the printerproperties dialog and save changes to the properties (Duplex, papersize, orientation etc.) permanently.
So changes will be maintained also on the reboot of the PC
I've found some code here http://www.purebasic.fr/english/viewtopic.php?p=169814 , but ...
I'm looking for a way to display the printerproperties dialog and save changes to the properties (Duplex, papersize, orientation etc.) permanently.
So changes will be maintained also on the reboot of the PC
I've found some code here http://www.purebasic.fr/english/viewtopic.php?p=169814 , but ...