home *** CD-ROM | disk | FTP | other *** search
- 'Copyright 1995-98, Lotus Development Corporation. All rights reserved.
- %if GEMINI
- %elseif IBM_OS2
- %end if
- %if GEMINI
- Use "LTAPGN11"
- %elseif IBM_OS2
- Use "LTAPGO11"
- %end if
- Sub Initialize
- ClientMainWinClass = GEMINI_MAINWINCLASS
- ClientID = AN_GEMINI
- ClientModName = GEMINI_PERSMODNAME
- ClientLotusAppID = "GEMINI"
- ShowMeModName = "055"
- AnimVersionNum = 2.36
- NumFramesThisAnim = 3
- AnimationType = "QuickDemo"
- SampleFile = "ssdn06??.123"
- AnimName = "Copying down to fill a range"
- End Sub
-
- Public Sub ShowMe (theNextStep As Integer)
-
- GetCursorPos TempPos
- CursorPosForStep(theNextStep) = TempPos
-
- Select Case theNextStep
-
- Case 1
- StepsText ="Select the range."
- X = SetTargetWindow (ToolWin_G, "ssdn06??.123", ClientID, DeskwHdl.val)
- X = DoWhereIs (CELL_OBJ_G,"",6,5,0,0,ClientID)
- ShowTextBubble StepsText, .5, .5, SouthEast
- HideTextBubble
- MoveToObj Center
- DoMouse WM_LBUTTONDOWN%, 0
- Exit Sub
-
- Case 2
- X = SetTargetWindow (ToolWin_G, "ssdn06??.123", ClientID, DeskwHdl.val)
- X = DoWhereIs (CELL_OBJ_G,"",6,8,0,0,ClientID)
- MoveToObj Center
- DoMouse WM_LBUTTONUP%, 0
- Exit Sub
-
- Case 3
- StepsText ="Choose Edit - Copy Down."
- SetBubblePosforMenus
- ShowTextBubble StepsText, .5, .5, NorthEast
- HideTextBubble
- ChooseMenuItem DtEditCopyDown_g
- Exit Sub
- End Select
- End Sub
-