gambas-source-code/app/examples/Games/Puzzle1To8/.src/FrmAyuda.form
gambas 988546ad28 Update some translations.
[EXAMPLES]
* NEW: Update some translations.
2019-06-14 01:32:14 +02:00

37 lines
1.2 KiB
Text

# Gambas Form File 3.0
{ Form Form
MoveScaled(0,0,68,66)
Background = Color.LightForeground
Text = ("How to play?")
Resizable = False
{ TextLabel1 TextLabel
MoveScaled(2,2,63,11)
Text = ("Place the numbers 1 to 8 in each of the boxes without repeating, so that each box does not contain a correlative number to its neighbors or adjacent boxes. See the following examples:")
Alignment = Align.Justify
}
{ PictureBox1 PictureBox
MoveScaled(32,15,32,21)
Picture = Picture["ejemplo1.png"]
Stretch = True
}
{ TextLabel3 TextLabel
MoveScaled(2,15,28,21)
Text = ("<b>Way incorrect:</b><br><br>The numbers 1 and 2 are consecutive and are in adjoining boxes, so it is not allowed.")
Alignment = Align.Justify
}
{ PictureBox2 PictureBox
MoveScaled(32,38,32,21)
Picture = Picture["ejemplo2.png"]
Stretch = True
}
{ Button1 Button
MoveScaled(23,60,22,5)
Text = Shortcut(("Close"), "C")
}
{ TextLabel2 TextLabel
MoveScaled(2,39,28,18)
Text = ("<b>Way correct:</b><br><br>There aren't correlativity between to the numbers entered with respect to their adjoining boxes, so it's allowed.")
Alignment = Align.Justify
}
}