Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (244 - 246 of 3893)

Ticket Resolution Summary Owner Reporter
#902 Fixed Typo in AutoIT Help (.chm file) _SQLite_GetTable evilpacketmonkey
Description

_SQLite_GetTable I think line 49 has an typo with ")" as I was getting an error message when attempting to run.

Comment it out and things work.

#906 Fixed ActiveX Control on a GUI gets incorrect size information when queried Valik rgreer@…
Description

If an MFC ActiveX Control makes a call to

COleControl::GetControlSize(int* pcx,
   int* pcy )

, it is supposed to return the control's width and height. If the control is attached to an AutoIT GUI:

Local $oObject = ObjCreate("MFCActiveX.Control.1")
Local $GUIMain = GUICreate("Test", 800,600,0,0)
GUICtrlCreateObj($oObject, 0,0,800,600)
GUISetState()

It always returns x=100, y=50.

In any other container (.NET, VB, C++/MFC), this control correctly gives the height/width.

I can attach a sample MFC project that demonstrates this, or you can create one from scratch and add the following code somewhere in the control:

int iControlWidth, iControlHeight;
CString sControlDimensions;
	
GetControlSize(&iControlWidth, &iControlHeight);

sControlDimensions.Format(L"Width: %d Height: %d",iControlWidth, iControlHeight);

MessageBox(sControlDimensions);

#910 Fixed Static Right justified text GEOSoft
Description

Maybe it's just me but this line in the GUI Control Styles doc page (Static controls) doesn't seem to read properly and certainly does not produce the results indicated by the style variable name $SS_RIGHTJUST.

$SS_RIGHTJUST >> 0x0400 >> Specifies that the lower right corner of a static control with the SS_BITMAP or SS_ICON style is to remain fixed when the control is resized. Only the top and left sides are adjusted to accommodate a new bitmap or icon.

Note: See TracQuery for help on using queries.