Send Notepad-plus-plus mailing list submissions to
        notepad-plus-plus@lists.sourceforge.net

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] RE: Simple    Script 1.13
      released. Fixed bugs. (SourceForge.net)
   2. [notepad-plus - Help] Fill Series like in Excel (SourceForge.net)
   3. [notepad-plus - Help] RE: File Associations       stolen: Beyond
      Irritati (SourceForge.net)
   4. [notepad-plus - Plugin Development] RE: New       plugin - CharM
      (Character Map) upload (SourceForge.net)
   5. [notepad-plus - Plugin Development] RE: Simple    Script 1.13
      released. Fixed bugs. (SourceForge.net)
   6. [notepad-plus - Plugin Development]       SFTP_synchronize
      (SourceForge.net)


----------------------------------------------------------------------

Message: 1
Date: Fri, 22 Feb 2008 07:13:28 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        Simple  Script 1.13 released. Fixed bugs.
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=4794431
By: fidvo

Thanks.

I'll have to look into this.  I was considering making the menu function a 
toggle,
but it runs into the same problems as a close button:  How to write a function
to close it.

I'll experiment a little with the SendMessage calls you mentioned above.  I'm
familiar enough with the Delphi versions of the functions that I think I can
translate them easily enough.

Thanks.

fidvo

______________________________________________________________________
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: Fri, 22 Feb 2008 07:25:05 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Fill Series like in
        Excel
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=4794457
By: nobody

Can we fill in the List like we can do in Excel ?

For ex:
If there is following text in a file -

   FILE1   C:\file-misc.txt, r
   FILE3   C:\file-other.txt, rw
   FILE7   C:\file-list.txt, r

Can we (Block) select the 'FILE' above and drag it such that the result will
be like -


   FILE1   C:\file-misc.txt, r
   FILE2   C:\file-other.txt, rw
   FILE3   C:\file-list.txt, r


Thanks in advance

______________________________________________________________________
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: 3
Date: Fri, 22 Feb 2008 07:31:33 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: File
        Associations    stolen: Beyond Irritati
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=4794473
By: nobody

> For the repeted asked question, it's always better to post the link you
found,
> then tell the person that he can search the forums before asking for the next
time.

I disagree. If you point out to someone that he had better searched the forum,
you will encourage him still to do so. If you decide to do all that work for
him, next time he will simply post a question again, because he expects other
people to do his work... Nothing changes then.


______________________________________________________________________
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: 4
Date: Fri, 22 Feb 2008 07:44:43 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        New     plugin - CharM (Character Map) upload
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=4794490
By: vor0nwe

Hi Fidvo,

> I've never used Delphi's WideString type before, so I don't know if it can
even be done,
> but that's the plan at least.

Working with WideString variables themselves is almost as easy as working with
String variables.  However, the Delphi Run-Time Library contains a *lot* of
functions which don't work explicitly with WideStrings.  Sometimes, a function
is overloaded so it works with strings as well as widestrings; sometimes, 
there's
a separate function for widestrings, and sometimes there's no widestring version
of the function at all.

To convert between WideString (which is UTF-16, really) and UTF-8, however,
you'll have to use either the Windows API functions WideCharToMultiByte and
MultiByteToWideChar, using code page 65001; or one of the Unicode conversion
routines available in the Delphi Fundamentals routines:
http://fundementals.sourceforge.net/unicode.html

Delphi seamlessly converts WideString to PWChar (PWideChar) as it does string
to PChar (and vice versa).

Also note, that if you pass a WideString to a String variable, the widestring
will be 'converted' automatically, without any warning, even if it means you'll
be losing information!


> Simple Script: This is a little trickier, because it uses StringLists 
> extensively,
> and I'm not sure if they can work with WideStrings. 

TStringList doesn't support WideStrings.  However, if you include 'use 
WideStrings'
in your unit, you can use TWideStringList, which supports both WideStrings and
regular strings.

> Plus the Script Writer uses a standard Delphi TMemo component, 
> which uses standard Strings.

That can easily be replaced by a TTntMemo, part of the freeware TNT Unicode
controls.  It works exactly the same as a TMemo control, except that it works
with WideStrings.

Good luck,
-- 
Martijn

______________________________________________________________________
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: 5
Date: Fri, 22 Feb 2008 07:48:57 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        Simple  Script 1.13 released. Fixed bugs.
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=4794495
By: zobo

Fidvo.

Check the TNppDockingForm class. This should already be implemented (Show and
Hide). I guess just the override is messed up.

-Zobo

______________________________________________________________________
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: 6
Date: Fri, 22 Feb 2008 07:54:05 -0800
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development]
        SFTP_synchronize
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=4794502
By: nobody

Hello,

Does anyone know if or how it is possible to get FTP_synchronizeA connect to
a SFTP server?
If not is it planned or is there an other plugin that allows me to use
Notepad++ directly with a SFTP server?

Best regards,

GX

______________________________________________________________________
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



------------------------------

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/

------------------------------

_______________________________________________
Notepad-plus-plus mailing list
Notepad-plus-plus@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus


End of Notepad-plus-plus Digest, Vol 21, Issue 76
*************************************************

Reply via email to