topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Sunday September 20, 2026, 11:06 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 ... 147 148 149 150 151 [152] 153 154 155 156 157 158next
3776
General Software Discussion / Re: Shortcut Creator
« Last post by Contro on June 23, 2010, 03:33 PM »
the equivalent is : Mostrar la ruta completa en la barra de título

Done

I'try and comment.
 :)
3777
Post New Requests Here / A model script to to control and save data entries
« Last post by Contro on June 23, 2010, 02:58 PM »
I would like a model script in autohotkey to control and save data entries.
Additionally to the ordinary variables with a decision field and a counter to increment in the way : 125.07, where 07 is the year and 125 a number to be 126 in the next addition. (126.07, 127.07....)
Saved to a database (dbf, xml, or similar).
When execute show a window similar to this :

Basically I need introduce some variable, decide over decision fields, show or edit a counter or any previously defined variables and less more.
After I accept all the introduced data I would like keep register in a xml, ini, dbf or similar support.

So I need :
A general script for introducing in a screen data variable, option variable, counter variable, i can modify and keep register in any type of database i can control with AHK.

Best Regards

P.D. I would like to manage in the future with a dbf file. Ouwww. I think is better with sqlite......
3778
General Software Discussion / Re: Shortcut Creator
« Last post by Contro on June 21, 2010, 08:24 PM »
http://ewemoa.dcmemb...reateShortcutsIn.exe

I try but I do bad. I am trying with the option in the contextual mouse menu window explorer with no result in the option "in the explorer windows" .


3779
General Software Discussion / Re: Shortcut Creator
« Last post by Contro on June 21, 2010, 08:08 PM »
ojú. I see : security

http://es.wikipedia.org/wiki/Sha
3780
General Software Discussion / Re: Shortcut Creator
« Last post by Contro on June 21, 2010, 08:07 PM »
I'm going.
And will comment

Why do you put SHA1: . What's that ?

3781
General Software Discussion / Re: multilink over a photo taken by us
« Last post by Contro on June 21, 2010, 08:03 PM »
Is more or less what I need, but I don't want for the web. Only for the desktop.

How can i do ?

Best Regards
3782
General Software Discussion / Re: Shortcut Creator
« Last post by Contro on June 21, 2010, 10:19 AM »
I don't think I understand yet.

Is it that you want to be able to make shortcuts into all open Windows Explorer windows (except the one with files selected)?  That might be possible.

Exactly well. That's  :-*
3783
General Software Discussion / Re: Shortcut Creator
« Last post by Contro on June 21, 2010, 10:18 AM »
This may help :

GetWindowsExplorerPath(_hWnd)
{
   local pid, hMem, pv, pidl, pidl?, explorerPath

   If (A_OSType = "WIN32_NT")
   {
      pid := DllCall("GetCurrentProcessId")
      SendMessage 0x400 + 12   ; CWM_GETPATH = WM_USER + 12
            , pid, 0, , ahk_id %_hWnd%
      hMem := ErrorLevel
      if (hMem != 0)
      {
         pv := DllCall("Shell32\SHLockShared"
            , "UInt", hMem, "UInt", pid)
         if (pv != 0)
         {
            pidl := DllCall("Shell32\ILClone", "UInt", pv)
            DllCall("Shell32\SHUnlockShared", "UInt", pv)
         }
         DllCall("Shell32\SHFreeShared"
            , "UInt", hMem, "UInt", pid)
      }
   }
   Else   ; Win9x
   {
      SendMessage 0x400 + 12   ; CWM_GETPATH = WM_USER + 12
            , 0, 0, , ahk_id %_hWnd%
      pidl? := ErrorLevel
      if (pidl? != 0)
      {
         pidl := DllCall("Shell32\ILClone", "UInt", pidl?)
         DllCall("Shell32\ILGlobalFree", "UInt", pidl?)
      }
   }
   VarSetCapacity(explorerPath, 512, 0)
   DllCall("Shell32\SHGetPathFromIDList"
      , "UInt", pidl, "Str", explorerPath)
   Return explorerPath
}

;-- Example of use

hWnd := WinExist("A")
WinGetClass wClass, ahk_id %hWnd%
If (wClass != "ExploreWClass" and wClass != "CabinetWClass")
   MsgBox Use this only with a Windows Explorer window!
Else
   MsgBox % GetWindowsExplorerPath(hWnd)



******
I observed I need to use the script from inside each folder.
3784
General Software Discussion / Re: Shortcut Creator
« Last post by Contro on June 21, 2010, 07:11 AM »
Additionally a few weeks ago I decided to control incidents by means of Goldmine 5.5 manager. I have project for my customers and incidents for the rest. When an incident is external I have observed difficulties to control if I don't apply intensive control. Because some phases don't depend upon me. The codes for the incidents are different and are situated in many places.
But the projects are code in the way 125.10 , where 10 is the year.
All hanging from
Y:\GABINETE\PROYECTOS

So Y:\GABINETE\PROYECTOS\125.10\ is a folder i will need when 125.10 project is concerned.
As I commented you above I have a module on excel 2002 to introduce the project number 125.10 and from inside excel access to all folders and files of that project as from goldmine 5.5 too. Using bat, vbs.

I received information from customers or download from the web or Thunderbird often. I don't control emails from goldmine email center.

So
I think is difficult and tricky apply to the active windows without variables because we can loose focus over that windows for any reason (an alarm, a warning/error window, etc.). But if we control the name and path to that windows we can execute with your script and control really where , when and how send the selected file or folder to create the soft link.

Best Regards
3785
General Software Discussion / Re: Shortcut Creator
« Last post by Contro on June 21, 2010, 07:02 AM »
Hello again.
The idea is splendid.
I have revised my support and I remembered received from Computer hope a script for that purpose because I need some other feed for excel 2002 to control variables.
So.
As I told you there is no way with antelation the folders I need. But if we can know the active windows and his codes I think is possible to create the variables looking for that active windows in the windows registry.
When we execute the bat file we create those variables.
What do you think about it ?

Best Regards



3786
General Software Discussion / Re: Monitor the size of files
« Last post by Contro on June 20, 2010, 06:58 PM »
To clarify, all you want is something like a simple listview that you can add files to and have it show their size?

Yes. i think so.
Best Regards
3787
General Software Discussion / Re: Monitor the size of files
« Last post by Contro on June 20, 2010, 06:58 PM »
Hi Contro. I'm not sure about this "predefined list of files".

SpaceSniffer and OverDisk are two personal faves, but sounds like you may want lists rather than graphical representations.

Have you tried any of the space analysis tools such as TreeSize Free or GetFoldersize which provide lists?

Sorry if I'm on the wrong track here--you might want to go over to Coding Snacks and ask for help.

I'll take a good look to all links.
I have used in the past programs to inform the folders size and files size and obtain a Statistical general information. Take several minutes to report. Look interesting the first time to see the bigger files you have and the bigger folders, but I need to control the size of certain files that may affect to the system when they are very large.

a batch perhaps ?

Best Regards

3788
General Software Discussion / Re: Shortcut Creator
« Last post by Contro on June 20, 2010, 06:53 PM »
Ewemoa I am here and don't forget. It's only too much work.
One situation is this :
I scan a document and save to the year scanned documents. Then I open one or two folders and need a shortcut there. This two folders always vary. And the scanned folder vary each year.
 :P
I will comment
3789
General Software Discussion / Re: multilink over a photo taken by us
« Last post by Contro on June 19, 2010, 04:51 PM »
I'll take a look and deep comment

Best Regards

3790
Coding Snacks / Re: IDEA: Double-click makes a new folder
« Last post by Contro on June 14, 2010, 03:19 AM »
Compiled script uploaded.
- The file name is selected after it is created so you can easily rename it
- You can choose if you want the script to create text files or folders (text files are created by default - see the Config.txt file thats in the zip)

Sorry but I couldn't figure out a way to work with the desktop (wasn't sure how to detect if a file was or wasn't selected on the desktop)

I am trying this script. First AVG detects as a false virus. No problem.
But now I don't understand how function.
I double click but nothing happen.
A tutorial please
xp+sp3

Best Regards


3791
General Software Discussion / Re: Shortcut Creator
« Last post by Contro on June 13, 2010, 08:13 PM »
IN the past I need environmental variables and have no utility because need to reiniate the system to take place.
I use batch (.bat) files to set environment variables -- this way I do not need to restart my system (or log off and then on) to make adjustments.

For example, I have done something similar to the following successfully:

1. Create a file named CreateShortcutsIn.bat in the same directory where CreateShortcutsIn.exe is located.

2. Put the following in the file named CreateShortcutsIn.bat:

set MYCOMMONPATH=Documents and Settings\JOSE\Escritorio
set ONE=C:\%MYCOMMONPATH%
set TWO=D:\%MYCOMMONPATH%
set THREE=F:\%MYCOMMONPATH%
set FOUR=I:\%MYCOMMONPATH%
set FIVE=M:\%MYCOMMONPATH%
set SIX=N:\%MYCOMMONPATH%
start CreateShortcutsIn.exe

3. Put the following in CreateShortcutsIn.ini:

Code: Text [Select]
  1. [Settings]
  2. ; hotkey to bring up menu
  3. Hotkey=^+c
  4. ; destination locations (numbered starting at 1) to choose from
  5. ; absolute path
  6. 1=C:\
  7. ; environment variable support
  8. 2=%TEMP%
  9. ; multiple locations, separate by |
  10. 3=C:\WINDOWS|C:\
  11. ; hotkey for location(s)
  12. 4=^+d::C:\Documents and Settings
  13. 5=^+p::%ONE%|%TWO%|%THREE%|%FOUR%|%FIVE%|%SIX%

4. Use CreateShortcutsIn.bat (the batch file) to start the program (e.g. double-click its icon).

Does that sort of thing work for you?


I'll try and comments.
Best Regards

3792
General Software Discussion / Re: Shortcut Creator
« Last post by Contro on June 13, 2010, 08:10 PM »
I would like to modificate the script CTRL+SHIFT+S to modify during the shortcut copy the comment in it.
If there are multiple destination folders, do you want to specify a comment for each destination separately, or should all destinations use the same comment?

Please provide an example.

It's a minor pretension.
May be different comment for each one shortcut. But perhaps is better do this when we have created the shortcut. I have made proofs and is preferable edit the title of the shortcut. Try as you wish.
The point is mantain simplicity. Edit the comment is useful for only a few users.
Concatenate the action is complicated. I think better only one action at a time.
3793
General Software Discussion / Monitor the size of files
« Last post by Contro on June 13, 2010, 02:27 AM »
I use Goldmine 5.5 and Thunderbird.
I would an utility to run occasionally the size of a predefined list of files.

Best Regards.

Note : I have too many disks. Several terabytes, so I would like only seeks in the predefined list of files. and in the local area network.
3794
General Software Discussion / Re: Shortcut Creator
« Last post by Contro on June 11, 2010, 06:18 PM »
IN the past I need environmental variables and have no utility because need to reiniate the system to take place.
It's better define an inmediate variable.
You must get simple and inmediate solution.
I have locate several programa for this purpose I because of that I have ask you to have and additional option in the contextual menu after the hotkey.
There are many ways doing things, but the way you are developing is the best one to complementary with other solutions.
At the present moment all we need is solve the one to many copy in a simple way.

I have observed the code proposed under the hotkey : Control+Shift+s even do very well when we select several icons at the once tipe.
And this is the to single one many to many places.

 :P
3795
General Software Discussion / Re: Shortcut Creator
« Last post by Contro on June 11, 2010, 06:12 PM »
To follow the firefox addon for shortcuts
http://forums.mozill...p?f=38&t=1917131
 :) from Spins
Thanks for the link.  I intend to take a look.
I took a look and examined:

  • Tab Mix Plus
  • Multirow Bookmarks Toolbar

but did not figure out anything relevant to the current situation.

Don't exists.
That is the answer. I have revised all the addons .
Perhaps is difficult.
3796
General Software Discussion / Re: Shortcut Creator
« Last post by Contro on June 11, 2010, 06:10 PM »
The program seems don't see beyond the fifth line :

[Settings]
; hotkey to bring up menu
Hotkey=^+c
; destination locations (numbered starting at 1) to choose from
; absolute path
1=C:\
; environment variable support
2=%TEMP%
; multiple locations, separate by |
3=C:\WINDOWS|C:\
; hotkey for location(s)
4=^+d::C:\Documents and Settings
5=^+p::C:\Documents and Settings\JOSE\Escritorio|D:\Documents and Settings\JOSE\Escritorio|F:\Documents and Settings\JOSE\Escritorio|I:\Documents and Settings\JOSE\Escritorio|M:\Documents and Settings\JOSE\Escritorio|N:\Documents and Settings\JOSE\Escritorio
;5=^+p::C:\Documents and Settings\JOSE\Escritorio|D:\Documents and Settings\JOSE\Escritorio|F:\Documents and Settings\JOSE\Escritorio|I:\Documents and Settings\JOSE\Escritorio|M:\Documents and Settings\JOSE\Escritorio|N:\Documents and Settings\JOSE\Escritorio|\\jose-a04555092a\C\Documents and Settings\JOSE\Escritorio
; 5=^+p::%USERPROFILE%|%TEMP%
; cadena muy larga
; 6=^+q::C:\Documents and Settings\JOSE\Escritorio|D:\Documents and Settings\JOSE\Escritorio|F:\Documents and Settings\JOSE\Escritorio|I:\Documents and Settings\JOSE\Escritorio|M:\Documents and Settings\JOSE\Escritorio|N:\Documents and Settings\JOSE\Escritorio|\\jose-a04555092a\C\Documents and Settings\JOSE\Escritorio
; aunque la acorto no aparece la opción 6 en el menú contextual.
; quito la opción seis y la ponto en lugar de la 5 en fecha 09.06.2010

3797
General Software Discussion / Re: Shortcut Creator
« Last post by Contro on June 10, 2010, 09:36 AM »
please don't use imageshack images -- attach images to posts instead.

Understood mouser
3798
General Software Discussion / Re: Shortcut Creator
« Last post by Contro on June 10, 2010, 09:36 AM »
And I don't see the sixth line created in my ini file. Can't I create new lines ?

3799
General Software Discussion / Re: Shortcut Creator
« Last post by Contro on June 10, 2010, 09:31 AM »
Fails because my list is too long :

3800
General Software Discussion / Re: Shortcut Creator
« Last post by Contro on June 10, 2010, 09:07 AM »
I would like to try one list.
I'll comment. With some path in my local net.

Best Regards

P.D. Please leave one option in the right menu to launch any application.

Pages: prev1 ... 147 148 149 150 151 [152] 153 154 155 156 157 158next