Custom Query (3921 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (283 - 285 of 3921)

Ticket Resolution Summary Owner Reporter
#1683 Rejected Displaying thumbnails of files in a GUI Jon Eric
Description

It would be great to have a function who can get and display thumbnails of files in a GUI.

Not only JPG, BMP but PDF, DOC...

Thanks

Eric

#1759 Fixed Strange listview sort trancexx Eric
Description

Hello,

I have a strange result with listview sort.

When i sort à listview on Windows 7 the sort seems to be good.

C:\Documents and Settings\XPMUser\Bureau\044-0610.txt C:\Documents and Settings\XPMUser\Bureau\annotatif.txt C:\Documents and Settings\XPMUser\Bureau\UTB.txt C:\UTB rue de rivoli-indice-C.txt

But on Windows XP the sort is not the same

C:\Documents and Settings\XPMUser\Bureau\044-0610.txt C:\Documents and Settings\XPMUser\Bureau\annotatif.txt C:\UTB rue de rivoli-indice-C.txt C:\Documents and Settings\XPMUser\Bureau\UTB.txt

Is it a Windows XP or Autoit Problem ?

(If you have 2 column on the listview the sort is good on windows XP too, but not with 1 column)

Here the code for try

Thanks

#include <GUIConstantsEx.au3>

#include <GuiListView.au3>

$gui = GUICreate("titre", 730, 490, -1, -1, -1)
$listefichier = GUICtrlCreateListView("Fichiers", 20, 60, 430, 340) 

GUICtrlCreateListViewItem("C:\UTB rue de rivoli-indice-C.txt", $listefichier) 
GUICtrlCreateListViewItem("C:\Documents and Settings\XPMUser\Bureau\UTB.txt", $listefichier)
GUICtrlCreateListViewItem("C:\Documents and Settings\XPMUser\Bureau\annotatif.txt", $listefichier)
GUICtrlCreateListViewItem("C:\Documents and Settings\XPMUser\Bureau\044-0610.txt", $listefichier)

_GUICtrlListView_SetColumnWidth($listefichier, 0, $LVSCW_AUTOSIZE)
 
GUISetState(@SW_SHOW) 

_GUICtrlListView_RegisterSortCallBack($listefichier)
while 1
$msg = GUIGetMsg()

    Select
        Case $msg = $GUI_EVENT_CLOSE

            exit

        Case $msg = $listefichier
            _GUICtrlListView_SortItems($listefichier, GUICtrlGetState($listefichier))
        case Else

    EndSelect

    WEnd

    _GUICtrlListView_UnRegisterSortCallBack($listefichier)
#3691 Wont Fix Wrong link in the CLSID List page Erix
Description

In the help page of the CLSID list

https://www.autoitscript.com/autoit3/docs/appendix/clsid.htm

The link to "Registry Guide for Windows at WinGuides Network" sends to a Norton Internet Security purchase page.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.