Pages

Showing posts with label Programming. Show all posts
Showing posts with label Programming. Show all posts

Saturday, March 9, 2013

Changing Project Platform in VB.Net - 64Bit(x64) and 32Bit(x86)



Ever wonder how to change your project’s platform in VB.Net to 64Bit or 32Bit? Here are some easy steps on how to do it.


        1.   Open your project, then click Build in menu.
  
        2. Under Build Menu, Select Configuration Manager at the end of the list.


    

      3. The Configuration window will appear, then select New in the combobox under the platform column.


     4. New Project Platform window will appear, select X64 for 64 bit or X86 for 32 bit platform, remember that Any CPU platform means that your project will run on both 64 and 32 bit platforms.


 
      5.  Once you select your platform, click close. You will also notice that Active Solution Platform  is set with the platform you selected. Rebuild your project and the new platform is implemented.



Friday, March 30, 2012

Lets GO!

GO is an open source programming language created by Google that started in 2007 by 
Robert Griesemer, Rob Pike, and Ken Thompson.

Last March 28, 2012, Google announced the release of the very first version of the language,
and it was named GO Version 1 or GO 1. The language supports many flat forms like Linux,
FreeBSD, Mac OS X and Windows (Yes, Windows). Go Lang is also supported by Google App Engine SDK which was also released together with GO 1.

The GO Syntax is more likely in C language. Curly Braces {} in every block of codes.

Here is a "Hello World" sample

package main

import "fmt"

func main() {
        fmt.Println("Hello, World")
}


Everything about GO is in golang.org, visit this now and start studying the new language.