S
H
A
R
E

Monday, June 11, 2012

Best Free Video Editing Software

Many programs simply don't do what the manufacturers say that they will do, and others don't provide enough - or any support.Of course, most free software does not include the same level or quality of support that you would expect to find with software that you purchase commercially.While it is true that you get what you pay for, there really are some good free video editing software available out there.

Here are the top five that we have found:


Read More!

Saturday, June 09, 2012

Visual Studio Shortcut Keyboard List

Navigation



Ctrl + ]
Moves the cursor to the matching Closing or Opening brace
Ctrl + hyphen
Moves cursor to its previous position
Shift + F7
Switch between the Design View and Source View
Ctrl + Tab
Displays the all open files in VS
Ctrl + Shift + F
Find 
F3
Search Again or continue search 

Read More!

CSharp ExecuteNonQuery Sample

protected void btnSignIn_Click(object sender, EventArgs e)
    {
        string strConnection = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString;
        string strInsert = "INSERT INTO Users (Username,Password) VALUES(@Username,@Password)";
        SqlConnection con = new SqlConnection(strConnection);
        SqlCommand cmd = new SqlCommand();
        cmd.Connection = con;
        cmd.CommandType = CommandType.Text;
        cmd.CommandText = strInsert;

        SqlParameter username = new SqlParameter("@Username", SqlDbType.VarChar, 50);
        username.Value = txtUserName.Text.Trim().ToString();
        cmd.Parameters.Add(username);

        SqlParameter password = new SqlParameter("@Password", SqlDbType.VarChar, 50);
        password.Value = txtPassword.Text.Trim().ToString();
        cmd.Parameters.Add(password);

Read More!

3D Max Shortcut Keyboard List

3D Studio Max Keyboard shortcuts.

Snaps Action Table :
Snap To Edge/Segment Toggle : Alt+F10
Snap To Endpoint Toggle : Alt+F8
Snap To Face Toggle : Alt+F11
Snap To Grid Points Toggle : Alt+F5
Snap To Midpoint Toggle : Alt+F9
Snap To Pivot Toggle : Alt+F6
Snap To Vertex Toggle : Alt+F7

Read More!

Thursday, June 07, 2012

CSharp Create PrintPreview Dialog


this post will explaining how to use printpreviewdialog with C# to preview before printing datagridview in windows forms application.

Read More!