Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

MikyGonzalez

Members
  • Posts

    4
  • Joined

  • Last visited

    Never

MikyGonzalez's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. For fix move route form: (The list of things to do in event show in move route) Search in "**frmEditor_Events**": _cmdGraphicCanel_click() _and _cmdGraphicOK_click()_. Reemplaze for this: ``` Private Sub cmdGraphicCancel_Click() fraGraphic.Visible = False ' FIX MIKY If GraphicSelType = 0 Then lstCommands.Visible = True End If End Sub Private Sub cmdGraphicOK_Click() If GraphicSelType = 0 Then tmpEvent.Pages(curPageNum).GraphicType = cmbGraphic.ListIndex tmpEvent.Pages(curPageNum).Graphic = scrlGraphic.value tmpEvent.Pages(curPageNum).GraphicX = GraphicSelX tmpEvent.Pages(curPageNum).GraphicY = GraphicSelY tmpEvent.Pages(curPageNum).GraphicX2 = GraphicSelX2 tmpEvent.Pages(curPageNum).GraphicY2 = GraphicSelY2 Else AddMoveRouteCommand 42 GraphicSelType = 0 End If fraGraphic.Visible = False ' FIX MIKY If GraphicSelType = 0 Then lstCommands.Visible = True End If End Sub ```
×
×
  • Create New...