PRB: Cannot Pass Parameters as Float ByVal to VB 4.0 EventsLast reviewed: October 30, 1995Article ID: Q137730 |
The information in this article applies to:
SYMPTOMSOLE Custom Controls cannot pass parameters as Float ByVal to Visual Basic version 4.0 events.
RESOLUTIONChange the ByVal float param to a float*.
STATUSThis behavior is by design.
MORE INFORMATION
Sample Code in the Bind OLE Custom Control
void CBindCtrl::OnLButtonUp(UINT nFlags, CPoint point){ // TODO: Add your message handler code here and/or call default float fHH = 100.9f ; // Floatbug is an event in the OCX FireFloatbug(&fHH) ; COleControl::OnLButtonUp(nFlags, point);}
Sample Code in the Bind OLE Custom Control Event in Visual Basic 4.0
Private Sub Bind1_Floatbug(fTmp As Single) MsgBox CStr(fTmp) End Sub |
Additional reference words: 4.00 vb4win vb432
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |