Send Notepad-plus-plus mailing list submissions to
[email protected]
To subscribe or unsubscribe via the World Wide Web, visit
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus
or, via email, send a message with subject or body 'help' to
[email protected]
You can reach the person managing the list at
[email protected]
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Notepad-plus-plus digest..."
Today's Topics:
1. [notepad-plus - Plugin Development] Reading content of Npp
using WM_GETTEXT (SourceForge.net)
2. [notepad-plus - Plugin Development] RE: Reading content of
Npp using WM_GETTEXT (SourceForge.net)
3. [notepad-plus - Open Discussion] RE: Bug when opening from
"Recent Files" list (SourceForge.net)
4. [notepad-plus - Open Discussion] RE: Bug when opening from
"Recent Files" list (SourceForge.net)
5. [notepad-plus - Open Discussion] RE: Bug when opening from
"Recent Files" list (SourceForge.net)
6. [notepad-plus - Plugin Development] RE: Reading content of
Npp using WM_GETTEXT (SourceForge.net)
7. [notepad-plus - Help] RE: Api for PHP (SourceForge.net)
8. [notepad-plus - Help] RE: NP++ 5.1.2 crashes (SourceForge.net)
9. [notepad-plus - Help] RE: NP++ 5.1.2 crashes (SourceForge.net)
----------------------------------------------------------------------
Message: 1
Date: Sat, 20 Dec 2008 16:23:38 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development]
Reading content of Npp using WM_GETTEXT
To: [email protected]
Message-ID: <[email protected]>
Content-Type: text/plain; charset="UTF-8"
Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=5851631
By: relatte
Hey,
I'm intented to write a simple tool for making some of my taksks easier :).
Therefore I need to get the content of the file im actually editing in Npp.
So far, everything works... I'm able to find the correct handle etc. but
unfortunately, the Npp "textbox" doesnt behave like a normal windows editbox.
If I try to read the text, I only get garbage in my destination string. If
there's
only 1 letter in the Npp window, it is captured correctly but if there are more,
something goes wrong and I get "????...". Strangely Spy++ shows the correct
string but in my external application it seems to be handled in a different way.
I tried it with VisualBasic 6.0 and C (Codeblocks). The function itself works
since its able to to read other text boxes
Does Npp (I'm using the ANSI version) use any special format for the box or
does anyone have an idea how to fix this?
Thanks in advance! :).
Best regards,
Andr?
______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=482781
------------------------------
Message: 2
Date: Sat, 20 Dec 2008 16:53:46 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
Reading content of Npp using WM_GETTEXT
To: [email protected]
Message-ID: <[email protected]>
Content-Type: text/plain; charset="UTF-8"
Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=5851758
By: alexiljin
http://www.scintilla.org/ScintillaDoc.html
______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=482781
------------------------------
Message: 3
Date: Sat, 20 Dec 2008 17:15:26 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Bug
when opening from "Recent Files" list
To: [email protected]
Message-ID: <[email protected]>
Content-Type: text/plain; charset="UTF-8"
Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=5851852
By: m-a-r-k
For me it is the last file I used at the top of the list. Click on it and
nothing
happens.
I have it configured for 25 files.
It has been like this for some time.
I mentioned it way back but it was ignored so I got used to it.
Mark
______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=331753
------------------------------
Message: 4
Date: Sat, 20 Dec 2008 17:39:18 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Bug
when opening from "Recent Files" list
To: [email protected]
Message-ID: <[email protected]>
Content-Type: text/plain; charset="UTF-8"
Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=5851953
By: harrybharry
Does the filename contain any special characters such as ? or ? etc? That
could be the problem
______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=331753
------------------------------
Message: 5
Date: Sat, 20 Dec 2008 19:03:38 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: Bug
when opening from "Recent Files" list
To: [email protected]
Message-ID: <[email protected]>
Content-Type: text/plain; charset="UTF-8"
Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=5852287
By: donho
Tested with my v5.1.2, works perfectly (even with the Chinese Unicode file
path).
Don
______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=331753
------------------------------
Message: 6
Date: Sat, 20 Dec 2008 19:58:02 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
Reading content of Npp using WM_GETTEXT
To: [email protected]
Message-ID: <[email protected]>
Content-Type: text/plain; charset="UTF-8"
Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=5852475
By: relatte
Hmm, thanks for your answer... found SCI_GETCHARAT there. It works, if I read
the content byte-by-byte using that command but that CANT be the solution.
Especially
as there is no equivalent for adding text to the npp window.
Any other ideas?
Best regards,
Andr?
______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=482781
------------------------------
Message: 7
Date: Sat, 20 Dec 2008 22:51:48 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Api for PHP
To: [email protected]
Message-ID: <[email protected]>
Content-Type: text/plain; charset="UTF-8"
Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=5853184
By: ilikebigbutts
Developer Don, aren't you interested in this major problem? I think, if this
feature is implemented, it should be done the right way :)
______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=331754
------------------------------
Message: 8
Date: Sat, 20 Dec 2008 22:52:43 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: NP++ 5.1.2
crashes
To: [email protected]
Message-ID: <[email protected]>
Content-Type: text/plain; charset="UTF-8"
Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=5853187
By: ilikebigbutts
I have it too, when I open, edit and SAVE a userscript of firefox/greasemonkey!
______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=331754
------------------------------
Message: 9
Date: Sat, 20 Dec 2008 22:55:50 +0000
From: "SourceForge.net" <[email protected]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: NP++ 5.1.2
crashes
To: [email protected]
Message-ID: <[email protected]>
Content-Type: text/plain; charset="UTF-8"
Read and respond to this message at:
https://sourceforge.net/forum/message.php?msg_id=5853208
By: ilikebigbutts
screen:
http://img239.imageshack.us/my.php?image=zwischenablage02gl2.jpg
______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit:
https://sourceforge.net/forum/unmonitor.php?forum_id=331754
------------------------------
------------------------------------------------------------------------------
------------------------------
_______________________________________________
Notepad-plus-plus mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus
End of Notepad-plus-plus Digest, Vol 31, Issue 44
*************************************************