Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (298 - 300 of 3893)

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

#1690 No Bug GuiTreeView.au3, GuiListView.au3 and possibly others ASCII mode Bug Jon Authenticity
Description

I didn't have the time to check through all of the functions in these (or other) UDFs, but I'm quite sure there are more:

In _GUICtrlListView_InsertItem function:

If _WinAPI_InProcess($hWnd, $_lv_ghLastWnd) Or ($sText = -1) Then
   $iRet = _SendMessage($hWnd, $LVM_INSERTITEMW, 0, $pItem, 0, "wparam", "ptr")
Else ; not our control

should be:

If _WinAPI_InProcess($hWnd, $_lv_ghLastWnd) Or ($sText = -1) Then
   If $fUnicode Then
      $iRet = _SendMessage($hWnd, $LVM_INSERTITEMW, 0, $pItem, 0, "wparam", "ptr")
   Else
      $iRet = _SendMessage($hWnd, $LVM_INSERTITEMA, 0, $pItem, 0, "wparam", "ptr")
   EndIf
Else ; not our control

Other text related functions in GuiListView.au3 are probably coded the same.

In _GUICtrlTreeView_GetText function:

If _WinAPI_InProcess($hWnd, $__ghTVLastWnd) Then
   DllStructSetData($tTVITEM, "Text", $pBuffer)
   _SendMessage($hWnd, $TVM_GETITEMW, 0, $pItem, 0, "wparam", "ptr")
Else

should be:

If _WinAPI_InProcess($hWnd, $__ghTVLastWnd) Then
   DllStructSetData($tTVITEM, "Text", $pBuffer)
   If $fUnicode Then
      _SendMessage($hWnd, $TVM_GETITEMW, 0, $pItem, 0, "wparam", "ptr")
   Else
      _SendMessage($hWnd, $TVM_GETITEMA, 0, $pItem, 0, "wparam", "ptr")
   EndIf
Else
#1691 Rejected ControlCommand is not working for .net checkboxes. Jon Math
Description

I have tried the ControlCommand for .net checkboxes. It is returning zero without doing the operation.

WinActivate("RAE Control","")
WinWaitActive("RAE Control","")
Msgbox(0,"",ControlCommand("RAE Control","","Auto-Start Station(s)","UnCheck",""))

I have tried Check,UnCheck and IsChecked commands and none of them is working.

Note: See TracQuery for help on using queries.