home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 October A / Pcwk10a98.iso / Lotus / LOTUS / 123 / 055.LSS < prev    next >
Text File  |  1998-04-07  |  1KB  |  56 lines

  1. 'Copyright 1995-98, Lotus Development Corporation. All rights reserved.
  2. %if GEMINI
  3. %elseif IBM_OS2
  4. %end if
  5. %if GEMINI
  6. Use "LTAPGN11"
  7. %elseif IBM_OS2
  8. Use "LTAPGO11"
  9. %end if
  10. Sub Initialize
  11.    ClientMainWinClass = GEMINI_MAINWINCLASS
  12.    ClientID = AN_GEMINI
  13.    ClientModName = GEMINI_PERSMODNAME
  14.    ClientLotusAppID = "GEMINI"
  15.    ShowMeModName = "055"
  16.    AnimVersionNum =  2.36 
  17.    NumFramesThisAnim =  3 
  18.    AnimationType = "QuickDemo"
  19.    SampleFile = "ssdn06??.123"
  20.    AnimName = "Copying down to fill a range"
  21. End Sub
  22.  
  23. Public Sub ShowMe (theNextStep As Integer)
  24.  
  25. GetCursorPos TempPos
  26. CursorPosForStep(theNextStep) = TempPos
  27.  
  28. Select Case theNextStep
  29.  
  30. Case  1 
  31.    StepsText ="Select the range."
  32.    X = SetTargetWindow (ToolWin_G, "ssdn06??.123", ClientID, DeskwHdl.val)
  33.    X = DoWhereIs (CELL_OBJ_G,"",6,5,0,0,ClientID)
  34.    ShowTextBubble StepsText,  .5,  .5, SouthEast
  35.    HideTextBubble
  36.    MoveToObj Center
  37.    DoMouse WM_LBUTTONDOWN%, 0
  38.    Exit Sub
  39.  
  40. Case  2 
  41.    X = SetTargetWindow (ToolWin_G, "ssdn06??.123", ClientID, DeskwHdl.val)
  42.    X = DoWhereIs (CELL_OBJ_G,"",6,8,0,0,ClientID)
  43.    MoveToObj Center
  44.    DoMouse WM_LBUTTONUP%, 0
  45.    Exit Sub
  46.  
  47. Case  3 
  48.    StepsText ="Choose Edit - Copy Down."
  49.    SetBubblePosforMenus
  50.    ShowTextBubble StepsText,  .5,  .5, NorthEast
  51.    HideTextBubble
  52.    ChooseMenuItem  DtEditCopyDown_g
  53.    Exit Sub
  54. End Select
  55. End Sub
  56.