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] RE: Plug-in   templates for
      other langs (Delphi (SourceForge.net)
   2. [notepad-plus - Open Discussion] RE: Multi-line
      Search&Replace feature (SourceForge.net)
   3. [notepad-plus - Plugin Development] RE: Plugin:   Highlight
      (SourceForge.net)
   4. [notepad-plus - Open Discussion] RE: Wishlist     for 4.1
      (SourceForge.net)
   5. [notepad-plus - Plugin Development] Show  extensions?
      (SourceForge.net)
   6. [notepad-plus - Plugin Development] RE: Plug-in   templates for
      other langs (Delphi (SourceForge.net)
   7. [notepad-plus - Open Discussion] File Templates (SourceForge.net)
   8. [notepad-plus - Help] save Document almost with   ending .txt
      (SourceForge.net)
   9. [notepad-plus - Help] RE: save Document almost    with ending
      .txt (SourceForge.net)
  10. [notepad-plus - Plugin Development] RE: Show      extensions?
      (SourceForge.net)
  11. [notepad-plus - Open Discussion] RE: Wishlist     for 4.1
      (SourceForge.net)
  12. [notepad-plus - Help] RE: Red brackets (SourceForge.net)
  13. [notepad-plus - Plugin Development]       Spell-Checker plugin
      available (SourceForge.net)


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

Message: 1
Date: Tue, 13 Mar 2007 07:12:25 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        Plug-in templates for other langs (Delphi
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=4205935
By: nobody

I just posted a working example to this forum, but if it is any help, I had
the same difficulty until I changed the procedure definitions from stdcall to
cdecl.  It all worked after that.  Just in case, here's a trivial working
example.

library DllEntry;
uses
   SysUtils,
   Windows,
   Dialogs,
   Classes;

type

   NppData = record
      _nppHandle : HWND;
      _scintillaMainHandle : HWND;
      _scintillaSecondHandle : HWND;
   end;

   TProc = procedure; cdecl;

   FuncItem = record
      _itemName:array[0..63] of char;
      _pFunc : TProc;
      _cmdID : integer;
      _init2Check : integer;
      _PShKey : pointer;
   end;

var
   LocalNppData : NppData;
   FI : array[0..1] of FuncItem;

procedure MyProc; cdecl;
begin
   ShowMessage('MyProc');
end;

procedure DLLEntryPoint(dwReason: DWord);
begin
   case dwReason of
      DLL_PROCESS_ATTACH:
      begin
       //ShowMessage('Attaching to process');
       FillChar(FI[0],sizeof(FuncItem),0);
       FI[0]._pFunc := MyProc;
       strcopy(FI[0]._itemName,'MyProc');
       FI[0]._init2Check := 0;
       FI[0]._PShKey := nil;
       FillChar(FI[1],sizeof(FuncItem),0);
       FI[1]._pFunc := MyProc;
       strcopy(FI[1]._itemName,'MyProc2');
       FI[1]._init2Check := 1;
       FI[1]._PShKey := nil;
      end;
      DLL_PROCESS_DETACH: begin end;
      DLL_THREAD_ATTACH: MessageBeep(0);
      DLL_THREAD_DETACH: MessageBeep(0);
   end;
end;

procedure setInfo(NotePadPlusData : NppData);cdecl;      // Needs struct
nppdata
begin
   ShowMessage('setInfo');
   LocalNppData := NotePadPlusData;
end;

function getName:PChar; cdecl;
begin
   ShowMessage('getName');
   Result := 'My Test Plug-in';
end;

function getFuncsArray(var nFuncs:integer):Pointer;cdecl;
begin
  ShowMessage('getFuncsArray');
  nFuncs := 2;
  Result := @FI;
end;

procedure beNotified; cdecl;
begin
end;

function messageProc(p1,p2:integer;p3:pointer): integer; cdecl;
begin
   Result := 0;
end;

exports
   setInfo,
   getName,
   getFuncsArray,
   beNotified,
   messageProc;
begin
   { First, assign the procedure to the DLLProc variable }
   DllProc := @DLLEntryPoint;
   { Now invoke the procedure to reflect that the DLL is attaching to the
   process }
   DLLEntryPoint(DLL_PROCESS_ATTACH);
end.



______________________________________________________________________
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: Tue, 13 Mar 2007 07:15:03 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Multi-line      Search&Replace feature
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=4205937
By: nobody

Nice hint, Thanks. However, this CTRL-R dialog looks quite geeky. A simple 
multi-line
Dialog in Find&Replace would still be great.


______________________________________________________________________
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: 3
Date: Tue, 13 Mar 2007 07:49:03 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        Plugin: Highlight
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=4205993
By: nobody

Hello, very good idea but...
What append in a code source .asp
with html+javascript+vbscript, like in my project 'lutin' on accessibility ?
How define 3 or more language in one file ?
By, Philippe.



______________________________________________________________________
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: 4
Date: Tue, 13 Mar 2007 08:28:36 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Wishlist        for 4.1
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=4206062
By: nobody

Hi,
there is an option i'd like to see:
When you check the option "remember current session", notepad++ loads last 
opened
files, even if you don't open a new file with the command line.

I preferred old behaviour, when notepad++ loaded last opened files when you
load it without any specific file.
And if you loaded notepad++ with a specific file, it was opening only this file.
I'd like to see an option for that, but maybe nobody shares my mind ? :/ 
Ludo

______________________________________________________________________
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: Tue, 13 Mar 2007 08:29:44 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] Show
        extensions?
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=4206067
By: nobody

Is there a way to get the Explorer to show file extensions?

______________________________________________________________________
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: Tue, 13 Mar 2007 08:42:01 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        Plug-in templates for other langs (Delphi
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=4206098
By: vor0nwe

Thanks for posting your solution!  I'd dropped the thing since I couldn't get
it to work quickly enough and didn't have more time back then.  I'll try it
out in the course of the next month(s); and see if I can get mine to work.

______________________________________________________________________
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: Tue, 13 Mar 2007 10:00:15 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] File
        Templates
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=4206229
By: nobody

I would like a feature to pick template of C, PHP, HTML, ASP, CSS, etc from
the menu bar.  Not snippets per say.

Say I open a HTML file.  It opens an there is code for comments and a basic
HTML, head, title, body tage with closing brackets too.


--MOLOKO--

______________________________________________________________________
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: 8
Date: Tue, 13 Mar 2007 13:58:39 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] save Document
        almost with     ending .txt
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=4206589
By: nobody

How can i save text almost with ending .txt?
I almost had to write the Ending .txt, its boring me.
Is there a regestry setting? Or whats wrong?

thanks.

______________________________________________________________________
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: Tue, 13 Mar 2007 15:27:02 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: save Document
        almost  with ending .txt
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=4206663
By: umutbesler

I have made a customization on the code and set .txt as default extension.
you can use this. This is customized v4.0.2. First update to v4.0.2, then 
replace
the exe file.

http://www.umutbesler.com/download/notepad++.rar

I don't know c++ much, i can only do this :)
Hopely it works for you.

______________________________________________________________________
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: 10
Date: Tue, 13 Mar 2007 15:54:50 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        Show    extensions?
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=4206694
By: jenslorenz

Resize the border of Notepad and you will see, there is second column called
"Ext". If you want to attach the extensions to the name, have a look into the
options dialog of explorer plugin.

For further questions look into forums:

http://sourceforge.net/projects/npp-plugins/


Best Regards
Jens

______________________________________________________________________
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: 11
Date: Tue, 13 Mar 2007 16:08:29 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
        Wishlist        for 4.1
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=4206706
By: jenslorenz

There is an option in preferences dialog. Go into menu
"Preferences...->MISC->Remember Session"

Best Regards
Jens

______________________________________________________________________
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: 12
Date: Tue, 13 Mar 2007 16:14:44 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Red brackets
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=4206708
By: nobody

How can I make all my open and close brackets red so I can see my section of
code?

______________________________________________________________________
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: 13
Date: Tue, 13 Mar 2007 16:14:56 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development]
        Spell-Checker plugin available
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=4206709
By: jenslorenz

Hello Notepad++ User,

I finished a new spell check plug-in to find your typos ;). This plug-in is
based on GNU Aspell. More informations are available on installation of plug-in.

Download the plug-in here:

http://sourceforge.net/projects/npp-plugins/

Best Regards
Jens

______________________________________________________________________
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



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

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV

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

_______________________________________________
Notepad-plus-plus mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus


End of Notepad-plus-plus Digest, Vol 10, Issue 30
*************************************************

Reply via email to