' TakkyInsetStart
Sub PerformMouseClicks ()
  Select Case found_lc
    Case 1: form001.labelclik1.CLICK
    Case 2: form001.labelclik2.CLICK
    Case 3: form001.labelclik3.CLICK
    Case 4: form001.CLICK
  End Select
End Sub


Sub form001.labelclik1.CLICK ()

  'your code goes here - remember: LR$ = 'L', 'R', or 'LR'
  TXT$(0) = "@projects/example"
  PrintForm "form001"

End Sub

Sub form001.labelclik2.CLICK ()

  'your code goes here - remember: LR$ = 'L', 'R', or 'LR'
  TXT$(0) = "@projects/LastRun"
  PrintForm "form001"

End Sub

Sub form001.labelclik3.CLICK ()

  'your code goes here - remember: LR$ = 'L', 'R', or 'LR'
  TXT$(0) = "@projects/SampleCode"
  PrintForm "form001"
End Sub

Sub form001.CLICK ()

  'your code goes here - remember: LR$ = 'L', 'R', or 'LR'

End Sub

' TakkyInsetDone
'Sub PerformMouseClicks
'End Sub
'===========================SUBs BEGIN===============================
