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 - Help] customize (SourceForge.net)
   2. [notepad-plus - Help] RE: Searching in macros (SourceForge.net)
   3. [notepad-plus - Plugin Development] RE: NppExec   Suggestion
      (SourceForge.net)
   4. [notepad-plus - Plugin Development] Plugin        fails to load
      (SourceForge.net)
   5. [notepad-plus - Help] RE: TIP: Run external       command and keep
      shell (SourceForge.net)
   6. [notepad-plus - Plugin Development] RE: Plugin    fails to load
      (SourceForge.net)
   7. [notepad-plus - Open Discussion] Move then        arrows did
      trick... (SourceForge.net)
   8. [notepad-plus - Open Discussion] Could it run     in Windows CE?
      (SourceForge.net)
   9. [notepad-plus - Plugin Development] Plugin        Development
      Template (SourceForge.net)


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

Message: 1
Date: Fri, 10 Aug 2007 11:42:58 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] customize
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=4459027
By: nobody

-customize menubar and toolbar

______________________________________________________________________
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: 2
Date: Fri, 10 Aug 2007 12:14:44 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Searching in
        macros
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=4459095
By: bullock

The Run Until End of File option doesn't work when the macro deletes the current
line and remains there.  This is due to a bug in NP++, which halts macro 
playback
when

  if ( currLine == _pEditView->getCurrentLineNumber() ) // line no. not
changed?

This condition is too restrictive.  I believe it should instead be

  if (( currLine == _pEditView->getCurrentLineNumber() )        // line no. not
changed?
    && (lastLine <= int(_pEditView->execute(SCI_GETLINECOUNT)) - 1))  // and
no lines removed?

In the meantime, for your case, this seems to work:

(1) Use Ctrl-F to search for "XXX".
(2) Close the Find dialog.
(3) Record keystroke macro: <F3>, <End>, <Home>, <Home>, <Ctrl-Down>, <Del>
(4) Run the macro a fixed number of times.

Regards.
Greg

______________________________________________________________________
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, 10 Aug 2007 13:24:19 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        NppExec Suggestion
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=4459160
By: steakhacher

Should be possible to insert tcl support in nppexec plugin or is it totally
impossible. With tcl it could be possible to access API function without need
of compiling C++.

Thanks for your answer

______________________________________________________________________
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: Fri, 10 Aug 2007 14:16:57 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development]
        Plugin  fails to load
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=4459235
By: nobody

Hi.

I'm trying to make a new plugin for N++. Using 4.1.2. I keep getting the message
"FuncItems array is not set correctly".

I don't know if everybody here uses VS, but I'm compiling with gcc, I'm not
a fan of C++. After struggling for a while, I tried to compile the plugin 
example
instead, NppInsertPlugin.

At first, I was getting undefined references to operators new and delete. I
changed the makefile: gcc -> g++. Compiled without a warning, nut N++ still
kept refusing the plugin. gcc / G++ are 3.4.5.

After that, I stripped the file to bare minimum:

void insertCurrentFullPath()
{
}

BOOL APIENTRY DllMain( HANDLE hModule, 
                       DWORD  reasonForCall, 
                       LPVOID lpReserved )
{
    switch (reasonForCall)
    {
      case DLL_PROCESS_ATTACH:
          {
                  funcItem[0]._pFunc = insertCurrentFullPath;
                  strcpy(funcItem[0]._itemName, "Current Full Path");
                  funcItem[0]._init2Check = false;
                  funcItem[0]._pShKey = NULL;
            }
        break;

      case DLL_PROCESS_DETACH:
        break;

      case DLL_THREAD_ATTACH:
        break;

      case DLL_THREAD_DETACH:
        break;
    }

    return TRUE;
}

extern "C" __declspec(dllexport) void setInfo(NppData notpadPlusData)
{
        nppData = notpadPlusData;
}

extern "C" __declspec(dllexport) const char * getName()
{
        return "name";
}

extern "C" __declspec(dllexport) FuncItem * getFuncsArray(int *nbF)
{
        *nbF = 1;
        return funcItem;
}

extern "C" __declspec(dllexport) void beNotified(SCNotification *notifyCode)
{
}

extern "C" __declspec(dllexport) LRESULT messageProc(UINT Message, WPARAM 
wParam,
LPARAM lParam)
{
        return TRUE;
}



Compiled fine with both gcc and g++. N++ still refuses the plugin with 
"FuncItems
array is not set correctly". Help?


______________________________________________________________________
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, 10 Aug 2007 14:17:13 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: TIP: Run
        external        command and keep shell
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=4459237
By: nobody

Awesome, I have been struggling to get this to work for ages. Try this for a
PHP syntax check:

cmd.exe /k C:\php\php-cgi.exe -l "$(FULL_CURRENT_PATH)"

Obviously you have to download the PHP ZIP file and extract it somewhere, then
change the "C:\php\php-cgi.exe" to the path you extracted it to...

Have fun...

______________________________________________________________________
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: 6
Date: Fri, 10 Aug 2007 14:29:38 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development] RE:
        Plugin  fails to load
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=4459251
By: vor0nwe

Not sure (never written any C/C++), but shouldn't

extern "C" __declspec(dllexport) FuncItem * getFuncsArray(int *nbF)
{
        *nbF = 1;
        return funcItem;
}

do a 

        return funcItem[0];

instead?

______________________________________________________________________
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: Fri, 10 Aug 2007 14:37:21 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Move
        then    arrows did trick...
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=4459263
By: nobody

thanks, all that other stuff is way too techie.  thanks for note on right-click,
left/right/up/down arrows.  i've been suffering for weeks on single monitor
where it was stuck up in top left corner and unaccessible...

______________________________________________________________________
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: Fri, 10 Aug 2007 16:05:46 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Could it
        run     in Windows CE?
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=4459372
By: nobody

Hi, I use a data collector that has windows CE on it to read bar codes.
I just need to generate a txt file where a single line is 1 bar code read.
i.e:
227003310
468109928
326388999
331000000
331000000
331000000

that will be 6 bar codes reads. the problem is that the data collector comes
with the noted to generate this file (actually, the IT guy told me that was
the quickest solution if I didn't want to wait for him to program something
for CE).
and as I said, the problem is that I have to use the notepad. Which after some
hundred lines read, it just stops. I supose it reaches the max character
capacity.

I was wondering if I could use notepad++ con windoes CE, and how can I install
it in the device. The conectcion with XP is made tru activesync and I have 
access
to the device file system (or at least part of it).

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=331753



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

Message: 9
Date: Fri, 10 Aug 2007 16:17:35 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Plugin Development]
        Plugin  Development Template
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=4459384
By: ccigi

I love this program and want to help improve it.  Can you please post an empty
plugin project?  I want to create a file comparison plugin, and would like to
start with a base project instead of the NppInsertPlugin.  The reason is that
the NppInsertPlugin files appear to have some clutter, such as the
getSessionFileNamesDemo() function in NppInsertPlugin.cpp file.  Or.... just
tell me which parts I can throw away when I start a new plugin.  I know c++
programming, but have never done a dll.  Thanks!

ccigi

______________________________________________________________________
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: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/

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

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


End of Notepad-plus-plus Digest, Vol 15, Issue 24
*************************************************

Reply via email to