Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

private...function test lib "coredll.dll"...what does this do exactly?

Status
Not open for further replies.

jcaulder

Programmer
Apr 22, 2002
241
US
Public Class MyNumericBox : Inherits NumericBox

Private Declare Function ShowIM Lib "coredll.dll" (ByVal dwFlag As Integer) As Boolean

Private Sub Me_GotFocus(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.GotFocus
ShowIM(1)
End Sub

End Class

Obviously when an instance of MyNumericBox receives focus, ShowIM(1) gets called but what exactly does this call in "coredll.dll"?

TIA
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top