Skip to content

Commit

Permalink
tooltips
Browse files Browse the repository at this point in the history
  • Loading branch information
Fidel365 committed Oct 8, 2024
1 parent 996dbad commit 3513212
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions instat/ucrCalculator.vb
Original file line number Diff line number Diff line change
Expand Up @@ -494,10 +494,10 @@ Public Class ucrCalculator
ttCalculator.SetToolTip(cmdPascal, "Gives Pascal triangles, e.g. for c(1,2,3,4) gives 1, (1,1), (1, 2, 1), (1, 3, 3, 1)")
ttCalculator.SetToolTip(cmdMASSFractions, "changes decimal data into a character variable with fractions. So 1.5 becomes 3/2, 0.25 becomes 1/4 etc.")
ttCalculator.SetToolTip(cmdDecimals, "the inverse of the fractions key. So 3/2 becomes 1.5, 1/4 becomes 0.25 etc.")
ttCalculator.SetToolTip(cmdFrac10, "the inverse of the fractions key. So 3/2 becomes 1.5, 1/4 becomes 0.25 etc.")
ttCalculator.SetToolTip(cmdFrac20, "the inverse of the fractions key. So 3/2 becomes 1.5, 1/4 becomes 0.25 etc.")
ttCalculator.SetToolTip(cmdFrac100, "the inverse of the fractions key. So 3/2 becomes 1.5, 1/4 becomes 0.25 etc.")
ttCalculator.SetToolTip(cmdFracDen, "the inverse of the fractions key. So 3/2 becomes 1.5, 1/4 becomes 0.25 etc.")
ttCalculator.SetToolTip(cmdFrac10, "Give fraction our of 10 for a decimal value. For example for 0.36 the value is 4/10")
ttCalculator.SetToolTip(cmdFrac20, "Give fraction our of 20 for a decimal value. For example for 0.36 the value is 7/20")
ttCalculator.SetToolTip(cmdFrac100, "Give fraction our of 100 for a decimal value. For example for 0.36 the value is 36/100")
ttCalculator.SetToolTip(cmdFracDen, "Give fraction for a given denominator. For example for frac_den(0.36, 50) gives 18/50")
'---------------------------------------------------------------------------------------------------------------------

Const strTooltipCmdLength = "number Of observations: For example length(c(1,2,3,4,NA)) = 5 "
Expand Down Expand Up @@ -6130,7 +6130,7 @@ Public Class ucrCalculator
If chkShowParameters.Checked Then
ucrReceiverForCalculation.AddToReceiverAtCursorPosition("frac_den(x= , denominator= )", 17)
Else
ucrReceiverForCalculation.AddToReceiverAtCursorPosition("frac_den(, )", 3)
ucrReceiverForCalculation.AddToReceiverAtCursorPosition("frac_den( , )", 4)
End If
End Sub
End Class

0 comments on commit 3513212

Please sign in to comment.