Custom Query
Results (118 - 120 of 3872)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#775 | Rejected | control AfxFrameOrView operation | Gary | anonymous |
Description |
Some applications use a control named AfxFrameOrView (AfxFrameOrView42 or AfxFrameOrView42u according to AutoIt windows info), and the GUI functions of tab, treeview, etc. won't apply on it. Would you mind developing a serials of UDF to deal with the control? Thanks. |
|||
#776 | No Bug | $LVM_GETITEM missing in ListViewConstants.au3 | Gary | Zedna |
Description |
There is Global Const $LVM_GETITEMA = ($LVM_FIRST + 5) Global Const $LVM_GETITEMW = ($LVM_FIRST + 75) but in TreeViewConstants.au3 there is Global Const $TVM_GETITEMA = $TV_FIRST + 12 Global Const $TVM_GETITEM = $TVM_GETITEMA So I think it should be in the same way in all UDFs. so add to ListViewConstants.au3 Global Const $LVM_GETITEM = $LVM_GETITEMA In the same way should be corrected also other constants. |
|||
#793 | Fixed | _WinNet_EnumResource Bug | Gary | Tibur.Wiseman@… |
Description |
When try using the function _WinNet_EnumResource, always an error is returned. the problem is on those lines in the function, in WinNet.au3 : Return SetError($aResult[0], 0, $aResult = 0) the good code is : Return SetError($aResult[0], 0, $aResult[0] = 0) Tibur. |