Showing posts with label exe. Show all posts
Showing posts with label exe. Show all posts

Tuesday, 12 May 2009

Screen2Exe

Very nice screen capture program can be downloaded from here.

It allows you to capture moving images from your screen or multiple windows & save the recording to an .exe & it's completely free.

Saturday, 15 November 2008

Debug & Release versions

Ever wanted to create a Release version of an .exe in Visual Basic or C#?

If you have, look here.

Wednesday, 5 November 2008

Shell Scripting Links

Here are some useful Shell-Scripting links.
  • Customize your Command Prompt, here.
  • Start a Shell script from an Exe, here.
  • Copy multiple files from the Command line, here.
  • Pipe commands with switches, here.

Wednesday, 6 August 2008

Thursday, 3 July 2008

newLISP

newLISP is a version of the LISP programming language. It can be downloaded from here & there is a discussion forum which can be visited here.

Writing OpenGL programs & creating executables is really simple in newLISP. It's even easier if you download some of the documentation especially the newLISP manual.

Wednesday, 2 July 2008

O'Caml Executable

I created my first Executable in O'Caml yesterday. The program was a simple OpenGL routine that displayed a triangle on the screen & I used the following commands to create it.

ocamlopt -I +lablgl lablgl.cmxa lablglut.cmxa simple.ml

Just enter the above code in a Windows Command Prompt, making sure that you are in the folder where your source file is.

During compilation a few warnings were displayed & I had no control over the name of the .exe but I think I know how to solve those problems.