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 - Open Discussion] RE: Context Menu wanted
(SourceForge.net)
2. [notepad-plus - Help] RE: A question about Regular Expression
Sear (SourceForge.net)
3. [notepad-plus - Help] How do I build NPP in Mingw?
(SourceForge.net)
4. [notepad-plus - Help] RE: A question about Regular Expression
Sear (SourceForge.net)
5. [notepad-plus - Help] RE: complete language API with syntax
help (SourceForge.net)
6. [notepad-plus - Open Discussion] Bug Report (SourceForge.net)
----------------------------------------------------------------------
Message: 1
Date: Mon, 26 Mar 2007 16:49:06 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] RE:
Context Menu wanted
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=4229156
By: mhuffman
As noted elsewhere on this thread, it is very handy to have a "Edit with
Notepad++"
context menu item when right-clicking on file names. However, 2 problems can
come up when using Notepad++ from a USB device when away from your "main"
Notepad++
installation:
1. You cannot control or predict the drive letter that will be assigned to the
USB device.
2. You may not have permission to patch the HKEY_CLASSES_ROOT hive of the
Registry
on the host machine.
The following batch file determines the drive letter of the batch file and
patches
the equivalent Registry key in the HKEY_CURRENT_USER hive (where all users have
write access). The pause at the end keeps the console window open so you can
see the success or failure message. Note that reg.exe is not available on
Windows
2000. Change the path in the "set NPP=..." line as applicable.
@echo off
REM absolute path to notepad++.exe using drive letter of this batch file
set NPP=%~d0\Util\Notepad++\notepad++.exe
reg add HKCU\Software\Classes\^*\shell\Notepad++ /f /ve /d "Edit with
Notepad++"
reg add HKCU\Software\Classes\^*\shell\Notepad++\command /f /ve /d "%NPP%
""%%1"""
pause
______________________________________________________________________
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: 2
Date: Mon, 26 Mar 2007 17:33:58 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: A question
about Regular Expression Sear
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=4229193
By: jumpfroggy
Normally I'd search for ^\n
^ is beginning of the line, \n is the newline. But for some reason, NPP doesn't
like this (can't find or replace it). No help here.
______________________________________________________________________
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: Mon, 26 Mar 2007 19:23:41 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] How do I build NPP
in Mingw?
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=4229255
By: jumpfroggy
I've got the binary NPP v4.0.2 and I'd love to play around with building it.
I can't figure it out, as the instructions don't mention how to build, and
simply
trying "make" gives errors. I assume the dev's are primarily using Visual
Studio,
so that the gcc side of thing is out of date.
1) The file "readmeFirst.txt" says "To build this package:" and then "For
generating
the executable file, you can use VC++ 7 or MinGW 3.0 / 2.X". No instructions
on how to build. It'd be helpful if it stated "Goto \PowerEditor\gcc, type
make".
2) If I try to "make" in PowerEditor\gcc, then I get this:
In file included from ../src/winmain.cpp:18:
../src/Notepad_plus.h:45:25: RunMacroDlg.h: No such file or directory
In file included from ../src/winmain.cpp:18:
../src/Notepad_plus.h: At global scope:
../src/Notepad_plus.h:357: error: `RunMacroDlg' does not name a type
../src/Notepad_plus.h: In member function `int Notepad_plus::getCurrentView()
const':
../src/Notepad_plus.h:511: error: `MAIN_VIEW' undeclared (first use this
function)
../src/Notepad_plus.h:511: error: `SUB_VIEW' undeclared (first use this
function)
../src/Notepad_plus.h: In member function `int Notepad_plus::getNonCurrentView()
const':
../src/Notepad_plus.h:515: error: `SUB_VIEW' undeclared (first use this
function)
../src/Notepad_plus.h:515: error: `MAIN_VIEW' undeclared (first use this
function)
../src/Notepad_plus.h: In member function `void
Notepad_plus::setDisplayFormat(formatType)':
../src/Notepad_plus.h:547: error: `STATUSBAR_EOF_FORMAT' undeclared (first use
this function)
../src/Notepad_plus.h: In member function `void
Notepad_plus::setUniModeText(UniMode)':
../src/Notepad_plus.h:566: error: `STATUSBAR_UNICODE_TYPE' undeclared (first
use this function)
../src/ScitillaComponent/ScintillaEditView.h: At global scope:
../src/ScitillaComponent/ScintillaEditView.h:430: warning: inline function `void
ScintillaEditView::makeStyle(const char*, const char**)' used but never defined
../src/Parameters.h:134: warning: 'int decStrVal(const char*)' defined but not
used
../src/Parameters.h:138: warning: 'int hexStrVal(const char*)' defined but not
used
../src/Parameters.h:143: warning: 'int getKwClassFromName(const char*)' defined
but not used
../src/ScitillaComponent/UserDefineDialog.h:34: warning: 'int min(int, int)'
defined but not used
../src/ScitillaComponent/UserDefineDialog.h:38: warning: 'int max(int, int)'
defined but not used
../src/Notepad_plus.h:64: warning: 'TiXmlNode* searchDlgNode(TiXmlNode*, const
char*)' declared `static' but never defined
mingw32-make.exe: *** [winmain.o] Error 1
Looks like I'm missing "RunMacroDlg.h". Where can I find it?
3) For fun, going to \scintilla has a "README" which says to goto
\scintilla\win32
and type "make". This gives the following:
dllwrap --add-stdcall-alias --target i386-mingw32 -o ../bin/SciLexer.dll
ScintillaWinL.o ScintillaBaseL.o Editor.o Document.o ContractionState.o
CellBuffer.o
CallTip.o ScintRes.o PlatWin.o KeyMap.o Indicator.o LineMarker.o RESearch.o
Style.o ViewStyle.o AutoComplete.o UniConversion.o KeyWords.o DocumentAccessor.o
PropSet.o ExternalLexer.o StyleContext.o XPM.o LexAda.o LexAPDL.o LexAsm.o
LexAsn1.o
LexAU3.o LexAVE.o LexBaan.o LexBash.o LexBasic.o LexBullant.o LexCaml.o LexCLW.o
LexConf.o LexCPP.o LexCrontab.o LexCsound.o LexCSS.o LexEiffel.o LexErlang.o
LexEScript.o LexFlagship.o LexForth.o LexFortran.o LexGui4Cli.o LexHaskell.o
LexHTML.o LexKix.o LexLisp.o LexLout.o LexLua.o LexMatlab.o LexMetapost.o
LexMMIXAL.o
LexMPT.o LexMSSQL.o LexNsis.o LexOthers.o LexPascal.o LexPB.o LexPerl.o LexPOV.o
LexPS.o LexPython.o LexRebol.o LexRuby.o LexScriptol.o LexSmalltalk.o
LexSpecman.o
LexSQL.o LexTADS3.o LexTeX.o LexVB.o LexVerilog.o LexVHDL.o LexYAML.o -mwindows
-lstdc++ -limm32 -lole32 -luuid -mno-cygwin -s --relocatable
KeyWords.o(.text+0x2d2):KeyWords.cxx: undefined reference to `lmUserDefine'
collect2: ld returned 1 exit status
dllwrap: no export definition file provided.
Creating one, but that may not be what you want
dllwrap: gcc exited with status 1
mingw32-make.exe: *** [../bin/SciLexer.dll] Error 1
Any help is appreciated. 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: 4
Date: Mon, 26 Mar 2007 22:52:01 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: A question
about Regular Expression Sear
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=4229400
By: pshute
There's a plugin to delete blank lines in Plugins/TextFX Edit.
If you want to do it with Find/Replace, have a look
at http://notepad-plus.sourceforge.net/uk/newlineFindReplace-HOWTO.php, but
I haven't tried any of those tips with empty lines. Searching for control+M
control+M in advanced find/replace without regex works sometimes, but not
always.
Not sure why.
______________________________________________________________________
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: Tue, 27 Mar 2007 00:53:05 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Help] RE: complete
language API with syntax help
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=4229522
By: mindplay
Could it be added? I've been looking at the source code, though I'm a PHP
programmer
and not (much of a) C/C++ programmer, and it looks like the auto-complete
functions
in Notepad++ and Scintilla are pretty small and fairly simple.
Since you can use regular expressions, it shouldn't be too much work to have
it ignore anything inside paranthesis during keyword lookup? And then still
have it show up on screen?
The auto-complete feature is not much use in it's current state - remembering
the name of the command is not usually the problem ... remembering which
arguments
it takes, and in what order, on the other hand, usually is...
______________________________________________________________________
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: Tue, 27 Mar 2007 03:47:17 -0700
From: "SourceForge.net" <[EMAIL PROTECTED]>
Subject: [Notepad-plus-plus] [notepad-plus - Open Discussion] Bug
Report
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=4229719
By: nobody
I not found any bugreport threads or e-mails, so post this here:
If you delete in next ruby sript the '#' symbol - NPP crashed.
The script starts here:
out = File.new('out.jobs','w')
out.print <<'EOF'
// VirtualDub job list (Sylia script format)
// This is a program generated file -- edit at your own risk.
//
// $numjobs 8
//
EOF
num = 0
%q/1250 1252 1253 1309 1487 1488 1534 1549/.split.each do |n|
num=num+1
ns = num.to_s
out.puts('// $job "Job '+ns+'"')
out.puts('// $input "F:\DCIM\201CANON\MVI_'+n+'.AVI"')
out.puts('// $output "D:\1\00'+ns+'.avi"')
out.print <<'EOF'
// $state 0
// $start_time 0 0
// $end_time 0 0
// $script
EOF
out.puts('VirtualDub.Open("F:\\DCIM\\201CANON\\MVI_'#{n}.AVI","",0);
out.print <<'EOF'
VirtualDub.RemoveInputStreams();
VirtualDub.stream[0].SetSource(0x73647561,0);
VirtualDub.stream[0].DeleteComments(1);
VirtualDub.stream[0].AdjustChapters(1);
VirtualDub.stream[0].SetMode(0);
VirtualDub.stream[0].SetInterleave(1,500,1,0,0);
VirtualDub.stream[0].SetClipMode(1,1);
VirtualDub.stream[0].SetConversion(0,0,0,0,0);
VirtualDub.stream[0].SetVolume();
VirtualDub.stream[0].SetCompression();
VirtualDub.stream[0].EnableFilterGraph(0);
VirtualDub.stream[0].filters.Clear();
VirtualDub.video.DeleteComments(1);
VirtualDub.video.AddComment(0x00000002,"ISFT","CanonMVI02");
VirtualDub.video.AdjustChapters(1);
VirtualDub.video.SetDepth(24,24);
VirtualDub.video.SetMode(3);
VirtualDub.video.SetFrameRate(0,1);
VirtualDub.video.SetIVTC(0,0,-1,0);
VirtualDub.video.SetRange(0,0);
VirtualDub.video.SetCompression(0x64697678,0,10000,0);
VirtualDub.video.SetCompData(3532,"AAAAALwCAACQsggAXHZpZGVvLnBhc3MALgBwAGEAcwBzA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAkAEAACh1bnJlc3RyaWN0ZWQpAABpAGMAdABlAGQAKQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEgAAAEdlbmVyYWwgcHVycG9zZQBwAHUAcgBwAG8AcwBlA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAIE
RITFRcZGxESExUXGRscFBUWFxgaHB4VFhcYGhweIBYXGBocHiAjFxgaHB4gIyYZGhweICMmKRscHiAjJ
iktEBESExQVFhcREhMUFRYXGBITFBUWFxgZExQVFhcYGhsUFRYXGRobHBUWFxgaGxweFhcYGhscHh8XG
BkbHB4fIQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAIAAACWAAAAZAAAAAEAAAAAAAAABAAAAAMAAAABA
AAAAQAAAAAAAAABAAAAAAAAAAAAAAAAAAAAZAAAAPQBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAABkAAAAZAAAAAEAAAAKA
AAAAQAAABQAAAAAAAAAAAAAAAUAAAAFAAAABQAAAAAoCgAAAAAAAQAAAAEAAAAeAAAAAAAAAAIAAAAAA
AAAAAAAAIAAAAAAAAAAAAAAAAYAAAABAAAAAAAAAAEAAAAAAAAALAEAAAAAAAABAAAAHwAAAAEAAAAfA
AAAAQAAAB8AAAABAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAzwAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAQAAAA==");
VirtualDub.video.filters.Clear();
VirtualDub.subset.Clear();
VirtualDub.subset.AddRange(0,1066);
VirtualDub.SaveAVI("D:\\1\\00#{num}.avi");
VirtualDub.Close();
// $endjob
//
//--------------------------------------------------
EOF
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=331753
------------------------------
-------------------------------------------------------------------------
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 59
*************************************************