topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Wednesday November 12, 2025, 11:43 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 ... 112 113 114 115 116 [117] 118 119 120 121 122 ... 158next
2901
General Software Discussion / Re: Text scraper (TextCatch for windows 7)
« Last post by Contro on October 20, 2012, 01:54 PM »
Based on their web page, TextCatch is compatible with Windows 7.

http://www.skesoft.com/textcatch.htm
Yeap. But not free now.
 :P
2902
General Software Discussion / Text scraper (TextCatch for windows 7)
« Last post by Contro on October 19, 2012, 08:06 PM »
I am trying to find a program similar to these

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

but for windows 7.
Better free

I was using with windows xp TextCatch, but don't work on seven.

Best regards
2903
General Software Discussion / Logs times launch some programs
« Last post by Contro on October 18, 2012, 10:31 AM »
I would like to be able to control the launch time of a program and keep in a log. Then close automatically.
Do this with several programs of my election to control the open/closing in several situations.
There is a PROGRAM for this ?

Best Regards

 :-*
2904
propietary firefox ? It's not free ?
 :(
2905
The "technical" manipulations of the mind in windows 8 preview are clear for me. It's integrated in a system very dangerous where only can survive one....
This method brings unhappiness everywhere and is necessary give political answers, not political under the influence of the great corporations.
We are creating a very unconfortable society where nobody is safe.
When we begin to live ?
I hope that with more or less work we can change all that impositions that really come with each "new system".
 :-[
2906
Ejem. In my new system with w7.64 ?
I'll have to mount a vm with 7 to make proofs.
For the moment goes well Direct Folders
 :-[
2907
IMHO, Class #32770 is the only "real" one.

Trouble is MS uses that for just about every dialog. For example, if my MD5Hash program is open, it's window class is #32770 since it's a dialog based utility.


But MilesAhead i can't follow you. It's technical for me.
Can I use or not the above code ?

 :-*
2908
oohhh my god
At final I got close the script.
Always getting the message of the window above.
Uuffff
 :-*
2909
General Software Discussion / Re: I love this click
« Last post by Contro on October 17, 2012, 06:46 PM »
may day may day
This is a SOS call
I can close this process
https://www.donation...ex.php?topic=22305.0

It's terrible. I kill the process and revive again. Possibly I have to restart. It's the last script from winkie

SOS may day SOS
 :(

2910
If anyone would like to take a stab at any of the "NEEDS HELP WITH" or offer suggestions it would be greatly appreciated!

Well, here is my input. (I've only been able to test it on a pc with WinXP and Office 2003.)

Better sanity checking to make sure we're really dealing with a file dialog
Maybe by matching the window title against a list of known good ones?
Microsoft Office compatibility
-koomi

IMHO, Class #32770 is the only "real" one. MS Office has different ones. I added a check for them. But that won't probably work with Office 2007 and later.

Work with folder tree dialogs as well (like Direct Folders)
-koomi

Should be possible, but I don't how (yet?).

EDIT:
Code is in here: New Context Menu Item Puts Any Folder Into a Dialog Window. Also Vista is mentioned here.

Allow modification of the filename after the dialog first opens
-koomi

I implemented that by moving the text-grabbing after switching to Explorer.

Your code only works if Window Explorer has the full file path in it's title. I don't have set that option, so I made it grab the path from the edit field instead. I also added a check which should prevent using Control Panel and My Computer etc.

Here is my updated code, please test it:
Code: AutoIt [Select]
  1. ; LinkExplorerPathToFileDialog.ahk v0.02 WIP by koomi & Winkie
  2. ; *** WARNING: Alpha code! Use at your own risk! ***
  3. ; Makes a file dialog instantly jump to the folder of any Explorer Window you click
  4. ; Idea stolen from Direct Folders' "QuickSwitch" feature.
  5. ;
  6. ; How to use:
  7. ;   1) Open a file dialog (Open/Save, also works with 7-Zip Extract and so forth)
  8. ;   2) Switch to an open Windows Explorer window
  9. ;   3) The Open/Save dialog will change to same path as the Explorer window
  10. ;   *) Autohotkey_L is recommended if your system has non-Western foldernames
  11. ;
  12. ; NEEDS HELP WITH:
  13. ;   User testing
  14. ;   Windows Vista/7 compatibility
  15. ;   Better sanity checking to make sure we're really dealing with a file dialog
  16. ;       Maybe by matching the window title against a list of known good ones?
  17. ;   Work with folder tree dialogs as well (like Direct Folders)
  18. ;   .INI file to allow specifying custom class+control+title combinations
  19. ;   Microsoft Office 2007/2010 compatibility
  20. ;   Pretty icon and menu stuff like "Disable/Enable"
  21. ;   Flash taskbar/caption of dialog parent when path is changed or something
  22.  
  23. #SingleInstance Force
  24. #Persistent
  25. SetBatchLines,-1
  26.  
  27. Gui +LastFound
  28. shWnd := WinExist()
  29. DllCall( "RegisterShellHookWindow", UInt,shWnd )
  30. MsgNum := DllCall( "RegisterWindowMessage", Str,"SHELLHOOK" )
  31. OnMessage( MsgNum, "ShellMessage" )
  32.  
  33. HookProcAdr := RegisterCallback( "HookProc", "F" )
  34. hWinEventHook := SetWinEventHook( 0x3, 0x3, 0, HookProcAdr, 0, 0, 0 )
  35.  
  36. OnExit, HandleExit
  37.  
  38. ; See http://www.autohotkey.com/forum/post-123323.html
  39. ShellMessage( wParam,lParam )
  40. {
  41.         global ControlHwnd
  42.         global DialogClass
  43.  
  44.         ; See http://msdn.microsoft.com/en-us/library/ms644989.aspx
  45.         If ( wParam = 1 || wParam = 4 ) ;  HSHELL_WINDOWCREATED := 1 OR HSHELL_WINDOWACTIVATED := 4
  46.         {
  47.                 WinGetClass, Class, ahk_id %lParam%
  48.                 ; Is this an Explorer window?
  49.                 If (Class = "CabinetWClass" OR Class = "ExploreWClass") ; Might need adjustment for Vista/Win7
  50.                 {
  51.                         ; Do we have a Open/Save control handle available?
  52.                         If (ControlHwnd)
  53.                         {
  54.                                 ; Get text from dialog now, user can edit it in the meantime
  55.                                 ControlGetText, ControlText, , ahk_id %ControlHwnd%
  56.                                 StringRight, LastCharacter, ControlText, 1
  57.                                
  58.                                 WinGetTitle, ExplorerTitle, ahk_id %lParam%
  59.                                 ; If full path in title is not set, try to catch path from edit
  60.                                 If ExplorerTitle Not Contains \
  61.                                         ControlGetText, ExplorerTitle, Edit1, A
  62.                                 If ExplorerTitle Contains \ ; if not, it's My Computer, Control Panel etc.
  63.                                 {
  64.                                         If (LastCharacter <> "\")
  65.                                         {
  66.                                                 ; Change the path to the Explorer path
  67.                                                 ControlSetText,, %ExplorerTitle%, ahk_id %ControlHwnd%
  68.                                                 ControlSend,, {Enter}, ahk_id %ControlHwnd%
  69.                                                 ; Put the original filename back in the dialog edit control
  70.                                                 ControlSetText,, %ControlText%, ahk_id %ControlHwnd%
  71.                                         }
  72.                                         ; For cases like 7-Zip "Extract" dialog which contain pathnames, not filenames
  73.                                         Else
  74.                                                 ControlSetText,, %ExplorerTitle%\, ahk_id %ControlHwnd%
  75.                                 }
  76.                         ; Back to where we started...
  77.                         WinActivate, ahk_class %DialogClass%
  78.                         ControlHwnd =
  79.                         DialogClass =
  80.                         }
  81.                 }
  82.         }
  83. }
  84.  
  85. ; See http://www.autohotkey.com/forum/topic35659.html
  86. HookProc( hWinEventHook, Event, hWnd, idObject, idChild, dwEventThread, dwmsEventTime )
  87. {
  88.         global ControlHwnd
  89.         global DialogClass
  90.  
  91.         If Event ; EVENT_SYSTEM_FOREGROUND = 0x3
  92.         {
  93.                 ; Windows and dialog boxes need time to "settle". See AHK manual
  94.                 Sleep, 120
  95.                 WinGetClass, DialogClass, ahk_id %hWnd%
  96.                 ; Is this a typical Open/Save dialog box?
  97.                 If DialogClass Contains bosa_sdm ; Might need adjustment for Office 2007 or 2010
  98.                         OfficeDialog := True
  99.                 If ( DialogClass = "#32770" || OfficeDialog )
  100.                 {
  101.                         ; Get control handle of edit for use in ShellMessage()
  102.                         EditClass = Edit1 ; Default
  103.                         If OfficeDialog
  104.                                 EditClass = RichEdit20W2 ; Might need adjustment for Office 2007 or 2010
  105.                         ControlGet, ControlHwnd, Hwnd,, %EditClass%, ahk_id %hWnd%
  106.                 }
  107.         }
  108. }
  109.  
  110. SetWinEventHook(eventMin, eventMax, hmodWinEventProc, lpfnWinEventProc, idProcess, idThread, dwFlags)
  111. {
  112.         DllCall("CoInitialize", Uint, 0)
  113.         return DllCall("SetWinEventHook"
  114.         , Uint,eventMin
  115.         , Uint,eventMax
  116.         , Uint,hmodWinEventProc
  117.         , Uint,lpfnWinEventProc
  118.         , Uint,idProcess
  119.         , Uint,idThread
  120.         , Uint,dwFlags)
  121. }
  122.  
  123. UnhookWinEvent()
  124. {
  125.         Global
  126.         DllCall( "UnhookWinEvent", Uint,hWinEventHook )
  127.         DllCall( "GlobalFree", UInt,&HookProcAdr ) ; free up allocated memory for RegisterCallback
  128. }
  129.  
  130. HandleExit:
  131. UnhookWinEvent()
  132. ExitApp

Greetz Winkie

Winkie I received this error in the script

http://img692.imageshack.us/img692/761/screenshot18101203936.png


Best Regards
2911
General Software Discussion / Re: I love this click
« Last post by Contro on October 17, 2012, 06:31 PM »
I am running FileBox eXtender on 64-bits Win 7 Premium, with no problems
-but I have only activated it in dialog boxes, not in the window title bar
does the feature Contro mentions work there Curt? (I think it might work for some apps, cause I'm caught off-guard by it occasionally, but it doesnt work in the few apps I just quickly tested).

-tomos' post forced me to read the initial post more carefully than the first time... No, FileBox eXtender on 64-bits Win 7 cannot do what Contro wants them to do. I didn't know, because I never used this particular feature, on XP or Vista.

-------------------------

Ouwwww  Curts take a look at this please. I am confused...
(pictures)
it's not the same.


-they are the same. FbX on XP, and FbX on W7. The exact same boxes.


Curt I think is a "rara avis" for my fault.

I am very fond to portable applications.
the other day I installed cobian backup not portable version. To my surprise in the windows 7 registry installed on the letter C: cobian backup was pointing everywhere to the letter M:
And so continues making security copies. ....

so probably I have executed Filebox eXtender in a similar way.

 :-[
2912
General Software Discussion / Re: I love this click
« Last post by Contro on October 17, 2012, 06:29 PM »
DirectFolders works !!!!

The free version.

I will try to find two more....
 :-*
2913
General Software Discussion / Re: I love this click
« Last post by Contro on October 17, 2012, 06:12 PM »
I am trying now the free version of Direct Folders
I will comment.
Flash Folders seems to have died to seven
And my dearest Filebox eXtender is not consider by some webs because is not in development any more.
2914
General Software Discussion / Re: I love this click
« Last post by Contro on October 17, 2012, 06:11 PM »
I am running FileBox eXtender on 64-bits Win 7 Premium, with no problems
-but I have only activated it in dialog boxes, not in the window title bar
does the feature Contro mentions work there Curt? (I think it might work for some apps, cause I'm caught off-guard by it occasionally, but it doesnt work in the few apps I just quickly tested).

-tomos' post forced me to read the initial post more carefully than the first time... No, FileBox eXtender on 64-bits Win 7 cannot do what Contro wants them to do. I didn't know, because I never used this particular feature, on XP or Vista.

-------------------------

Ouwwww  Curts take a look at this please. I am confused...
(pictures)
it's not the same.


-they are the same. FbX on XP, and FbX on W7. The exact same boxes.


that box of mine is classic style under windows 7 64 bit......
 :-[
2915
I'm really hooked on the "Click switch file box folder" feature of FileBox eXtender.

However, FileBox eXtender a) is buggy (crashes Dopus all the time, creates problems with the z-order of windows, etc.), and b) is discontinued.

This is why I was wondering whether it would be possible/difficult to re-build that click switch file box folder feature of FileBXtender in AutoHotkey?

That feature makes every application's Open/Save file box automatically switch to the same folder that is open in Windows Explorer (or Dopus, for example) -- as soon as you click on the respective Dopus or Explorer window.

Unfortunately, at the moment I have no idea how to code this in AutoHotkey (although I've done quite a bit of AHK coding).

Thanks already for any ideas,
Cheers David.P

Better expressed is impossible.
I need the same
 :-[
2916
General Software Discussion / Re: I love this click
« Last post by Contro on October 17, 2012, 03:53 PM »
no, that aspect doesnt work in Win7.

Have a look at this thread
FBx eXtender's 'Click switch file box folder feature' - can this be done in AHK?

(doesnt sound too positive for Windows 7), but just try it and let us know if it works

Running
 :-*
2917
General Software Discussion / Re: I love this click
« Last post by Contro on October 17, 2012, 03:44 PM »
I am running FileBox eXtender on 64-bits Win 7 Premium, with no problems
-but I have only activated it in dialog boxes, not in the window title bar
(I don't remember if there were any problems with such):

does the feature Contro mentions work there Curt? (I think it might work for some apps, cause I'm caught off-guard by it occasionally, but it doesnt work in the few apps I just quickly tested).

I am using my beloved office xp, by example.
2918
General Software Discussion / Re: I love this click
« Last post by Contro on October 17, 2012, 03:43 PM »
Ouwwww

Curts take a look at this please.
I am confused...

http://img341.imageshack.us/img341/4238/screenshot171012214216.png


it's not the same.
What am i doing bad ?



2919
General Software Discussion / Re: Is Readyboost for me ?
« Last post by Contro on October 17, 2012, 03:38 PM »
 :tellme:

Perhaps if w7 allways occupies the letter C: is an inconvenient to see another windows 7 system occupying the same letter ?
2920
General Software Discussion / Re: Is Readyboost for me ?
« Last post by Contro on October 17, 2012, 03:35 PM »
By the way . Why a hidden partition.
I used GAG in my portatil with preinstalled windows 7 to do a dual boot with xp pro ?

why a hidden partition ?
 :-*
2921
General Software Discussion / Re: Is Readyboost for me ?
« Last post by Contro on October 17, 2012, 03:30 PM »
Disconnect my seven disks
Connect the system disk (new of 2 TB)
Partition that disk
Install in the first partition C:

dont forget:
install on non-partitioned HD
let Win 7 to do the hidden partition and the C partition. (The rest you can do later.)


How many 'installs' did you have on your last computer :tellme:

I have to learn in deep tomos.
Six times under xp pro.
So
The logical number now is Seven
Seven times under windows seven.
 ;D

Wait . I take this knowledge to my base. i don't want to forget.
So I will do.
2922
Living Room / Re: Win 7, XP mode, & other first install queries
« Last post by Contro on October 17, 2012, 03:25 PM »
If I understand it correctly, the XP-Mode is basically a free copy of Windows XP installed in Microsoft Virtual PC.

So if you already have an XP license, you might as well install it in your VM software of choice.

That's the point. using virtualbox we don't need the professional version. But I have xp pro....
But a good reason is the limit of 16 GB of ram memory with premium edition.

Except that with VirtualPC you can have some things i am very used of :
multiclipboard, by example

Perfect communication between the virtual machine and the host. This is the point, and then have specialized machines.
with your old beloved soft.

 :-*
2923
Living Room / Re: Win 7, XP mode, & other first install queries
« Last post by Contro on October 17, 2012, 03:22 PM »
In order:

 hi 40 -
nice seasonal avatar :)

I think you're answering my questions from last year that Contro quoted... might help him (I'm sorted at this stage).

Oh...

Ok...

Guess I'm the one who is confused here. :-[

Me ?
 :-[
2924
Living Room / Re: Win 7, XP mode, & other first install queries
« Last post by Contro on October 17, 2012, 03:21 PM »
^If that's the case then just do a basic install of Win 7 and the drop VMWare Workstation on top of it. Then do everything under virtual. That would be the easiest and best solution IMO. With 16GB RAM and an i5 chip you should be able to handle anything...
 8)

I have an i7
I am very happy now.

Best Regards.
Really i want to come back to climb mountains

2925
Living Room / Re: Win 7, XP mode, & other first install queries
« Last post by Contro on October 17, 2012, 03:20 PM »
Hi, Tomos.  I recently bought a computer rather similar to the one you've described: Win 7 Professional 64-bit, 8 GB RAM, i5 2400.  Like you, I have some programs that date from the 1990s, and I was afraid that they wouldn't run on this machine and so I would have to figure out how to use XP mode.  Well, to my surprise, almost all the programs I have will run under Windows 7.  Every now and then, I'd be asked whether I wanted to run the program in "compatibility mode."  If I said yes, I was given a choice of various earlier versions of Windows.  I didn't have to install anything to make the computer give me this choice.  It seems to be a feature simply built into Windows 7 (or perhaps Windows 7 Professional).  Whether this is what is meant by XP-mode, I'm not sure.  I didn't expect the process to be so seamless.  Anyway, I think you too may find that all or almost all your programs will run on Windows 7 without your having to do much to make that happen.

I think the problem is communicate.
The important thing is communicate.
I have forgot splendid programs and old ones like wordperfect 3.1 or Quattro because the communication.

At the present moment you can have virtual machines running other operating systems, but the importan point for me is the ability to use Ditto (clipboard manager)
Ditto have the feature ditto friends.
i am trying to know the possibility of interchange information with the virtual machine.

I think everyone in this forum wish to have an integrated option.

 :P
Pages: prev1 ... 112 113 114 115 116 [117] 118 119 120 121 122 ... 158next