When I use the mousepointer = vbHourGlass or VBDefault functions I get an error: "Object or library not found".
Please help. How can I fix this?
(Visual Basic 6)
When I use the mousepointer = vbHourGlass or VBDefault functions I get an error: "Object or library not found".
Please help. How can I fix this?
(Visual Basic 6)
Last edited by peet1909; Jan 11th, 2007 at 05:24 AM. Reason: none
Hi
Try this
VB Code:
Property Let Mouse(ByVal mPointer As MousePointerConstants) Screen.MousePointer = mPointer End Property Property Get Mouse() As MousePointerConstants Mouse = Screen.MousePointer End Property Public Sub MouseBusy() Screen.MousePointer = vbHourglass End Sub Public Sub MouseNormal() Screen.MousePointer = vbDefault End Sub
Hope this helps...
A good exercise for the Heart is to bend down and help another up...
Please Mark your Thread "Resolved", if the query is solved
Microsoft MVP: 2011 - Till Date IMP Links : Acceptable Use Policy, FAQ
MyGear:
Sony VGN-FZ27G with a triple boot between (XP+Office 2003+VB6), (VISTA+Office 2007+VS2008) and (Win7+Office 2010+VS2010) || Sony VPCCB-45FN with a Win7+Office 2010+VS2010. VM: (XP+Office 2003+VB6), (VISTA+Office 2007+VS2008), (Win8+Office 2010+VS2012) || Mac Book Pro (10.6.8) with Office 2011
how are you setting the mousepointer = vbHourGlass or VBDefault, is it a form's mouse pointer or an objects or screen's...could you post your code for this...
If an answer to your question has been helpful, then please, Rate it!
Have done Projects in Access and Member management systems using BioMetric devices, Smart cards and BarCodes.
http://ganeshmoorthymc.com
Also you can check out this site for better cursor management
http://lutrov.com/blog/150/
Hope this helps...
A good exercise for the Heart is to bend down and help another up...
Please Mark your Thread "Resolved", if the query is solved
Microsoft MVP: 2011 - Till Date IMP Links : Acceptable Use Policy, FAQ
MyGear:
Sony VGN-FZ27G with a triple boot between (XP+Office 2003+VB6), (VISTA+Office 2007+VS2008) and (Win7+Office 2010+VS2010) || Sony VPCCB-45FN with a Win7+Office 2010+VS2010. VM: (XP+Office 2003+VB6), (VISTA+Office 2007+VS2008), (Win8+Office 2010+VS2012) || Mac Book Pro (10.6.8) with Office 2011