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 - Help] RE: Notepad++ 4.5 crashes   on "Save" and
      "Save (SourceForge.net)
   2. [notepad-plus - Help] RE: User-Defined Syntax -   Escaped
      Double-Quot (SourceForge.net)
   3. [notepad-plus - Help] RE: help with reg   expression
      (SourceForge.net)
   4. [notepad-plus - Help] Alternative way using       regular
      expression (SourceForge.net)
   5. [notepad-plus - Open Discussion] RE: U3 tech (SourceForge.net)
   6. [notepad-plus - Open Discussion] RE: U3 tech (SourceForge.net)
   7. [notepad-plus - Help] RE: Notepad++ 4.5 crashes   on "Save" and
      "Save (SourceForge.net)
   8. [notepad-plus - Help] RE: Notepad++ 4.5 crashes   on "Save" and
      "Save (SourceForge.net)
   9. [notepad-plus - Help] RE: Notepad++ 4.5 crashes   on "Save" and
      "Save (SourceForge.net)
  10. [notepad-plus - Help] RE: Notepad++ 4.5 crashes   on "Save" and
      "Save (SourceForge.net)
  11. [notepad-plus - Help] RE: Notepad++ 4.5 crashes   on "Save" and
      "Save (SourceForge.net)
  12. [notepad-plus - Help] RE: Notepad++ 4.5 crashes   on "Save" and
      "Save (SourceForge.net)


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

Message: 1
Date: Sat, 03 Nov 2007 08:32:19 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Notepad++ 4.5
        crashes on "Save" and "Save
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=4603434
By: sysyphos

 I tried again with the nppSecondTry.zip .  Below's my savelog.txt.


----------

1.0 doSaveDlg
3.2 Problem : uMsg == 48
2.0 WM_INITDIALOG
2.1 after goToCenter(hFileDlg);
2.3 after oldProc = (WNDPROC)::SetWindowLong(hFileDlg, GWL_WNDPROC,
(LONG)fileDlgProc);
2.4 oldProc == 2118378815
1.1 After ::GetSaveFileName(&_ofn)?_fileName:NULL;


----------


      Joseph

______________________________________________________________________
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: Sat, 03 Nov 2007 10:00:50 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: User-Defined
        Syntax -        Escaped Double-Quot
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=4603520
By: nobody

Bump. I am also looking for a way to solve this problem.
If there is an odd number of quotes within a pair of quotes, it will mess up
highlighting for the rest of the file.
Example:
This is haskell. Split takes two strings. Here, one is defined as "<a href=\""
and the other is previously defined as doc.

split "<a href=\"" doc

The highlighting shows "<a href=\" as a string and " doc...{rest of file} as
a string as well.
Can it be made to ignor escaped quotes?

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: 3
Date: Sat, 03 Nov 2007 12:20:41 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: help with reg
        expression
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=4603630
By: nobody

Use CTRL+R Find/Replace Dialog.
In the Find field: type \ and press CTRL+M.
In the Replace field: type ", press CTRL+M and type another ".
Execute this for the complete document.

Manually correct the first and last line.

You don't have to check regular expression. This is just a normal search and
replace.


______________________________________________________________________
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: Sat, 03 Nov 2007 12:43:06 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] Alternative way
        using   regular expression
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=4603648
By: nobody

See also http://sourceforge.net/forum/forum.php?thread_id=1846744&forum_id=33175
3

Move the cursor to the top of the file.
Press CTRL+R to use the advanced Find/Replace Dialog using the following regular
expression in the Find field:
^(.+)\\$
 
Use the following expression in the Replace field:
"\1"
 
Check the Regular Expression checkbox, uncheck the Selection (NR) and Wrap
checkbox.
 
Press Find button. 
Press Replace&FindAgain button. 

Use a double backslash for a single backslash in regular expression mode.
 
The \1 indicates the found word (the complete filepath without the last 
backslash).
It will be surrounded by double quotes.

You could even enter the driveletter between the parentheses to distinguish
between different drives:
^(C.+)\\$

or more elaborate:
^(C:\\.+)\\$

Notice again that a double blackslash is used to find a single backslash in
regex mode.


______________________________________________________________________
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: 5
Date: Sat, 03 Nov 2007 12:46:00 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: U3
        tech
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=4603651
By: nobody

Wow, you are SO positive!!!

That's why I can't understand YOU don't do the job yourself.


______________________________________________________________________
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, 03 Nov 2007 14:40:19 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE: U3
        tech
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=4603774
By: nobody

he didn?t have view seconds to code,  ... it?s sooooo easy!  :)))

______________________________________________________________________
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: 7
Date: Sat, 03 Nov 2007 15:13:42 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Notepad++ 4.5
        crashes on "Save" and "Save
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=4603806
By: donho

It means nppSecondTry didn't crash this time?

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



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

Message: 8
Date: Sat, 03 Nov 2007 15:35:37 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Notepad++ 4.5
        crashes on "Save" and "Save
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=4603826
By: sysyphos

 No, no.  It did indeed crash this time.  Sorry I didn't note that.  Guess I
thought it was understood it would.  Sorry.


    Joseph

______________________________________________________________________
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, 03 Nov 2007 15:43:13 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Notepad++ 4.5
        crashes on "Save" and "Save
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=4603834
By: sysyphos

 Opps!  Here's the resulting log file, after running nppSecondTry the second
time.


----------

1.0 doSaveDlg
3.2 Problem : uMsg == 48
2.0 WM_INITDIALOG
2.1 after goToCenter(hFileDlg);
2.3 after oldProc = (WNDPROC)::SetWindowLong(hFileDlg, GWL_WNDPROC,
(LONG)fileDlgProc);
2.4 oldProc == -63221


----------


     Joseph

______________________________________________________________________
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: Sat, 03 Nov 2007 16:05:26 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Notepad++ 4.5
        crashes on "Save" and "Save
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=4603846
By: donho

If the tracker write :
1.1 After ::GetSaveFileName(&_ofn)?_fileName:NULL;
it means that save dialog is launched and determinated without problem. 
That's why I ask you if it didn't crash.
Could you remove savelog.txt then tested nppSecondTry again?

For the other people who have the same crash issue :
I can not do the fix only based on Joseph's result.
So please test nppSecondTry and post the result, if you want the problem get
fixed.

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



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

Message: 11
Date: Sat, 03 Nov 2007 16:16:26 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Notepad++ 4.5
        crashes on "Save" and "Save
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=4603859
By: sysyphos

 Here's the result I got just a moment ago.  I had also first removed the 
previous
saved log file.


----------

1.0 doSaveDlg
3.2 Problem : uMsg == 48
2.0 WM_INITDIALOG
2.1 after goToCenter(hFileDlg);
2.3 after oldProc = (WNDPROC)::SetWindowLong(hFileDlg, GWL_WNDPROC,
(LONG)fileDlgProc);
2.4 oldProc == -63187


----------

 About an hour ago I sent a msg to Ke3pup to try the nppSecondTry as perhaps
he's stop monitoring the issue?  Anyways, I'll quote you to him in a moment.


     Joseph

______________________________________________________________________
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: 12
Date: Sat, 03 Nov 2007 16:30:42 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: Notepad++ 4.5
        crashes on "Save" and "Save
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=4603870
By: sysyphos

 I just sent again the below to Ke3pup...as perhaps he's stopping monitoring
the issue or .. it's the weekend???  Hopefully he'll reply soon.  And some
others?


     Joseph




----------

From:   "Sysyphos" <[EMAIL PROTECTED]> 


        

To:     [EMAIL PROTECTED]

        

Cc:     [EMAIL PROTECTED]

        

Subject:        RE: Notepad++ 4.5 crashes on "Save", etc

        

Date:   Sat 3/11/07 07:19 PM

        

 





Message body follows:

RE: Notepad++ 4.5 crashes on "Save" and "Save (New)
By: Don HO (donho) - 2007-11-03 19:05 
If the tracker write : 
1.1 After ::GetSaveFileName(&_ofn)?_fileName:NULL; 
it means that save dialog is launched and determinated 
without problem.  
That's why I ask you if it didn't crash. 
Could you remove savelog.txt then tested nppSecondTry 
again? 
 
For the other people who have the same crash issue : 
I can not do the fix only based on Joseph's result. 
So please test nppSecondTry and post the result, if you 
want the problem get fixed. 
 
Don 



RE: Notepad++ 4.5 crashes on "Save" and "Save (New)
By: Sysyphos (sysyphos) - 2007-11-03 19:16 
Here's the result I got just a moment ago. I had also first 
removed the previous saved log file. 
 
 
---------- 
 
1.0 doSaveDlg 
3.2 Problem : uMsg == 48 
2.0 WM_INITDIALOG 
2.1 after goToCenter(hFileDlg); 
2.3 after oldProc = (WNDPROC)::SetWindowLong(hFileDlg, 
GWL_WNDPROC, (LONG)fileDlgProc); 
2.4 oldProc == -63187 
 
 
---------- 
 
About an hour ago I sent a msg to Ke3pup to try the 
nppSecondTry as perhaps he's stop monitoring the issue? 
Anyways, I'll quote you to him in a moment. 
 
 
Joseph

--
This message has been sent to you, a registered SourceForge.net user,
by another site user, through the SourceForge.net site.  This message
has been delivered to your SourceForge.net mail alias.  You may reply
to this message using the "Reply" feature of your email client, or
using the messaging facility of SourceForge.net at:
https://sourceforge.net/sendmessage.php?touser=1926417



______________________________________________________________________
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



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

-------------------------------------------------------------------------
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
Notepad-plus-plus@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/notepad-plus-plus


End of Notepad-plus-plus Digest, Vol 18, Issue 14
*************************************************

Reply via email to