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!

Search results for query: *

  1. rolandmac

    Macro and change mouse pointer

    Also ... I can convert the above sample code to an SBH file (if your interested) and include the whole Cursor logic in a subroutine so that you will have minimal changes to make to your existing programs (ie: just "Include" the SBH file and then reference the subroutine to set the...
  2. rolandmac

    Macro and change mouse pointer

    Hi Guys, Ok, I think I know where you guys are headed. We needed to hold the cursor state in a static variable so that we could test and set the appropriate cursor in the function. :) Declare Function LoadCursor Lib "user32" Alias "LoadCursorA" (ByVal hInstance As Long...
  3. rolandmac

    How to force Impromptu to move to next page,based on number of lines?

    Hi Bob, Maybe ...create a calculated column containing the row numbers (1-n) for the listframe. Create a second calculated column and set the value to some arbitrary literal (ie: "PAGE1") if the count is less than/equal 25. Group by this item. Set the Page Break option within the...
  4. rolandmac

    Macro and change mouse pointer

    I think I'm a little confused with what you're looking for Dave. Does this help ... 'Declarations 'Constants '--------------------------- Const NORMAL_CURSOR = 32512 Const HOUR_GLASS_CURSOR = 32514 Sub SetMousePointer(lMousePointer As Long) Dim hCursor As Long Dim hOriginalCursor As...
  5. rolandmac

    Version 7 User Class Problem

    Did you install Access Manager as part of you installation? Perform an Apply in Configuration Manager if you haven't done so already.
  6. rolandmac

    invalid use of null > by installing scheduler

    Looks like the COGNOSBIINSTMGR60.APPINSTANCE CLSID was not created in the registry. The installation of the software copies your files to disk you must then perform an Apply in Configuration Manager.
  7. rolandmac

    Macro and change mouse pointer

    You will beed to make an API call to SetCursor. The following macro will display a pointer/hourglass cursor when executing as an mcx. Declare Function LoadCursor Lib "user32" _ Alias "LoadCursorA" _ (ByVal hInstance As Long, _...

Part and Inventory Search

Back
Top