topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Monday November 10, 2025, 10:30 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 ... 20 21 22 23 24 [25] 26 27 28 29 30 ... 46next
601
FYI
... there is a another review about CLCL from our forum member 'Clif Notes'
over there   on infopackets.com
602
General Software Discussion / Re: [GER/ENG] CLCL Clipboardmanager Forum
« Last post by AbteriX on April 13, 2006, 05:56 AM »
Little Update for Lesson 4 since i was asked in other forums.


Since i miss often older clipboard item
i increased the number of item's that CLCL should store:
00 options.png



To handle this large amount of stored items
i set up my pop-up menu's.

I go to "Options | Action | Menu    Click on left...."
01 viewer 1.png



- Now i set first "History()" to 0-10

- Add an Pop-Up as sub menu and called it &A Next ten (11-20)
   |__ add and set an second History() to 11-20

- Add an Pop-Up as sub menu and called it &B Next ten (21-30)
   |__ add and set an third History() to 21-30

- Add an Pop-Up as sub menu and called it &C Next 25 (31-56)
   |__ add and set an fourt  History() to 31-56

- Add an Pop-Up as sub menu and called it &D Older (from 57th -)
   |__ add and set an fifth History() to 57-
02 viewer.png



My pop-up looks like this:
03 pop-up.png
The first 10 items i can reach with the number keys 0,1,2... till 9.
The second 10 items i can reach by pressing the 'A'-key and then the 0,1,2... keys
The next by pressing the 'B'-key first...



Additional tip:
you can copy this "Menu    Click on left...." item,
see the [Copy]-button...
and give this new copy an other hotkey.
So i can reach this popup
from the tray icon by an left click
AND now by pressing the WIN-key and the 'V'-key the same time.
04 viewer ready.png





Post here in this thread only tips and tuts please.

Use >this other thread< for comments.



.
603
General Software Discussion / Home of "SalaPortable"
« Last post by AbteriX on April 11, 2006, 11:42 AM »
- first draft -

Home of SalaPortable
============================


I playing around to make Apps portable
for to carring it around on my USB-Stick.

First i try to make my favorite file manger portable.
I use <Servant Salamander 2.5> as beta 11.

I use an AutoIt script which must be in the same folder as SALAMAND.exe
and create then an environment variable which is set to the current working dir.
(The working dir is that path\folder where the SalaPortable.exe exist)



In the settings for the user menu in Sala i use the special token $[xxx]
for to refer to this environment variable i create with my AutoIt script.

i.e. f.ex. $[SalaPath]\MyTools\CSDiff5\CSDiff.exe
for to start this exe from e.g. X:\USB-Drive\Tools\Sala2.5BETA11\Plugin\MyTools\CSDiff5\

where the part "X:\USB-Drive\Tools\Sala2.5BETA11" is flexible .... this is the
current working dir which is stored in the env var SalaPath.

I have choosen the env name "SalaPath"... you can modify this in the script if you prefer.






This environment var "SalaPath" is only visible/accessible inside the AutoIt script
so i start the SALAMAND.exe from this script too.



There are weak points:
- This work around isn't very comfortable, but it should work.
- If Salamander is not startet from this script he tells about missing "SalaPath" for each plugin
- As we import the settings on an foreign PC with "config.reg".... we replace the existing settings (if there any, you may wish to save this first )




/\:/\:/\:/\:/\:/\:/\:/\:/\:/\:/\:/\:/\:/\:/\:/\:/\:/\:/\:/\:/\:/\:/\:/\:/\:/\:/\:/\:/\:/\
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~




I have testet this behaviour on XP SP2 without admin right.
Please test this script/exe if it works for you too.
Please use it on your own risk!
If you have questions let me know by an reply on this thread.


Here is the How to:

# Save your current settings
* go to "Options|| Export Configuration..."
* click [Yes] to save your current config first
* store this 'Config_.reg' as e.g. "My current Config_.reg"
(Salamander will import this config at start, if you rename this file later to 'Config.reg')

# modify the path to your tools
* go to "Options||Configuration...||User menu"
* modify your paths
e.g. from "C:\Program Files\Servant Salamander 2.5 beta 11\Plugins\Tools\MyApp\app.exe"
to "$[SalaPath]\Plugins\Tools\MyApp\app.exe"
"C:\Program Files\Servant Salamander 2.5 beta 11" is in this case the current working dir
which will be covered later by $[SalaPath].
configmenu.jpg

You will see sooner or later that this $[SalaPath] is not found right now.
Remember, this env var is only valid later, if you have execute the script (respectively the compiled exe)
SalaPath not found.jpg


# Save your modifyed settings
* go to "Options|| Export Configuration..."
* click [Yes] to save your current config first
* store this 'Config_.reg' as e.g. "My portable Config_.reg"


# copy to USB
* copy this compiled AutoIt script to your Salamander folder

* copy the hole Salamander folder to an USB-Stick (or what else e.g. CD-RW, network drive, goggle mail...)
* rename "My portable Config_.reg" to "Config.reg" (Salamander will import this settings on start)


# start portable Salamander
* don't start SALAMAND.exe but SalaPortable.exe

- SalaPortable.exe will create an environment variable called "SalaPath" and starts SALAMAND.exe.
- THIS SALAMAND.exe will now recognize this env var "SalaPath" and can this way execute your tools.


=================================================
Here is the AutoIt script i use:

SalaPortable.au3
$App = "SALAMAND.exe"           ; the app name
$EnvValue = "SalaPath"          ; the name of the environment variable for use as $[xxx]

; -----------------------------------------------------------------

If FileExists(@WorkingDir & chr(92) & $App) Then
   
   EnvSet ($EnvValue , @WorkingDir)
   ;RUN(chr(34) & @WorkingDir & chr(92) & $App & chr(34))    ; is " " really needed?
   RUN(@WorkingDir & chr(92) & $App)


Else
   MsgBox(0, "DC-MakePortable Error", _
       "Sorry. Unable to find the file " & $RunCmd & " ."  & @CRLF &  @CRLF  _
      & "This MakePortable.exe MUST be in the same folder as " & $App  & "!" & @CRLF _
      & "Then you get an environment variable with the name " & chr(34) & $EnvValue & chr(34) & ", wich you" &  @CRLF  _
      & "could us as " & chr(36) & "[" & $EnvValue & "] for " & $App & " for to execute tools with relative paths."  & @CRLF &  @CRLF  _
      & "This is open source, enjoy. Stefan" &  @CRLF _
      & "For further info's or question's visit us at www.DonationCoder.com")
   Exit
EndIf


604
Post New Requests Here / IDEA: DC RunAs Wrapper
« Last post by AbteriX on April 06, 2006, 04:05 PM »
I think about a little tool that show me
all of the user names of the current computer
and allow me to start an programm
as an user choosen from this list... no hack!... i would need the password too.

I would like to use this program e.g. as tool for file manager like
DCRunAsWrapper.exe    %ProgramFiles%\Internet Explorer\IEXPLORE.EXE

or i would create an shortcut from DCRunAsWrapper.exe and edit
the command line and add an program as parameter.

Then DCRunAsWrapper should create a user list
(maybe just scan C:\Doc and Set\ for subfolders and show the folder names?)
and show me this list of names in an drop down box
from where i could choose one name, enter the password
and maybe make some settings.

Screenshot - 06.04.2006 , 22_49_21-2.png

Perhaps there should be in the GUI an "choose file"- dialog too?
605
Post New Requests Here / Re: IDEA: InventoryPoster
« Last post by AbteriX on April 06, 2006, 09:25 AM »
..., and it is simple.
-Carol Haynes
No, it's not. One have to remember the file name msinfo32.exe and type this in the "Run..." dialog. (into what???)
Or one have to remember the way through the hole start menu. And there is no advertisement for DC.

I think AbteriX isn't being properly understood.
The thing is:
- he'd like a fast tool,
- that would put a bunch of information about his system to the clipboard,
- with a given format.
-jgpaiva
msInfo32 or not. I suggest an three-click solution.
1) start the K.I.S.S-InventoryPoster
2) choose the desired info, launch other tools for more detailed summary or visit DC.com
3) paste your info's into the forum

see here for more...
Since such info's are often needed we could give this tool as give-away to users in other forums and spread the word of mouser.
606
Living Room / Re: cody has some eggs?
« Last post by AbteriX on April 06, 2006, 05:51 AM »
Yu can propattly got rite with this guessing  :D
Maybe this was what mouser gave the fun  :(











But the true is.... look at Cody's wings! He have need an ghostwriter!
607
Post New Requests Here / Re: IDEA: InventoryPoster
« Last post by AbteriX on April 06, 2006, 05:41 AM »
Did you see my first post that this should work for an average user?
And that it should be simple. And as an advertisement in forums for DC.com?
Is msinfo32.exe available on all windows versions?
Can we automating the export of the info's from msinfo32 with one mouse click?
Can we select desired lines from that export?
What is with info's msinfo32 didn't provide?
Can we put this info's than to the clip board automatically?

Come on guys, isn't there more?  :)
608
Living Room / Re: this is the first site I ever donated to... :)
« Last post by AbteriX on April 06, 2006, 02:04 AM »
Thank you karlyRana and vevola,
and welcome to the forum  :Thmbsup:
609
Post New Requests Here / Re: IDEA: InventoryPoster
« Last post by AbteriX on April 05, 2006, 06:49 AM »
No! This tool i have meantion above was not good.



I want here collect a few facts what should be used as standard info for InventoryPoster:


----------------------------------------------------------
InventoryPoster by DonationCoder.com, visit us, u r welcome
----------------------------------------------------------
Select: [None] [All]            [Paste] [Save...]
----------------------------------------------------------
(*) Betriebsystem:            Windows 2000, Professional, SP 4
( ) Local-ID                    German (Germany) 1031 407
( ) User-Language           English
(*) Internet Explorer:        Version 6.0.2800.1106 (SP1)
( ) Microsoft .NET:           Version 1.0.3705.0
(*) Prozessor:                Intel Corporation  Intel(R) Pentium(R) III Mobile CPU      1000MHz
( ) Memory Physical Total:    511 MB
( ) Page File Total:           861 MB
(*) Free Disc space           1.256.942 MB
( ) Running process            45
( ) Video Adapter:             MOBILITY RADEON
( ) Resolution:                1024 Pixel x 768 Pixel

(*) Name and Version of the Program you report to: [Dr.Windows 1.5.02    ]
----------------------------------------------------------
Info line:  IP-Address - Diskspace free - Memory free
----------------------------------------------------------
Start HijackThis   |   Start SIW   |   Start CW-Sysinfo
----------------------------------------------------------



What else ?
610
Post New Requests Here / Re: IDEA: InventoryPoster
« Last post by AbteriX on April 05, 2006, 05:50 AM »
I see what you mean, but i didn't understand one thing.
Do you want the program to be dynamic, i.e., to be the program to get all the information?
Yes

This could be done with editboxes, you type your data and save once,
then, on the next time you run it, you select the checkbox next to the editbox and paste it.
-jgpaiva
> you type your data and save once,
??? I assume the  novice user didn't know his data.

So this InventoryPoster should  check this data himself.

Or maybe we could adopt the data collected from an already existed application
(allen mention a rcFTP tool, .. on this webside was an inventory command line tool too,
or was it on the side of the command line renamer....hmm?  should i test this?)

Much better would be a all-in-one tool for making its easy for users:
- collect data - format - copy to clip board - notify user.
611
Post New Requests Here / IDEA: DC InventoryPoster
« Last post by AbteriX on April 05, 2006, 03:42 AM »
For many support question and error reports
 it's always the same re-question: "What OS do you use", "Language settings", "Code page?", "Which graphic adapter?", "How many RAM?"

Well, there are many info tools who could answer that question.

My idea is to automate this behaviour:

i think about an little exe
that collect by double click (or hot key?)
all the answers and
paste it to the clip board. (Then user should be notified of the end of this action)
Then the user can simple paste the info's into an forum.

There should be a INI where user
can select what info should be collected
and how should the be formated (one long line with all items, on item each line, ....)


>?<
Maybe is a GUI for to select  ad-hoc witch info should be copied better?
[ ] Processor  [ ] IP-Address
[ ] RAM         [ ] Graphic
[ ] Swap
Prefix [ (Spoiler=InventoryInfo) ]
Suffix [ (/Spoiler) ]
...
[collect and copy now]
<?>


For formating it would be nice to have an prefix- and suffix line too
for to add forum format syntax like [.B][/.B] or
Spoiler


I want to mention this tool on other forums that this is here available, would be an advertisement, isn't it?
Even is there is an about or an text-link in the gui like "Go to DonationCoder.com for more nifty tools"

.

612
Screenshot Captor / Re: Ftp Uploader
« Last post by AbteriX on April 04, 2006, 03:49 PM »
Thanks jgpaiva.
Thanks allen: command line support, freeware, (no installation needed) , i like this.
613
Happy Birthday DC
All the best for the next 12 months.

Thanks to Mr. Mouser and all who have made this possible  :Thmbsup: .... :-* ....  :-\  .....  8)
614
615
I am  playing around with BulkRenameUtility 'cus it's on development. Mostly i play with RegEx and help others in the forum.

I am playing also with THE Renamer and translate it to german. He have a lot of power if you take the time to take a closer look.
e.g. rerange files by there first chars in corresponding folders.

I think most i like FlexRen, wich i also have translated to german, 'cus of hes regex possibilities.

But most i use the renamer plugin of Servant Salamander.


... have to go... perhaps later more if you have questions.
616
ANT Renamer - F - http://www.antp.be/software/ - http://www.buypin.com
eRename - F - http://hansjoerg.rei...t-online.de/erename/
ReNamer - F - [den4b] - Denis Kozlov - http://www.redbrick.dcu.ie/~den4b/
Renamer 6.0 Final - F - Albert Bertilsson - www.albert.nu
Sophisticated Rename 1.7
(Last Freeware Version)
- F - http://www.aplusfree...s/util/renaming.html
617
General Software Discussion / Re: Foxit Reader (fast pdf reader alternative)
« Last post by AbteriX on March 30, 2006, 01:23 AM »
On my standard PCs i have AR installed.
FoxitReader cames to work on test-pcs just to read manuals, and for that issue FR works great.
618
Living Room / Re: BitTorrent - why bother?
« Last post by AbteriX on March 29, 2006, 05:18 AM »
Thanks for the question  :) , nice to read thread.  :Thmbsup:
619
You didn't answered if you need the help o f the "wizards" ?

If not and you look for an less in size and price app for vector drawing
i could bring your attention to ZoneDraw where the v3 (8,8 MB, from 2001) is free after registration.

See http://www.zoner.com/download/ and scroll down or http://www.zoner.com...oad2.asp?ProductID=1


---
Description => http://www.freewaref...ogram_3_36_1024.html

Picture => http://www.freewaref...creenshot/zoner3.gif

Fun with Text => http://graphicssoft..../uc/ucpm_zd4text.htm

Tuts => http://www.ayeone.com/zoner_draw.htm AND http://www.ayeone.com/zoner_draw_2.htm

Description
Zoner Draw 3 is a graphics editor,
primarily designed to create powerful leaflets,
illustrations for documents, business cards,
 price tags, letterheads, postcards, signs,
blueprints, greeting cards, and more.
Read more...
It offers all the standard graphics tools,
including stars and polygons, anti-aliasing and more,
 as well as, Object blending, Transparency,

Integrated scanning tool, Bitmap editing
functions and support for Adobe plug-ins.



Details and requirements

Size: 8850 Kb
Price: $ 0.00
Operating System: Win95,Win98,WinME,WinNT 4.x,Windows2000
License: Freeware
Category: Multimedia & Design : Illustration
Submitted on: 14-Sep-2004
Submitted by: ZONER software


Deutsche Beschreibung
Zoner Draw ist ein klasse Grafikprogramm, mit dem man Visitenkarten, CD-Labels, Postkarten, oder sonstige mit Grafiken untermalte Dokumente anfertigen kann. Zoner Draw unterscheidet sich von dem Großteil der Freeware dieser Art. Die Qualität ist beeindruckend. Sicherlich auch anders schwer vorstellbar, da dieses Produkt vor einiger Zeit noch kommerziell war, bzw. die Version 4 es noch ist. Man findet rund herum um das Programmfenster Werkzeugleisten. Zoner Draw bietet eine ausgewogene Mischung aus Textverarbeitung und Grafikprogramm. Einige Vorlagen für Vistenkarten, usw. sind direkt integriert. Cliparts findet man ebenso. Zudem werden wichtige Grafikformate, wie WMF, DXF, ZBR, PCX, TIF, WPG, MAC, TGA, ICO, BMP, JPG, PNG, BMI und HPGL beim Import unterstützt. Zoner Draw ermöglicht sogar das Bearbeiten von 2,5 Meter x 2,5 Meter großen Dokumenten. Damit wird wohl keiner vorzeitig an seine Grenzen stoßen. Auch bei der Gestaltung sind kaum Grenzen gesetzt. Es bieten sich zahlreiche Gelegenheiten die Dokumente mit farbigen Objekten, grafischem Text aufzupeppen. Einfaches DTP für Hobby- Grafiker. Hinweis: Beim Download müssen Sie Ihren Namen und Ihre eMail-Adresse angeben. Sie erhalten anschließend eine eMail von Zoner Inc. mit einem Link zur Registrierungsseite. Die Registrierung ist kostenlos muß aber durchgeführt werden damit das Programm als Vollversion funktioniert.
Homepage
Version: 3   Download-Rang:    Lizenz: Freeware   System: Windows   Sprache: Multilingual inkl. deutsch   OS: Windows   Größe: 8.69 MB   Eingetragen am: 14.10.2002
 
 



Note for travelers: Only need to install it ones, then you can copy it on your USB-Stick.
620
hi all,
...
... preferably, the app should be targeted at a medium to casual user with not too much hand-holding. ;)
So you need wizards and such? Sorry, i can`t get familiar with this helpers.
I use CorelDraw! for such projects. Even the version 7 (5-10€ @eBay) is good enought
and you get an good graphic editor too (PhotoPaint).

A freeware non-wizard tool is e.g. OpenOffices Draw.

"Print Shop Deluxe" or such i see often on magazin -cd's for 5-9€
621
General Software Discussion / Re: CLCL Clipboardmanager - random discussion
« Last post by AbteriX on March 28, 2006, 12:58 AM »
....
btw AbteriX, i'm a little behind schedule for coming up with the CLCL plugins' tutorial...
That's full OK, pls take your time, i am glad you wanna help :)
622
General Software Discussion / Re: CLCL Clipboardmanager - random discussion
« Last post by AbteriX on March 24, 2006, 02:55 PM »
@AbteriX: CLCL really looks like a powerful app, it it could do everything ClipX can I'm willing to consider to switch :)

Some time ago, as i discovered CLCL, i had ClipX also tested. The only bad, if i remember correct from memory,
with ClipX was that ClipX stores its ini in the %Systemroot% folder. After an eMail exchange between me and Francis
he modifyed this behaviour and ClipX stores its ini now near the exe, in the same folder. To bad i was more familar with CLCL at this time. Maybe i should take the time and test ClipX again. Hmm, as i remeber it has a kind of search function ? Perhaps i found a few new suggestions i could tell Mr. Nakashima (with the kindly help of barlog of course) :-)
623
Hi friends,

i want only to make a place for to discusses about CLCL, an clip board extender.
But now i have added a few small lessons to know how CLCL works to this thread over there.

So it's changed to an little small tiny mini review. I you want to know more about CLCL,
please point your browser to > this thread <           

Attention!
Many screenshots ahead....

The CLCL thread above have now ~1,5 MegaByte to load, please be patient.  :-[
BTW:(All screenshots are taken with Screenshot Captor)


All of your experiences with CLCL, or how to's or tutorials, you can leave on this other thread above.
For any other comments please use this thread here.

=============================================


An other promissing clipboard extender is Clipboard Help+Spell  :Thmbsup:    check it out




.Find me:
CLCL Anleitung CLCL Tutorial CLCL How-to HowTo How to CLCL Bericht CLCL Clipboard Zwischenablage
CLCL Manual CLCL Handbuch CLCL auf deutsch deutsche Übersicht CLCL tut tuts
CLCL Nakashima Tomoaki CLCL Nakka CLCL review CLCL user opinions
624
General Software Discussion / Re: [GER/ENG] CLCL Clipboardmanager Forum
« Last post by AbteriX on March 24, 2006, 11:37 AM »
Lesson 6

Adjust the Viewer window

viewer01.png

- First, hmm, for "Toggle window" i don't know what should happen, i didn't  find it out :(

But i got an eMail from Robb Holmes who found it out:
"If "toggle" is checked, you can click on the tray icon to open the viewer, then click again to close it.
If "toggle" is not checked, clicking on the icon opens the viewer, but does not close it."
Thank you Robb  :Thmbsup:


- Second you can set how the (and which) "folders" should be expanded if you open the viewer.
- Then with "Display items...." you can set what kind of items should be shown in the viewer.
- And with "Default action...." you can decide what should happens if you double click an item.
625
Official Announcements / Re: More Planned Server Downtime this Weekend
« Last post by AbteriX on March 24, 2006, 10:23 AM »
all the luck for you  :o
Pages: prev1 ... 20 21 22 23 24 [25] 26 27 28 29 30 ... 46next