Posts

Showing posts with the label Download

Create Calculator With Visual Studio 2012 | VB.Net Calculator

Image
picture : if text field is null How to create Simple Calculator with visual studio 2012 or VB.Net? This is your solution, you can read this tutorial, you also can Download Source Code Simple Calculator with visual studio 2012 , and direct practice this tutorial. Open Visual Studio, New Project  then, create design like this picture : 3. Right Click or F7 to view Source Code, 4. Write code like this : Public Class Calculator Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Dim A = varA.Text Dim B = varB.Text If (A = "") Then warn.Text = "var A Not Allow null" ElseIf (B = "") Then warn.Text = "var B Not Allow null" Else Dim c = A * B Operation.Text = "X" Result.Text = c End If End Sub Private Sub ExitToolStripMenuItem_Click(sender As Object, e As...

Create box shadow with css | css tutorial

Image
to create box shadow as above you should prepare css script as follows: div { width:300px; height:100px; background-color:yellow; -moz-box-shadow: 10px 10px 5px #888888; /* Firefox 3.6 and earlier */ box-shadow: 10px 10px 5px #888888; } download example here . thanks.

C# Age Calculator | Visual Studio 2008

Image
Download Source code C# Age Calculator!