topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Tuesday November 11, 2025, 7:29 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

Recent Posts

Pages: prev1 ... 125 126 127 128 129 [130] 131 132 133 134 135 ... 158next
3226
Post New Requests Here / Re: Little modification to menuak.ahk
« Last post by Contro on June 06, 2012, 06:17 PM »
Try to replace all launcher.ini occurrences with:
%A_ScriptDir%\launcher.ini

Nice idea. I will apply.

Best Regards
 :-*
3227
Post New Requests Here / Re: Little modification to menuak.ahk
« Last post by Contro on June 06, 2012, 06:17 PM »
Try adding the following line as the first line in your akmenu.ahk script file:
Code: Autohotkey [Select]
  1. SetWorkingDir, %A_ScriptDir%

Nice idea indeed. Goingggg

 :-*
3228
Post New Requests Here / Re: CorrectWRegistry
« Last post by Contro on June 06, 2012, 07:53 AM »
 :P

This problem in web is related to autocad, but I have DISCOVERED than BestGreeting produces the same problem.
The autocadfix goes well but don't solve my problem, because of this new affecting program.
So :

1) I would like a vbs script adapted to the new situation

or whenever you like in AHK

 :-*
3229
Post New Requests Here / CorrectWRegistry
« Last post by Contro on June 06, 2012, 06:14 AM »
I have a nasty and disgusting problem with the module add programs from the panel control

In the program list is produced a step with empty.

http://img694.imageshack.us/img694/8265/mozart06062012113606.png

http://img29.imageshack.us/img29/5787/mozart06062012113641.png



There is a lot of empty space in my list of programs installed.

This is due to a bug in the windows xp pro sp3.

Each time takes me , and often, about ten minutes lo locate and replace the error chains.

This problem is documented here :
http://help.lockergn...--ftopict446833.html

These are my values :
Y:\PORTABLES\Multimedia\BestGreetings\BestGreetings\BestGreetings.exe,-1
M:\ARCHIV~1\Asuni\BUBBLE~1.2\Bubble.ico,-0
Y:\PORTABLES\Navegadores . Internet . Correo\COMMVI~2\cv.exe,-0
M:\ARCHIV~1\NOTEPA~2\NotePager 32,-0
Y:\PORTABLES\Oficina\SPARTA~1\Spartan.exe,-0

[HKEY_LOCAL_MACHINE\SOFTWARE\M*icrosoft\Windows\Cur rentVersio*n\Uninstall]
DisplayIcon
C:\Archivos de programa\AutoCAD 2002 Esp\acad.exe,-1
DisplayIcon
C:\Archivos de programa\AutoCAD 2002 Esp\acad.exe


3230
Post New Requests Here / Little modification to menuak.ahk
« Last post by Contro on June 05, 2012, 06:30 PM »
I am using the splendid program menuak.ahk

Is possible to modify ?

My problem is simple.

If I put a link in my CRM Goldmine 5.5 don't find the launcher.ini. curiosly don't happen when launched with PowerTray from lopesoft.com.

Example :
Y:\PORTABLES\Personaliza pc\menuak.ahk\menuak.ahk
When I execute don't read the launcher.ini. Reads the standard one because don't find the corresponding in the same folder.
Y:\PORTABLES\Personaliza pc\menuak.ahk\launcher.ini

I have tried to solve this problem with a bat file, but the result is not good because I don't know how to close the cmd window while I am executing the script.
So. I would like to obtain a menuak.ahk able to find the launcher.ini in the same folder where the .ahk file is.

The initial code is :

Code: Autohotkey [Select]
  1. IniRead, numRows, launcher.ini, General, numRows, 0
  2. IniRead, numCols, launcher.ini, General, numCols, 0
  3. if !numRows
  4.   InputBox, numRows, , Enter number of rows   , , 200, 120, , , , , 5
  5. if !numCols
  6.   InputBox, numCols, , Enter number of columns, , 200, 120, , , , , 2
  7. IniWrite, %numRows%, launcher.ini, General, numRows
  8. IniWrite, %numCols%, launcher.ini, General, numCols
  9.  
  10. Loop % numRows*numCols
  11. {
  12.   IniRead, Title%A_Index%, launcher.ini, Titles, Title%A_Index%, %A_Index%
  13.   IniRead, Path%A_Index%, launcher.ini, Paths, Path%A_Index%,
  14. }
  15.  
  16. Gui, Add, Button, w150 r1.5 gRun vButt1, %Title1%
  17. Gui, Add, Button, w40 hp xp+150 gEdit vEdit1, Edit
  18. Edit1:=1
  19. Butt1:=1
  20.  
  21. Loop % numRows*numCols-1
  22. {
  23.   Index:=A_Index+1
  24.   Title:=Title%Index%
  25.   ys:=!Mod(Index-1, numRows) ? "ys" : "xp-150 yp+35"
  26.   Gui, Add, Button, w150 hp %ys% gRun vButt%Index%, %Title%
  27.   Gui, Add, Button, w40 hp xp+150 gEdit vEdit%Index%, Edit
  28.   Edit%Index%:=Index
  29.   Butt%Index%:=Index
  30. }
  31.  
  32. Gui, Show, , Menu expedientes
  33.  
  34. Gui 2:+owner
  35. Gui 2:Add, Text, right, Button title:
  36. Gui 2:Add, Text, right, Program to run:
  37. Gui 2:Add, Edit, w300 ys vSelTitle
  38. Gui 2:Add, Edit, w300 vSelPath
  39. Gui 2:Add, Button, w25 gFileSelect vFileSelect r0.9 xp+300 yp, ....
  40. Gui 2:Add, Button, w100 gSelOk r1.5 xp-250 yp+35 default, OK
  41.  
  42. return
  43.  
  44.   tpp:= % "Path" %A_GuiControl%
  45.   Run % %tpp%
  46. return
  47.  
  48.   Gui +Disabled
  49.   cIndex:=%A_GuiControl%
  50.   GuiControl, 2:, SelTitle, % Title%cIndex%
  51.   GuiControl, 2:, SelPath, % Path%cIndex%
  52.   FileSelect:=cIndex
  53.   Gui 2:Show, , Select options for button ?%cIndex%
  54. return
  55.  
  56. FileSelect:
  57.  Gui +OwnDialogs
  58.   FileSelectFile, Path%cIndex%, 3, %A_ProgramFiles%, Select program to run with button ?%cIndex%, Programs(*.exe;*.lnk;*.bat)
  59.   GuiControl, 2:, SelPath, % Path%cIndex%
  60. return
  61.  
  62.  
  63. 2GuiClose:
  64.  Gui 1:-Disabled
  65.   Gui 2:Cancel
  66. return
  67.  
  68. SelOk:
  69.  Gui 1:-Disabled
  70.   Gui 2:Submit
  71.   Path%cIndex%:=SelPath
  72.   Title%cIndex%:=SelTitle
  73.   GuiControl, 1:, Butt%cIndex%, % Title%cIndex%
  74.   IniWrite, % Title%cIndex%, launcher.ini, Titles, Title%cIndex%
  75.   IniWrite, % Path%cIndex%, launcher.ini, Paths, Path%cIndex%
  76. return

and the launcher.ini contains the configuration

[General]
numRows=5
numCols=2
[Titles]
Title1=Carpetas expediente
Title2=Traspaso Gestión MGD
Title3=Creación Goldmine
Title4=Procedimientos Proyecto
Title5=Procedimientos Informáticos
Title6=Procedimientos Comunes
Title7=Generar orden de trabajo
Title8=Lanzar una carpeta
Title9=Lanzar una web
Title10=Lanzar Goldmine
[Paths]
Path1=Y:\GABINETE\PROYECTOS\Listas.exe
Path2=ERROR
Path3=ERROR
Path4=ERROR
Path5=ERROR
Path6=ERROR
Path7=ERROR
Path8=Y:\PORTABLES\Educativos\BabelBox
Path9=http://www.autohotkey.com/forum/viewtopic.php?p=304050#304050
Path10=Y:\GoldminePrg\gmw5.exe /i:esm /u:JOSE /p:

(is a simple example, not real)

 :-*
3231
General Software Discussion / Re: How Stardock Fences startup ?
« Last post by Contro on June 04, 2012, 08:16 PM »
Goingg to see Autoruns

Best Regards

It's good too.
 :-*
3232
General Software Discussion / Re: How Stardock Fences startup ?
« Last post by Contro on June 04, 2012, 12:05 PM »
You can look at shell extexsions using ShellEx View from:

http://www.nirsoft.n.../utils/shexview.html
-Carol Haynes (June 04, 2012, 11:19 AM)

You are rightttttttttttt, you are righttttt !!!!!!!!!!!!!!!!!!!!!!!!!!11

http://img101.imageshack.us/img101/7251/besotene2.gif
http://img101.imageshack.us/img101/7251/besotene2.gif


Best Regards
 :)
3233
General Software Discussion / Re: How Stardock Fences startup ?
« Last post by Contro on June 04, 2012, 12:00 PM »
Goingggggg
 :P
3234
General Software Discussion / Re: How Stardock Fences startup ?
« Last post by Contro on June 04, 2012, 10:45 AM »
How can I determine when and how startup ?

How do an explorer shell extension ?

I am not sure if is or not fences causing my problem. Simply try to start in the startup in the most simple way.

My system is windows xp pro sp3 spanish version
3235
General Software Discussion / How Stardock Fences startup ?
« Last post by Contro on June 04, 2012, 06:28 AM »
How Stardock Fences startup ?

I am having certain problems with Firefox and I am investigating
I observe Fences from stardock charge at the startup, but I don't observ any service or executable at the startup.

How charge or goes into residents this program ?

Best Regards

P.D. I observ the entries in the registry.

 :-[
3236
Post New Requests Here / Re: IDEA ~ Show List of Shortcuts overlaid on Desktop
« Last post by Contro on June 03, 2012, 02:14 AM »
where are all the solutions you guys have been working on?

Boarding Hows shows a (separate) context menu for each application - hotkey Win+F1 to show

Each application must have a corresponding helper file, and it must be in the same format as Tomos' original examples (ie XXX / ZZZZZZZZZZZZZZZZ) as the script parses each line and uses the first field to build the submenu's 

Helper files must be named for the relevant application (eg Outlook.txt, Excel.txt, etc), and the names should be case sensitive - if you want to have a game simply rename the sample text files according to your particular requirements

only downside I can see is dealing with multiple apps with similar/common titles (eg Notepad, Notepad2, Natepad++, etc)



In my system don't go and I don't know what am i doing bad.

I execute the script, but the combination WIN+F1 don't go.
Can I define other hotkey ?

3237
General Software Discussion / Re: Write text over the wallpaper
« Last post by Contro on June 03, 2012, 01:33 AM »
 ;D

I have found another one trying other things :

Frameless transparent rectangles can easily be done with atnotes.

https://www.donation...ex.php?topic=28022.0


http://atnotes.free.fr/

Best Regards

 :-*
3238
General Software Discussion / Re: Shortcuts list or table
« Last post by Contro on June 03, 2012, 12:39 AM »
This related, might help:
IDEA ~ Show List of Shortcuts overlaid on Desktop

Target's solution here

Going there
 :-*
3239
General Software Discussion / Shortcuts list or table
« Last post by Contro on June 02, 2012, 04:28 PM »
Shortcuts list or table

Perhaps I don't need a soft this time. A simple empty printably to define the shortcuts I use with programs from donation coder if possible.
I need to memorize the shortcuts.

Win+Pause = Reopen last closed windows .

Win+2 = Open a determined program.

etc , etc,

Exists ?

A big printable keyboard for defining combinations ?


Best Regards

And why not ?

A soft representing a graphical definable keyboard to present in the screen and have a general idea of a simple eye (at a glance)


3240
General Software Discussion / Re: ReRun 2.3.0.2
« Last post by Contro on June 02, 2012, 09:37 AM »
Adopted
 ;D
3241
General Software Discussion / Re: Reopen closed folders/apps. under xp/7
« Last post by Contro on June 02, 2012, 09:13 AM »
ReOpen from Miles Ahead
 ;D

http://www.favessoft.com/hotkeys.html
3242
General Software Discussion / Re: ReOpen 4.9.6.0
« Last post by Contro on June 02, 2012, 07:11 AM »
Oh Miles . I posted looking for this.
Downloadinggggggggggggggggggggggggggggg
 :P
3243
General Software Discussion / Re: Reopen closed folders/apps. under xp/7
« Last post by Contro on June 02, 2012, 06:55 AM »
I would like a more simple tool to remember the last closed applications/windows and able to reopen these items.

Best Regards
3244
General Software Discussion / Reopen closed folders/apps. under xp/7
« Last post by Contro on June 01, 2012, 10:03 PM »
I would like a soft for reopening closed windows and applications like UndoClose, but for windows xp too.

UndoClose

 :-*
3245
I have few serial licensed software.
I usually keeps that information in my old CRM Goldmine 5.5
And have a free copy of revo uninstaller (when freeware) to take control of the installed programs.
I like because when needed you can select a full uninstallation.

Best Regards
3246
 ;D

but the thread is for the present
 :-*
3247
Check folder and tell me which PDFs are images (non-searchable) [/b]

Goingggg
 ;D
3248
I would like a finder or searcher of the pdf files that are scanned or imaged, not searchables.

I just saw what looks like your other thread on that.  I don't have an answer.  I wondered about using pdftotext from XPDF, and assuming that any file with zero text output was an image, but I don't think that will work if the file is encrypted.  If the information in pdfinfo (from the same XPDF package) is both correct and complete, there just doesn't seem to be a flag that says that the file is a scanned image.  Once you've found them, maybe the best thing is to rename them, or otherwise tag them, but that doesn't help find them in the first place.

I''ll take a look at XPDF
Best Regards
3249
At about 23.45 hours PDFInfoGUI begins to present the pdf files from my unit Y:
Obviously will take time. Even is counting the number and summing of all the pdf files located.....

 :-*

I am observing, as Skwire tells above, that many of the pdf located have metadata failing, or not filling the field subject.....

I received a pdfinfo.exe error but the processing seems continues.

I have no idea if is related to PDFInfoGUI. So I invoked the Task Administrator.
I put the screenshots. May be help. I don't know.

http://img35.imageshack.us/img35/7721/mozart2805201200538.png

http://img51.imageshack.us/img51/2310/mozart2805201200349.png

http://img812.imageshack.us/img812/7955/mozart2805201200357.png


 :-\

PDFInfoGUI continues its work and I haven't observed nothing strange.

3250
Some file managers will offer previews.  I use xplorer2, but there are freebies out there.  Like Total Commander.  http://www.ghisler.com/  Does anyone know if TC will preview PDFs as native?

I am going to investigate if TC preview PDF as native.
Really I am not interested in preview the pdf. Only determine if is a searchable PDF or an image PDF.
I will comment
 :P


It's shareware. I prefer a freeware.  :(

Pages: prev1 ... 125 126 127 128 129 [130] 131 132 133 134 135 ... 158next