topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday November 6, 2025, 2:40 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Recent Posts

Pages: prev1 ... 10 11 12 13 14 [15] 16 17 18 19 20 ... 46next
351
Developer's Corner / Re: batch file question re cmd + color
« Last post by AbteriX on April 15, 2008, 01:08 PM »
Thank you mates  :Thmbsup:

I just want look out for this feature this day (for my new "RunAsAdmin.cmd")

"RunAsAdmin.cmd"
@Echo off && Title Launch console as ADMIN && COLOR 1F
RUNAS /USER:Administrator "cmd /T:4F /K TITLE ADMIN RIGHTS" && "/K /F:ON /E:ON"


352
FYI
Denis thinks about stopping developing his apps, including ReNamer.  :(
Please say him an last "Thank You Denis"  :Thmbsup:  ==> I may not be able to develop and support these tools any longer... read full post.
353
Mini-Reviews by Members / Re: I love the Bulk Rename Utility!
« Last post by AbteriX on April 02, 2008, 12:55 AM »
FYI
Jim wants to stop developing BRU.  :(
Please say him an last "Thank You Jim"  :Thmbsup:  ==> BRU is retiring...
354
Developer's Corner / Re: [BEST] Boxer Editor Scripting Thread
« Last post by AbteriX on March 29, 2008, 07:23 PM »
I have thought i have seen this feature in Boxer, but didn't find it. So i have taken this to try my first Boxer script.

Find user string and select lines till the string occurs first.
f.ex.
- scroll through an long text and wrote an char didn't exist in the whole text, like an '#'
- go back above to your start line (hint: bookmark) and search(via script) for '#' .... the script will select all lines between.

Find-and-select-to-find
Code: C [Select]
  1. // Find an string. Select all lines till the line where this string occurs first.
  2.  
  3. macro newmacro()
  4. {
  5. int LineStart, LineEnd, LineCurr;
  6. string FindAndSelectmyFind, myFind;
  7.  
  8.         LineStart = LineNumber; // current line number at macro start
  9.  
  10.         //REM ReadValue(FindAndSelectmyFind, myFind); // read last stored search value
  11.         GetString("Find what: ", myFind); // string to find and select to
  12.         //REM WriteValue(FindAndSelectmyFind, myFind); // save value for re-use
  13.  
  14.         if (myFind != "")
  15.         {
  16.         // go across all lines from current start line to EOF, line by line
  17.                 for (LineCurr = LineStart; LineCurr <= LineCount(); LineCurr++)
  18.                 {
  19.                         if (LineContainsREi(LineCurr, myFind)) // if search string is found in line
  20.                 {
  21.                                         LineEnd = LineCurr; // set var LineEnd to number of current line
  22.                                 break; // stop the for loop
  23.                         }
  24.                 }
  25.  
  26.                 GoToLine(LineStart); // go back to start line where we came from
  27.                 // go through all lines from our start line to the line where the string was found, line by line    
  28.                 for (LineCurr = LineStart; LineCurr <= LineEnd; LineCurr++)
  29.                 {
  30.                                 SelectDown; // select each line between
  31.                 }
  32.         }
  33. }


Unfortunately it seams as " GetString("Find what: ", myFind); "  didn't support to show user an suggestion?
I exspected something like: " int GetString(string prompt, string result, string suggestion) "
I will search for an alternative.



Perhaps this script is an improvement-idea for David.  ;) Smtg similar like "Go to..." and []extend selection ?

Next i will try to script  Find-and-select-to-bookmark ;-)

.
355
Developer's Corner / Re: [BEST] Boxer Editor Scripting Thread
« Last post by AbteriX on March 25, 2008, 10:22 AM »
Thanks fellows!  You are quick and helpful, very kind of you.  :-*
So i have smtg to learn this evening. And i hope this thread will encourage people to try this scripting too.

.. .. .. .. .. ..

WRT ROT13 and Registry?
Some key in Reg are "encrypted" by M$ thereself, like
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\UserAssist\....

I can remember there is an other key too,   
and i had known an trick to decrypt this key automatically by adding an new key (and/or value)
But ths trick is not presend right now  :-\  :'(

EDIT: here a few links about this topic
http://www.codeproje...istryencryption.aspx
http://www.autohotke...forum/topic9154.html
http://blog.didierst...u%E2%80%99re-joking/

EDIT:
And here is the trick

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ Explorer\UserAssist\
New key "Settings"
New DWORD "NoEncrypt"   set to "1 "

Found by
http://www.winhelpli...ist-schluessels.html


And sorry for false "encrypt" / "decrypt" using/mix-up.

---

That's why i want use ROT13... to de-crypt an key/value like them above.
And for to see how this works in Boxer  :D

.. .. .. .. .. .. .. .. ..

ROT13 is also handy to exchange text (email addy f.ex.) in forum not all should read easily (or crawl) .
F.ex. to ask an trick-question and add the answer "rot-ed"  :P

.. .. .. .. .. .. .. .. ..

Please people, come on and fill this tread with live..... what's to script next?
356
Developer's Corner / [BEST] Boxer Editor Scripting Thread
« Last post by AbteriX on March 25, 2008, 07:16 AM »
Boxer Editor Scripting Thread to learn and exchange scripts for Boxer Text Editor


Boxer Text Editor at DonationCoder
Boxer Text Editor - 51% Off!


Boxer includes a powerful macro language ... similar in style to the C programming language

===> Boxers Example Macros



Learning C:
Wiki english
The C Book — Table of Contents and free PDF download

C lernen:
Wiki deutsch
Galileo Computing  <openbook>  C von A bis Z kostenloser download


- - -

Hi, i just trying myself learning how to scripting Boxer
My first attempt is to make an ROT13-macro ('cus i see no such function in Bx and i want to encrypt an Reg-key)

Infos about ROT13:
http://www.senses0.o...popzees/rot/rotn.php
http://en.wikipedia.org/wiki/ROT13

Infos bezüglich ROT13:
http://holger.thoelk....name/skripten/rot13
http://de.wikipedia.org/wiki/ROT13


With PSPad i have simply an Tool "user conversion" with an text file like:
[Table]
97=110
98=111



With Bx (Boxer) i think i have to do an script?

If anyone is interested to take part in ... ('cus my lunch break is over  :P )

I tried the following till now (partly pseudo code)


Code: C [Select]
  1. // macro description goes here
  2. // modify char to value-x higher char like ROT13
  3. // f.ex.  A=65ascii    >    65+13=78    >     78ascii=N    >>>  char 'A' convert to char 'N'
  4. macro newmacro()
  5. {
  6. Const X = 13;
  7. GetSelection(mySEL);
  8.  
  9. For Each SingleChar in mySEL
  10.     isalpha(SingleChar)
  11.        newchar = ToAsciiValue(SingleChar) + X
  12.            newchar = ToChar(Newchar)
  13.  
  14.            InsertCharacter(newchar)
  15.  
  16. Next
  17. }

357
Best Text Editor / Re: Boxer Text Editor
« Last post by AbteriX on March 20, 2008, 12:43 PM »
PORTABLE/USB EDITING - install Boxer to a USB memory stick
... ...
http://www.boxersoft...re.com/changes13.htm

Very welcome, thank you David  :Thmbsup:  :-*
358
Living Room / Re: Help with translating a video from Deutsch
« Last post by AbteriX on March 19, 2008, 03:58 AM »
If you didn't find it elsewhere i will put it on an share for you..... but 15 MB upload will take some time at my bandwidth.... :P
359
I tried CLCL but I can't find a search option. How can I search for a word if I have 100 clips

Not really. But you can search in the VIEWER the History and the Templates.
I have tried to give you an start over there ==>  https://www.donation....msg104166#msg104166


---- Hey  :-\

Maybe there are some helpers out there
to translate the web sides
here
http://translate.goo...u=qwerty.s2.xrea.com
or here
http://www.nakka.com...soft/clcl/index.html

and/or res hack that or this DLL  :Thmbsup:

Like Icfu did take an start allready  :-*  :up:

And thanks to jgpaiva for having an eye on the forum.
360
General Software Discussion / Re: [GER/ENG] CLCL Clipboardmanager Forum
« Last post by AbteriX on February 28, 2008, 03:25 PM »
I tried CLCL but I can't find a search option. How can I search for a word if I have 100 clips

There is no good Search-option in CLCL.

You could try this  plugin to search in VIEWER (History and Templates)

Download
tool_find Ver 0.0.1 (2003/04/11)   from   http://www.nakka.com...soft/clcl/index.html

002-download-ToolFindDLL.png


Unpack and copy the tool_find.dll f.ex. to the CLCL-folder



Add this DLL to tools
For Find_next add an shortcut

003-add.png

003-add_new_tool.png


Start the tool from menu. (the check-box is to search case sensitive)
Use the shortcut to find next.
004-use.png


Not comfortable, i agree.  ClipX is better there.  Or CHS ==>  >here<

-----------

Here is an res hacked to english version from icfu  ( Post is in german language, watch out for:  01.02.08, 15:50  => CLCL_English_Reshack_tool_find.dll.zip )
http://www.essential...ic.php?p=90583#90583
361
General Software Discussion / Re: urls: from .txt file to browser tabs. How?
« Last post by AbteriX on February 23, 2008, 03:35 PM »
you can use this Firefox add-on: Copy All Urls.

Nice find lanux128
CAU1.png



I have this little text file with URLs that I need to test.
For a few URLs i just use PSPad to "read" the text and click the URL to open it in iE

And, BTW, since a few like this:
urlwolf-1000b.png
362
is it possible to create a template for copying current date and time to clipboard?

Well, yes. A kind off...
see your self here for an start => https://www.donation....msg102702#msg102702
363
General Software Discussion / Re: [GER/ENG] CLCL Clipboardmanager Forum
« Last post by AbteriX on February 19, 2008, 03:33 PM »
CLCL Plugin

Macro operation
CLCLMacro.dll


Clipboard scripting language to perform the operation

    * WSH WSH script from operations
    * perl  Operate from scripting languages such as perl
    *  Operate from the console application

So it's only developing error or failure Bambang left.

(well, goggle translated)
http://qwerty.s2.xrea.com/
http://translate.goo...F32FXCLCLMacro.xhtml

The webside
01-webside.png


Create an script or batch like

date2clip.cmd
@ECHO OFF
ECHO %date% %time%


or

date2clip.ahk
FormatTime, mydate , shortdate, yyyy.MM.dd,  HH:mm
clipboard = %mydate%



Load the DLL
Add the above created script as parameter
02-macroDLL.png


Add the macro in an Action
03-action.png


Execute the macro
04-action-execute.png


An kind of an result
05-result.png

Could all be improved, i agree  :-\
364
General Software Discussion / Re: minipad2
« Last post by AbteriX on February 18, 2008, 04:18 PM »
I didn't try it,  but - "is a single-exe green software" - i like it  right now  :P


Thanks for sharing Curt... *me downloading*
365
Screenshot Captor / Re: Auto-capture in certain interval of time
« Last post by AbteriX on February 18, 2008, 03:54 PM »
Hi ioSIS, welcome

did you take an look into preferences and the tray menu?

Take a look on preferences at "On Capture" -tab
366
General Software Discussion / Re: [GER/ENG] CLCL Clipboardmanager Forum
« Last post by AbteriX on February 15, 2008, 05:40 PM »
CLCL Plugin 
KURIPPUBODOYUTIRITI
CLCLClip.dll

http://qwerty.s2.xrea.com
http://translate.goo...u=qwerty.s2.xrea.com


Auxiliary to the clipboard operations


Hierarchical History
Stack History
History queue
Forced copy
TOREIAIKON change
URI補完 Completion URI
Search engine
Consolidated clipboard
Choose History
Save History

The project side:
01Webside.png

Tools:
02clip-ss_02.png


Sort your clips:
03Add-Subfolders-to-tray-menu-for-every-ten-items1.png
04Add-Subfolders-to-tray-menu-for-every-ten-items2.png
05Add-Subfolders-to-tray-menu-for-every-ten-items3.png
06clip-ss_01.png


Paste item number n
Paste-current-item-number-n.png


Save clip board to file
Save-Clipboard-to-file-with-the-first-few-chars-as-filename.png
Save-Clipboard-to-file-with-the-first-few-chars-as-filename2.png


Search word at xxx
Search-f.ex.-Google-for-Word-in-clip_board.png


Some explanation will follow (i hope)
367
Are there "bigger screws"? I think no.
I think i would put a little bit of hot glue "in" the holes
and make a new thread by screwing in the screw onces the glue is cold down.

Don't tested  :P
368
Coding Snacks / Re: Idea: TCP/IP Configuration Save/Restore
« Last post by AbteriX on January 23, 2008, 04:22 AM »
369
Coding Snacks / Re: structured plaintextfile based note taker
« Last post by AbteriX on December 07, 2007, 05:22 AM »
Sorry, i didn't have read all here, but...
"structured plaintextfile based note taker"  ==> MemPad ==> http://home.mnet-onl...e/horst.muc/wmem.htm

HTH?
370
Found Deals and Discounts / Giveaway of the Day - "Smart Install Maker"
« Last post by AbteriX on November 27, 2007, 03:18 PM »
What's on? So many programmers here and nobody mentioned the GOTD from today?
Also handy for private support an friend (copy this here, make an link there,...)

Giveaway of the Day - Smart Install Maker

Smart Install Maker lets anyone create professional installation packages in minutes with unprecedented ease and functionality.
Instead of writing installation scripts or spending weeks on learning a complex installation program,
you can take advantage of Smart Install Maker, use its wizard-oriented interface and create an installer right out of the box.
The installer is a single executable file (setup.exe) that runs on any version of Windows from 95 and up. It is ideal for distribution
over the web or a network, on CD-ROM or DVD-ROM.

http://www.giveawayoftheday.com/
http://www.giveawayo...smart-install-maker/

Active Giveaway time left: 10 hours 50 minutes



User Rating:
    * 135 (81%)
    * 31 (19%)

35 comments
System Requirements:    Windows 95/98/Me/NT/2000/XP/2003 Server/Vista
Publisher:                   InstallBuilders Company
Homepage:                http://www.sminstall.com/
File Size:                    1.47 MB
Price:    The program is available for $79.99, but it will be free for our visitors as a time-limited offer.

   1.  No free technical support
   2. No free upgrades to future versions
   3. Strictly personal usage
371
fSekrit / Re: LATEST VERSION: fSekrit 1.3 shrinkwrapped!
« Last post by AbteriX on November 18, 2007, 12:58 PM »
Thank you f0dder for the new release.
372
Living Room / Re: "30 years computer history" poster
« Last post by AbteriX on November 15, 2007, 02:19 PM »
nice find Tom  :Thmbsup:
373
Extension idea:

Often i want to store the link (URL of a side) only.
I don't want to bookmark it in the browser, i want to have it in my download folder.
(f.ex.: X:\Downloads\useful-stuff\Welcome to useful-stuff home page.URL )
So i go to my download folder, create an new sub folder and drag and drop the link into this new folder.

Idea:
This would be much easier with an "Save as URL" option which
should create an URL-file and show me the "Save as..."-Dialog to store this.
374
Living Room / Re: Help with translating a video from Deutsch
« Last post by AbteriX on October 20, 2007, 03:22 AM »
 :D :Thmbsup:
375
Living Room / Re: Help with translating a video from Deutsch
« Last post by AbteriX on October 19, 2007, 03:06 PM »
> haven't learnt that one: to "give the eye" -

 :)
My translator means that's the same like the german: "Er hat ein Auge auf sie geworfen"

i.e. to flirt with someone

I found now additionally this translation: "to gallivant"



> you'd know I'm not single since I started learning german
to speak german help you here, yes?  :-* :P
Pages: prev1 ... 10 11 12 13 14 [15] 16 17 18 19 20 ... 46next