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, 2:09 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 ... 119 120 121 122 123 [124] 125 126 127 128 129 ... 158next
3076
Post New Requests Here / Re: Create a file list from multiple folders
« Last post by Contro on July 07, 2012, 04:35 AM »
Running to try

Best Regards
3077
Post New Requests Here / Create a file list from multiple folders
« Last post by Contro on July 06, 2012, 04:56 PM »
Create a file list from multiple folders

I would like a soft for propose the folders.
Then I can obtain a list with the files sorted :

by creation or modification date
by alphabetical order

Not include the system files
Include de subfolders contained in the proposed folders.

Best Regards
 :-*
3078
General Software Discussion / Re: Table Creator
« Last post by Contro on July 05, 2012, 01:53 PM »
Find:
\n
Replace:
</td><td></td><td></td></tr>\n<tr><td>

Then fill in the <table></table> at the top/bottom.

Not a script, but a quick regex that should do what you want. Any decent text editor will work.

http://img101.imageshack.us/img101/7251/besotene2.gif
3079
General Software Discussion / Re: Table Creator
« Last post by Contro on July 05, 2012, 12:22 PM »
Find:
\n
Replace:
</td><td></td><td></td></tr>\n<tr><td>

Then fill in the <table></table> at the top/bottom.

Not a script, but a quick regex that should do what you want. Any decent text editor will work.

I'll try too.
with notepad++
3080
General Software Discussion / Re: Table Creator
« Last post by Contro on July 05, 2012, 12:22 PM »
 ;D

Sorry.

I can do it with word 2002

Any other soft ?

Best Regards
 :-*
3081
General Software Discussion / Table Creator
« Last post by Contro on July 05, 2012, 12:04 PM »
I have a text .txt file with some lines.
And I would like convert in a table with Three columns
and after print the table

In this way

1. SEVERAL LINES IN THE TXT FILE
On the Table toolbar, click the Insert
But this time, click the little black
down-pointing arrow just to the right
of the icon
If you get the Insert Table
click the cancel button because
When the black arrow is clicked,

2. Automatic generation of the TABLE

http://img443.imageshack.us/img443/2640/mozart05072012175703.png


Do you know a script for do this ?

Best Regards




3082
 ;D

I was in Sweden some years ago and use a hat with ears protection in ...... summer.

Nice indeed use a beard.

3083
tenerife : Teide

http://i113.photobucket.com/albums/n221/SerPan_album/Imagen030-4.jpg
3084
 ;D

From Canary Islands

http://i126.photobucket.com/albums/p108/random17_bucket/emoticons.jpg


 :-*
3085
(see attachment in previous post)

hmm... I have just tested both Right Click Enhancer and Notepad++, and it turns out that the "Notepad++"-option in the above picture of a context menu is not from RBSoft's application, as I expected it to be, but from Notepad++ itself! So all you should do is to re-install (a new version of) Notepad++ , and you will have the entry you were asking for!
 :up:


Unbelievable and wonderful.

Running to get it.

Best Regards
 ;D

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

Wonderful.
Wonderfullllllllllllllllllllllllllllllllllll

http://img101.imageshack.us/img101/7251/besotene2.gif
http://img101.imageshack.us/img101/7251/besotene2.gif
http://img101.imageshack.us/img101/7251/besotene2.gif
http://img101.imageshack.us/img101/7251/besotene2.gif
3087
I did not write any of this, (except _ExClip function and set a hotkey), it was written by Ascend4ant and Melba23 over on the AutoIt forum.

Thank them if you want to thank someone.

The hotkey is set for Shift+Alt+C, edit the code to change it to what you like.

  • If nothing is selected, the Explorer path is clipped.
  • If something is selected, its full path is clipped.
  • If multiple somethings are selected, only the first one is returned.

Code: AutoIt [Select]
  1. ; http://www.autoitscript.com/forum/topic/89833-windows-explorer-current-folder/page__st__40#entry973904
  2. #include <Array.au3>
  3.  
  4. HotKeySet('+!c', '_ExClip') ; Shift+Alt+C
  5.  
  6. Local $oErrorHandler = ObjEvent("AutoIt.Error", "_ComErrFunc")
  7.  
  8.         Sleep(100)
  9.  
  10.  
  11. Func _ExClip()
  12.         $hExplr = WinActive("[REGEXPCLASS:(Explore|Cabinet)WClass]")
  13.         If $hExplr <> '' Then
  14.                 $aSelection = _ExplorerWinGetSelectedItems($hExplr)
  15.                 If $aSelection[0] = 0 Then
  16.                         If StringLeft($aSelection[1], 2) <> '::' Then ClipPut($aSelection[1])
  17.                 Else
  18.                         ClipPut($aSelection[2])
  19.                 EndIf
  20.         EndIf
  21.  
  22.  
  23.  
  24. ; ==========================================================================================================================
  25.  
  26. ; Func _ObjectSHFolderViewFromWin($hWnd)
  27. ;
  28. ; Returns an 'ShellFolderView' Object for the given Window handle
  29. ;
  30. ; Author: Ascend4nt, based on code by KaFu, klaus.s
  31. ; ==========================================================================================================================
  32.  
  33. Func _ObjectSHFolderViewFromWin($hWnd)
  34.     If Not IsHWnd($hWnd) Then Return SetError(1,0,0)
  35.     Local $oShell,$oShellWindows,$oIEObject,$oSHFolderView
  36.  
  37.     ; Shell Object
  38.     $oShell=ObjCreate("Shell.Application")
  39.     If Not IsObj($oShell) Then Return SetError(2,0,0)
  40.  
  41. ;   Get a 'ShellWindows Collection' object
  42.     $oShellWindows = $oShell.Windows()
  43.     If Not IsObj($oShellWindows) Then Return SetError(3,0,0)
  44.  
  45. ;   Iterate through the collection - each of type 'InternetExplorer' Object
  46.  
  47.     For $oIEObject In $oShellWindows
  48.         If $oIEObject.HWND = $hWnd Then
  49.             ; InternetExplorer->Document = ShellFolderView object
  50.             $oSHFolderView=$oIEObject.Document
  51.             If IsObj($oSHFolderView) Then Return $oSHFolderView
  52.             Return SetError(4,0,0)
  53.         EndIf
  54.     Next
  55.  
  56.     Return SetError(-1,0,0)
  57.  
  58. ; ==========================================================================================================================
  59. ; Func _ExplorerWinGetSelectedItems($hWnd)
  60. ;
  61. ;
  62. ; Author: klaus.s, KaFu, Ascend4nt (consolidation & cleanup, Path name simplification)
  63. ; ==========================================================================================================================
  64.  
  65. Func _ExplorerWinGetSelectedItems($hWnd)
  66.     If Not IsHWnd($hWnd) Then Return SetError(1,0,'')
  67.     Local $oSHFolderView
  68.     Local $iSelectedItems,$iCounter=2,$aSelectedItems[2] = [0, ""]
  69.  
  70.     $oSHFolderView=_ObjectSHFolderViewFromWin($hWnd)
  71.  
  72. ;   SelectedItems = FolderItems Collection object->Count
  73.     $iSelectedItems = $oSHFolderView.SelectedItems.Count
  74.  
  75.     Dim $aSelectedItems[$iSelectedItems+2]  ; 2 extra -> 1 for count [0], 1 for Folder Path [1]
  76.  
  77.     $aSelectedItems[0]=$iSelectedItems
  78. ;   ShellFolderView->Folder->Self as 'FolderItem'->Path
  79.     $aSelectedItems[1]=$oSHFolderView.Folder.Self.Path
  80.  
  81. ;   ShellFolderView->SelectedItems = FolderItems Collection object
  82.     $oSelectedFolderItems = $oSHFolderView.SelectedItems
  83.  
  84. #cs
  85.     ; For ALL items in an Explorer Window (not just the selected ones):
  86.     $oSelectedFolderItems = $oSHFolderView.Folder.Items
  87.     ReDim $aSelectedItems[$oSelectedFolderItems.Count+2]
  88. #ce
  89.  
  90.     For $oFolderItem In $oSelectedFolderItems
  91.         $aSelectedItems[$iCounter] = $oFolderItem.Path
  92.         $iCounter += 1
  93.     Next
  94.  
  95.     Return SetExtended($iCounter-2,$aSelectedItems)
  96. EndFunc   ;==>_ExplorerWinGetSelectedItems
  97.  
  98. Func _ComErrFunc($oError)
  99.     ConsoleWrite("COM Error occurred:"  & @CRLF & _
  100.         "Number: " & @TAB & $oError.number & @CRLF & _
  101.         "Windescription:" & @TAB & $oError.windescription & @CRLF & _
  102.         "Description is: " & @TAB & $oError.description & @CRLF & _
  103.         "Source is: " & @TAB & $oError.source & @CRLF & _
  104.         "Helpfile is: " & @TAB & $oError.helpfile & @CRLF & _
  105.         "Helpcontext is: " & @TAB & $oError.helpcontext & @CRLF & _
  106.         "Lastdllerror is: " & @TAB & $oError.lastdllerror & @CRLF & _
  107.         "Scriptline is: " & @TAB & $oError.scriptline & @CRLF & _
  108.         "Retcode is: " & @TAB & $oError.retcode & @CRLF & @CRLF)
  109. EndFunc   ;==>_ComErrFunc

I'll try and comment.
 :-*
3088
Post New Requests Here / Re: Wish list program
« Last post by Contro on July 01, 2012, 11:18 AM »
 :-*

Okis. Long Holidays indeed.
I'll wait.
 :P
3089
General Software Discussion / Re: A windows mess in the task bar
« Last post by Contro on July 01, 2012, 09:39 AM »
I like nice long buttons where I can easily read the text. I have no issues with the buttons being too short to read them on my taskbar.  ;)

This is one of the many benefits of having your taskbar on the side and extending it as far as it will go, and putting it on autohide.

The first 2 screenshots in my post here will show you how I have it: https://www.donation....msg238489#msg238489

Yes, I am running XP with classic theme there, but you can do it in Win7 as well, and with aero, or whatever crap they have for themes now. And it is easy to do...just unlock your taskbar and drag it to the side and stretch it. (I don't lock mine because I like the little bands that separate each toolbar, and they disappear if you lock the taskbar)

The only time my buttons get shortened is when I have a ton of open windows, enough to fill all the space on the taskbar, resulting in Windows making 2 columns of them, at which point they become about half the length, which is still pretty wide compared to what you have now.

It will take a little getting used to but once you do, you may never go back to that sliver of a taskbar at the bottom of the screen. I have had my taskbar like this for the last 13 years, ever since my first PC was given to me with it preconfigured that way, back in the Win98 days.

But be careful...if you get too used to it, it will make using another OS very uncomfortable. I have issues with Ubuntu because I can't take my Windows taskbar with me.  :(

 ;D ;D
It's very difficult to say what method is the best because goes with the psichology of the user.

I can't with the right taskbar. I am very used to this one. But I use Launchy, classical button menus and rarely the start button.
And multiple docks and menus hidden that appear with shortcuts like Win+6 and so on.

 :-*

The most best idea is change the wall paper every time at your likings.

and the boss key F12 to hide and mute everything you are doing.

 :P
3090
General Software Discussion / Re: A windows mess in the task bar
« Last post by Contro on July 01, 2012, 09:20 AM »
@Contro, you might want to re-study App103's post


Yes, I am running XP with classic theme there, (...) ...just unlock your taskbar and drag it to the side and stretch it.

-and there is more.

Running Curt. Best Regards
3091
General Software Discussion / Re: A windows mess in the task bar
« Last post by Contro on July 01, 2012, 04:14 AM »
Perhaps my next pc will have 1024 GB of RAM memory with Windows 10 running virtual machines under windows xp pro

 ;D
3092
General Software Discussion / Re: A windows mess in the task bar
« Last post by Contro on July 01, 2012, 04:13 AM »
I like nice long buttons where I can easily read the text. I have no issues with the buttons being too short to read them on my taskbar.  ;)

This is one of the many benefits of having your taskbar on the side and extending it as far as it will go, and putting it on autohide.

The first 2 screenshots in my post here will show you how I have it: https://www.donation....msg238489#msg238489

Yes, I am running XP with classic theme there, but you can do it in Win7 as well, and with aero, or whatever crap they have for themes now. And it is easy to do...just unlock your taskbar and drag it to the side and stretch it. (I don't lock mine because I like the little bands that separate each toolbar, and they disappear if you lock the taskbar)

The only time my buttons get shortened is when I have a ton of open windows, enough to fill all the space on the taskbar, resulting in Windows making 2 columns of them, at which point they become about half the length, which is still pretty wide compared to what you have now.

It will take a little getting used to but once you do, you may never go back to that sliver of a taskbar at the bottom of the screen. I have had my taskbar like this for the last 13 years, ever since my first PC was given to me with it preconfigured that way, back in the Win98 days.

But be careful...if you get too used to it, it will make using another OS very uncomfortable. I have issues with Ubuntu because I can't take my Windows taskbar with me.  :(

I try Ubuntu some years ago. a nice operating system indeed. But almost the professional software I need is for Windows.
Windows xp is my trauma. But at the present moment - under a great effort and big help from this forum - i feel almost comfortable.

At the present moment I have no intentions of migrating to windows 8. i will remain all time possible with xp. I am preparing the virtual machines for maintain configurations and old software.

Best Regards.
 :-*
3093
Post New Requests Here / Re: Wish list program
« Last post by Contro on July 01, 2012, 03:42 AM »
I am not lucky.

I have no received any message from Codebyte.

Time to search internet for Codebyte.

3094
General Software Discussion / Re: Transpose 2.3.0.5
« Last post by Contro on June 30, 2012, 08:16 PM »
Running to try.
Best Regards
 :-*
3095
General Software Discussion / Re: A windows mess in the task bar
« Last post by Contro on June 30, 2012, 07:59 PM »
I risk and vary (after make a backup of the registry and a restore point) the value n="-2700" to "-3100"

And add one more line in high for the taskbar.

This is the final result :

3096
General Software Discussion / Re: A windows mess in the task bar
« Last post by Contro on June 30, 2012, 07:11 PM »
The scripts from Kellys-Korner may be varied ?

I need the width ten characters more

The initial code is :

Option Explicit

Dim WSHShell, n, p, itemtype, MyBox

Set WSHShell = WScript.CreateObject("WScript.Shell")
p = "HKEY_CURRENT_USER\Control Panel\Desktop\WindowMetrics\"
p = p & "MinWidth"
itemtype = "REG_SZ"
n = "-2700"

WSHShell.RegWrite p, n, itemtype

MyBox = MsgBox("You must reboot for the changes to take effect.", vbOKOnly,"Done")

 :-\
3097
General Software Discussion / Re: A windows mess in the task bar
« Last post by Contro on June 30, 2012, 06:52 PM »
a Famous page Kellys-Korner

Perhaps here is the answer i need....

 :P
3098
General Software Discussion / Re: A windows mess in the task bar
« Last post by Contro on June 30, 2012, 06:49 PM »
A possible solution via windows registry Default Taskbar Button Width
3099
General Software Discussion / Re: A windows mess in the task bar
« Last post by Contro on June 30, 2012, 06:24 PM »
What I really need is a Trim function with the width of the buttons in the taskbar.
If the text is very short make short the button. And if the text is large adapt until a limit of characters.

The addon is very simple. Adapt the width of the buttons in the taskbar.

 :-*
3100
General Software Discussion / Re: A windows mess in the task bar
« Last post by Contro on June 30, 2012, 06:14 PM »
It's terrible and desorientating all the icons in the lateral task bar.
And I would prefer the taskbar button of programs and folders from down to up.

 :-\
Pages: prev1 ... 119 120 121 122 123 [124] 125 126 127 128 129 ... 158next