Posts Tagged ‘Windows’

I found a bug and fixed..
You can start many instances, is fixed.

Current version is 1.0.1.209
and can download from here.
Pincodes Version 1.0.1.209
1,08 MB (1 136 019 byte)
MD5: 1C74077CFB6D24B1C70584CB50550C31
SHA1: C1593678F40BD1AEBED0101A5F0E88F8C1602850

Pin Codes will soon be here.
It is a program to store your passwords and stuff in a compact database. If you work with affiliate programs, it fits perfectly well.

Pin Codes

Pin Codes

When you have once filled in a form, it is not necessary then save files and stuff, it is saved. And of course you can password protect them.

I have found something that is fun. I found it on YouTube.
Someone called “Hacker” have VB course on YouTube.

You move the green rectangle using the arrow keys. The red following the green. I felt it was funny.
He (called Hacker) using VisualStudio 2012, but it works just fine with VS 2008.

Follower

Follower AI

This is VisualBasic Code

Public Class Form1

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Timer1.Start()
    End Sub

    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        If PictureBox1.Left < PictureBox2.Left Then             PictureBox2.Left = PictureBox2.Left - 4         End If         If PictureBox1.Left > PictureBox2.Left Then
            PictureBox2.Left = PictureBox2.Left + 4
        End If
        If PictureBox1.Top < PictureBox2.Top Then             PictureBox2.Top = PictureBox2.Top - 4         End If         If PictureBox1.Top > PictureBox2.Top Then
            PictureBox2.Top = PictureBox2.Top + 4
        End If
    End Sub

    Private Sub Form1_KeyDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles MyBase.KeyDown
        If e.KeyCode = Keys.Left Then
            PictureBox1.Left = PictureBox1.Left - 4
        End If
        If e.KeyCode = Keys.Up Then
            PictureBox1.Top = PictureBox1.Top - 4
        End If
        If e.KeyCode = Keys.Down Then
            PictureBox1.Top = PictureBox1.Top + 4
        End If
        If e.KeyCode = Keys.Right Then
            PictureBox1.Left = PictureBox1.Left + 4
        End If
    End Sub
End Class

And CSharp

namespace Follower_AI_Sharp
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            timer1.Start();
        }

        private void timer1_Tick(object sender, EventArgs e)
        {
            if (pictureBox1.Left < pictureBox2.Left)                 pictureBox2.Left = pictureBox2.Left - 4;             if (pictureBox1.Left > pictureBox2.Left)
                pictureBox2.Left = pictureBox2.Left + 4;
            if (pictureBox1.Top < pictureBox2.Top)                 pictureBox2.Top = pictureBox2.Top - 4;             if (pictureBox1.Top > pictureBox2.Top)
                pictureBox2.Top = pictureBox2.Top + 4;

        }

        private void Form1_KeyDown(object sender, KeyEventArgs e)
        {
            if (e.KeyCode == Keys.Left)
                pictureBox1.Left = pictureBox1.Left - 4;
            if (e.KeyCode == Keys.Right)
                pictureBox1.Left = pictureBox1.Left + 4;
            if (e.KeyCode == Keys.Up)
                pictureBox1.Top = pictureBox1.Top - 4;
            if (e.KeyCode == Keys.Down)
                pictureBox1.Top = pictureBox1.Top + 4;
        }
    }
}

Now again. Batch Image Resizing Software. And is based on ImageConverter made of Eric-Paul. Unlike his version, this one save your images to JPEG.

ImageResizer

Image Resizer

The source code, I could not manage is the following.

CheckForIllegalCrossThreadCalls = false;

I got Error message.
Since I am using “BackgroundWorker”, I hope it goes well.

Anyway, it’s very fast to scale your images.
There seems to be some mysterious features of Windows, and it’s magically save JPEG image format. It was not necessary to enter specific values for compression or anything, just the size.
Then voila. You have it.

And this part, I wanted to do something to avoid errors, because the user can delete digits.

numberupdown

NumberUpDown

But it was actually difficult.
Anyway, after many hours of hassle, I tried the test and see what happens. And look at that, it said nothing and worked just fine.
When I checked the saved images, the scale was changed to the default size (- 1024 pixels in this case), the value I wrote in the “numericUpDown” properties.

I wrote the code as follows:


string s = numericUpDownMaximum.Value.ToString();
if (s == "")
{
 MessageBox.Show("You must input the Max value.", "Max width is empty", MessageBoxButtons.OK, MessageBoxIcon.Stop);
 return;
}
else
{
 MessageBox.Show(s, "Max width is not empty", MessageBoxButtons.OK, MessageBoxIcon.Stop);
}

And ran the program. I deleted numbers, and tested. Then answered the “1024″.

Wise Microsoft again! It is without saying anything but “Handled”.

If you want, you can download it from here.

Read the rest of this entry »

Blender is the free open source 3D content creation suite, available for all major operating systems under the GNU General Public License.

Blender version 2.64

Blender

Supported Platforms

  • Windows XP, Vista, 7
  • Mac OS X (PPC and Intel)
  • Linux
  • FreeBSD

 

Blender Render

Blender works on 32 and 64 bit systems.

You can download from the following URI.

http://www.blender.org/

 

My free software are now available for download from the following URI:

Wav2X
http://mino.ucoz.com/load/freeware/wav2x/1-1-0-13

Memo
http://mino.ucoz.com/load/freeware/memo/1-1-0-14

My free software are now available for download from the following URI:

Personal
http://mino.ucoz.com/load/freeware/personal/1-1-0-6

My Hash Calculator
http://mino.ucoz.com/load/freeware/my_hash_calculator/1-1-0-5

HTML Color Picker
http://mino.ucoz.com/load/freeware/html_color_picker/1-1-0-4

GPW Classic
http://mino.ucoz.com/load/freeware/gpw_classic/1-1-0-3

PGW (Password Generator)
http://mino.ucoz.com/load/freeware/gpw/1-1-0-2

Personal (Svenska)
http://mino.ucoz.com/load/freeware/personal_swedish/1-1-0-7

Indexer ( Files and Folder Indexer)
http://mino.ucoz.com/load/freeware/indexer/1-1-0-8

MIDI Test
http://mino.ucoz.com/load/freeware/midi_test/1-1-0-9

MIDI Test Source Code
http://mino.ucoz.com/load/freeware/midi_test_source/1-1-0-10

Series Renamer
http://mino.ucoz.com/load/freeware/series_renamer/1-1-0-11

My MP3 Tag Editor
http://mino.ucoz.com/load/freeware/my_mp3_tag_editor/1-1-0-12

I will continue to gradually upload files such as MIDI.

This is a maintenance release.

BASS has been updated since, I have to recompile the software in order to respond to the latest BASS.
Function of the software itself is exactly the same as the previous one.

I have moved my file to uCoz site.

Page
http://mino.ucoz.com/load/freeware/midi_to_wav_2_0_4_9/1-1-0-1

File (1,00 MB / 1 050 098 byte)
http://mino.ucoz.com/load/0-0-0-1-20

MD5: C07F962EEC1D713D738AFE7E5EB43E59
SHA1: 186438DF8D95973D4D04A99DD6D0E0ACF7ED2B1B

 

LibreOffice

LibreOffice is the free power-packed Open Source personal productivity suite for Windows, Macintosh and Linux, that gives you six feature-rich applications for all your document production and data processing needs: Writer, Calc, Impress, Draw, Math and Base. Support and documentation is free from our large, dedicated community of users, contributors and developers. You, too, can also get involved!

I have never used it, but it looks promising.
Download LibreOffice.

It’s available for both Linux and Windows (NEW: 64 bit version).

I am using it!

LMMS047.jpg (213 KB)

LMMS is a free cross-platform alternative to commercial programs like FL Studio, which allow you to produce music with your computer. This includes the creation of melodies and beats, the synthesis and mixing of sounds, and arranging of samples. You can have fun with your MIDI-keyboard and much more; all in a user-friendly and modern interface.

Warning!

  • The program is installed in “Programs (x86)” folder by default although you downloaded 64bit version, and you have to change the folder when you install LMMS.
  • You cannot change the language of the interface. I want English, but it’s blend of Swedish and English.

Changes in version 0.4.7:

Core:

  • AutomationEditor: thread-safe handling of AutomationPattern pointer
  • InlineAutomation: delete attached AutomationPattern immediately (fixes some random crashes when playing on virtual keyboard)
  • EnvelopeAndLfoParameters: moved global instances management into helper class (fixes crashes when importing MIDI files)
  • NotePlayHandle: fix broken note detuning feature
  • AudioJack: do not use QVector in processCallback()

GUI:

  • Themes: explicitely set background and text color for tooltips
  • ExportProjectDialog: guess file format from extension
  • Fixed cloning of BB tracks
  • When cloning BB track, indicate this fact in name of cloned BB track
  • TrackContentObject: keep position in paste()
  • Default theme: replaced background artwork with a more decent one
  • TextFloat: fixed size calculation in simple mode
  • “Save changes?” dialog: Save/Discard instead of Yes/No

Plugins:

  • CALF LADSPA plugins: resynced with Git repository
  • LadspaEffect/Controls: fixed non-working global channel link checkbox
  • Sf2Player: disable per-note-panning support for the time being
  • SpectrumAnalyzer: skip processing if UI is not visible
  • ZynAddSubFX: new background artwork
  • ZynAddSubFX: updated to version 2.4.1
  • ZynAddSubFX: allow hiding UI by closing main window
  • ZynAddSubFX: added window icon (win32 version only)
  • ZynAddSubFX: save configuration file in LMMS working directory
  • ZynAddSubFX: added knobs for MIDI controls
  • ZynAddSubFX: new QtXmlWrapper, a QtXml-based XML backend for ZASF

Misc:

  • Improved .desktop and menu file
  • Do not use -ftree-vectorize per default anymore
  • Win32/Win64 installer associate LMMS project files with LMMS

Read more about LMMS.