topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Friday April 19, 2024, 9:58 pm
  • 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

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - AbteriX [ switch to compact view ]

Pages: prev1 2 3 [4] 5 6 7 8 9 ... 46next
76
Easy Screencast Recorder / Re: ESR: Hotkeys box is too small
« on: April 20, 2015, 01:45 AM »
v1.12.01 Beta >> the "Options > General > Hotkeys box" is now width enough :Thmbsup:

"[ STRG + UMSCHALT + F9            ]"


Thank you very much.


 

77
Easy Screencast Recorder / Re: ESR: Do NOT stay on top.
« on: April 20, 2015, 01:42 AM »
v1.12.01 Beta >> "Options > Tweaks > [X] Main dialog should stay on top...." works great  :Thmbsup:


Thank you very much.


 

78
Easy Screencast Recorder / Re: ESR: Do NOT stay on top.
« on: April 17, 2015, 03:06 AM »
Thanks mouser, I will try. But please give me a few days...

79
Easy Screencast Recorder / ESR: Do NOT stay on top.
« on: April 15, 2015, 07:53 AM »
Hi Mouser,


I find it irritating that the main dialog always stays on top while not recording. (and I do other things, before next recording)


I think I would like a new option like

Options > Tweaks > [_] Main dialog should stay on top.


Please consider, if you have some time for that very non-important wish.



thx

80
Easy Screencast Recorder / ESR: Hotkeys box is too small
« on: April 15, 2015, 07:49 AM »
Greetings Mouser,

The Options > General > Hotkeys box

is too small for German

"STRG + UMSCHALT + F9"

I only see
"STRG + UMSCHALT + |"


Would you please adjust the width a little  bit? Thank you.

81
What paulina didn't had done, maybe didn't could, did Curt: set a link to that tool so g00gle will increase the reputation of that site.

I see that advertisement for that tool all over the inet. Seems to be a bad tool, if it needs that guerilla marketing by pseudo user comments.


  

82
General Software Discussion / Re: edit columns in MS Word
« on: April 02, 2015, 02:30 PM »
I don't know.
I use tables with set line color to nothing.

______________________
| Column 1 |   | Column 2 |
| Column 1 |   | Column 2 |
| Column 1 |   | Column 2 |
| Column 1 |   | Column 2 |
| Column 1 |   | Column 2 |
------------------------------


 

83
25,000 posts  :'(






Let's see: I have 1.000 in 10 years,... then for 10.000 post I would need....   .................... forget it!   :-[    






  
           ;D          :P            :Thmbsup:          :D

84
etsmellydog , why did  you open a new thread ?

instead continue in your first one  > https://www.donation....msg377969#msg377969


 

85
General Software Discussion / Re: from excel to a folder structure
« on: March 19, 2015, 07:02 AM »
In the help.

Launch Excel > choose > "Developer > Visual Basic" > Press F1 > Choose "Visual Basic for Applications Language Reference"

Also search there for "Filesystem".

- - -

But I would rather use G00gle to find some help in special Excel/Script forum.
"excel vba get cell value"
"excel vba create folder"


Examples:

- in Excel Visual Basic, insert a Module

- in Module1 insert:
Sub Macro1()
    myVariable = Range("A1").Value
    MsgBox myVariable
End Sub


- in excel, write something in cell A1 and execute this macro.




- next add FSO function:
- edit Macro1() to:
Sub Macro1()
    myVariable = Range("A1").Value
    MsgBox myVariable
   
    Set fso = CreateObject("Scripting.FileSystemObject")
    fso.CreateFolder "C:\Temp\" + myVariable
    MsgBox "Folder created: C:\Temp\" + myVariable
End Sub



- in excel, write something in cell A1 and execute this macro to create that folder.


Of course you have to add many more code, also for error handling, e.g. if path is valid, or if folder not already exist.

Sub Macro1()
    myVariable = Range("A1").Value
    MsgBox myVariable
    myFolder = "C:\Temp\" + myVariable
    Set fso = CreateObject("Scripting.FileSystemObject")
    If (fso.folderExists(myFolder)) Then
        MsgBox "Folder already exist: " + myFolder
    Else
        fso.CreateFolder myFolder
        MsgBox "Folder created: " + myFolder
    End If
End Sub


- - -

The other way around would be to use Visual Basic Script or PowerShell
to access the Excel Object, get the cell value, and invoke FSO to create the folder.

86
Such multiple replacements can be done also on console or via a script
by utilizing PowerShell, which is already there on each Win7/Win8 PC.

Examples:

$Origin = Get-Content .\test.txt

$LineWrap = $Origin -replace "(.{72}\b )", "`$1`r`n"

$Replacement = $LineWrap -replace "code\b", "program"

Set-Content .\test-new.txt -value $Replacement


 

87
General Software Discussion / Re: from excel to a folder structure
« on: March 18, 2015, 06:54 AM »
Such can be done with Office VBA, if you happen to code in Visual Basic (Script)....

There are Excel commands in VBA to iterate over cells,
and there are "standard" VBA/VBS commands to create folders and files via FSO (FileSystem Object)


 

88
Or with MS Office > e.g. Word > Developer > Visual Basic > Insert > User Form > go!

But limited in GUI-options to what would be need for Office...


 

89
Rajats' SmartGUI Creator 4.0 for AutoHotkey,


e.g. at 

http://www. softpedia.com/get/Programming/Other-Programming-Files/SmartGUI-Creator.shtml

Picture:
http://www. softpedia.com/get/Programming/Other-Programming-Files/SmartGUI-Creator.shtml#sgal_1


 

90
Thanks for the update.
Please take your time, I am not in a hurry. ESR works already very well.


- - -

Another idea from my work experiences:
- press a key while recording ==>  ESR stores the current timestamp (and let me enter a short notice, like "start driver installation")
- later I want to jump to that bookmark from a kind of bookmark list

Perhaps that is from interest for you. But I can understand also if you want to keep it simple and drop this idea.

91
One thing you might try is copying a video into your Screenshot Captor screenshot directory -- it should be able to open it and let you easily save frames, etc.
Thanks for answer.

IOW, you are not interested right now to add something like MiniCaps' "-capturehwnd", "-capturepid", "-captureappbyname" to ESR?


Just want to know I do not have to wait for it  :Thmbsup:


THX

.

92
Living Room / Re: Once-in-a-century Pi Day 03/14/15
« on: March 14, 2015, 03:29 AM »
Nearly  :(

2015-03-14  9.28.01_ClipboardSavedImage.png



 

93
I love ESR  :-*         ...used it today again to capture a remote session and watch afterwards what happened  :Thmbsup:

Feature wish:

- Right now I select a window  to capture it.
- But if I drag the window to monitor 2,
  or if I put another window in front of my window I want to record,
  I do record the wrong window and the wrong things.

So is it possible to let ESR record (optional of course) ONLY and ALWAYS the first selected window?
No matter what is in front, or where that selected window will be put on the screen?

I guess something like MiniCaps' "-capturehwnd", "-capturepid", "-captureappbyname" I have in mind.

- - -

2.) Please add an shortcut for invoking "Save current frame" without asking where to save (save in folder of video instead)
Something easy, like just "S" key for "Save" or "F" for "Frame".

I want to rapidly press a key to save a frame after the other while the video is run.



Thanks for reading.

 

94
Hello   :D ,


I am a member of the first days and still enjoy reading here nearly every day.

But have a hard time often also, since my English -away from computer terms- are
not existing and so mostly I avoid to read longer posts or even write myself an helpful answer.


I wish you all the best for the next ten years and kudos and thanks to the more actively members, especially to Jesse.  :Thmbsup:



 :-*  Thanks for keeping DonationCoder.com up and running.  :-*


 


95
Thanks, but that would be a bit too complex for my explanation to hulkbuster.

96
Hi folks, i want to understand some differences between Switches and Parameters.


Switch = they ask the program or script to disable/enable something; on or off; yes/no. (e.g.: 'dir /AD' or 'dir /A-D')
Parameter = provide some information to the program or script. (e.g.: 'dir C:\Temp')
Arguments = the program or script takes an Switch or an Paramter as Argument to controll what it should do and how.


Me think,
- switch is a special kind of an parameter.
- parameter are what I call an application with to act as I want.
- arguments are what an application use to know what to do for me, provided by me as parameter.
?


I found one site that explains Parameters:Command line parameters
Batch files can only handle parameters %0 to %9

%0 is the program name as it was called,
%1 is the first command line parameter,
%2 is the second command line parameter,
and so on till %9.

What do i understand about %0, and %1 till %9. How does it can be applied in batch file.

Any suggestion from experts would be greatful.

Examples:

Batch file "Test1.cmd"
@ECHO OFF
ECHO Hello %1


Call as: test1 hulkbuster has a question

Hello hulkbuster


Call as: test1 "hulkbuster has a question"

Hello "hulkbuster has a question"


-

Batch file "Test2.cmd"
@ECHO OFF
ECHO Hello %~1


Call as: test2 "hulkbuster has a question"

Hello hulkbuster has a question


- - -

Batch file "ParameterPresenter2.cmd"
@ECHO OFF
ECHO.
ECHO 1:_%1_
ECHO 2:_%2_
ECHO 3:_%3_
ECHO 4:_%4_
ECHO 5:_%5_
ECHO 6:_%6_
ECHO 7:_%7_
ECHO 8:_%8_
ECHO 9:_%9_


Call as: ParameterPresenter "Hi folks," i want to "understand some" differences.

1:_"Hi folks,"_
2:_i_
3:_want_
4:_to_
5:_"understand some"_
6:_differences._
7:__
8:__
9:__

- - -


If I want to provide a Switch to my batch, like "Test3.cmd /?",
I would have to parse the arguments for '/?' and in case I found it,
switch in my code to the corresponding place:
Pseudo demo code
For ARG in AllArgs
   If ARG == "/?" Then GoTo _displayHelpMessage()
Next ARG


HTH?

98
Living Room / Re: DC MicroGathering USA<->Germany :)
« on: November 19, 2014, 01:00 AM »
Wonderful read.   Thanks for sharing, JoTo.  :Thmbsup:

99
General Software Discussion / Re: What's your preferred File Manager
« on: November 10, 2014, 06:12 AM »
Ok.  I'll take a look.  :)

While you are looking, keep in mind that everything you see can be changed if you don't like it...even the pull-down menus.

If you don't mind...

If you are new to TC, at least I want to recommend this settings:

- - -

Menu / Menü
Extended Menus for Total Commander / Menüs mit allen Befehlen
http://www.totalcmd...._win81amd64_eng.html  <== take a look!
http://www.totalcmd....ded_German_Menu.html  <== Deutsch

- - -

Font / Schrift
"Configuration > Options > Font"______ ==> [Change font]__ ==> 'Default' (instead of Bold)
"Konfigurieren > Einstellungen > Schrift" ==> [Schrift ändern] ==> Schriftschnitt: auf 'Standard' stellen (anstelle von Fett)

- - -

Brackets / klammern
"Configuration > Options > Display"_____ ==> [_] Show square brackets [] around directories
"Konfigurieren > Einstellungen > Anischt" ==> [_] Zeige eckige Klammern [] um Verzeichnisse

[Configuration] <== wincmd.ini
DirBrackets=0

- - -

Shortcuts / Tastaturkürzel
"Configuration > Options > Misc."______ ==> Redefine hotkeys_____________ ==> choose "F2" and for Command: "cm_RenameOnly"
"Konfigurieren > Einstellungen > Diverses ==> Tastenkombination umdefinieren ==> wähle "F2" und als Befehl: "cm_RenameOnly" aus

[Shortcuts] <== wincmd.ini
;Enable 'F2'-key to start inline-rename mode, additional to origin 'Shift+F6'
F2=cm_RenameOnly
;Enable 'Ctrl+F' to start find-files, additional to origin 'Alt+F7'     
C+F=cm_SearchFor
;Use 'Ctrl+O' to launch DOS-Box in current path
C+o=cm_ExecuteDOS
;Disable 'Alt+F4' (Exit, close program), load Help instead
A+F4=cm_Keyboard
;Disable 'F8' (Delete), load Help instead
F8=cm_Keyboard
;'Alt+P' launch 'edit path box at the top'
A+P=cm_EditPath

- - -

Be more Portable
Set INI-parameter "UseIniInProgramDir" to "7" and use "%Commander_Path%" and relative paths everywhere.
More at the wiki http://www.ghisler.c...index.php/Navigation

[Configuration] <== wincmd.ini
UseIniInProgramDir=7 ;7=use the wincmd.ini in the program folder / nimm die Wincmd.INI im TC-Programmordner
pluginbasedir=%Commander_Path%\plugins

- - -

Selection / Auswahl
Move down on selection with Spacebar
Bei Auswahl mittels Leertaste eine Zeile tiefer gehen

[Configuration] <== wincmd.ini
SpaceMovesDown=1

- - -

tc8x64w8eng.gif

100
 

"ThisIsMyFile.mp3 > ThisIsMyFile.txt"



How-to

- create a plain text file with name "ContextmenuCreateTXTFile.cmd"
- add: IF NOT EXIST "%~n1.txt" Null > "%~n1.txt"


- Below the "HKEY_CURRENT_USER\Software\Classes\*\shell\" subkey
- create a new subkey "Create TXT File from selected file" (the name of the context menu entry)
- create beneath a another subkey "command"
- and there change the (Default) REG_SZ and add the value "full\path\to\ContextmenuCreateTXTFile.cmd" "%1"


So you should get now:
HKEY_CURRENT_USER\Software\Classes\*\shell\Create TXT File from selected file\command
(Default)   "full\path\to\ContextmenuCreateTXTFile.cmd" "%1"

OR for Folders:
HKEY_CURRENT_USER\Software\Classes\Directory\Shell\Create TXT File from selected name\command\
(Default)   "full\path\to\ContextmenuCreateTXTFile.cmd" "%1"




Now right click any file, choose "Create TXT File", and you are done.


Works?  


- - -


You can also do

"ThisIsMyFile.mp3 > ThisIsMyFile.mp3.txt"
IF NOT EXIST "%1.txt" Null > "%1.txt"


or even

"ThisIsMyFile.mp3 > ThisIsMyFile.BAK.mp3"
IF NOT EXIST "%~n1.BAK%~x1" Null >  "%~n1.BAK%~x1"


- - -


And as a bonus:

IF NOT EXIST "%~n1.txt" Null >  "%~n1.txt" & START "" Notepad "%~n1.txt"

Or better:
SET NewFile="%~n1.txt"
IF NOT EXIST %NewFile% Null > %NewFile%  & START "" notepad %NewFile%


- - -

Another example:

HKEY_CURRENT_USER\Software\Classes\*\shell\Create BAK copy of selected file\command
IF NOT EXIST "%~n1.BAK%~x1" COPY %1  "%~n1.BAK%~x1"



HTH? ;D

Pages: prev1 2 3 [4] 5 6 7 8 9 ... 46next