Page 1 of 2

RunarM Desktop 0.1 Beta

Posted: Wed Sep 08, 2010 8:31 pm
by RunarM
RunarM Desktop 0.1 beta, i started working on it yesterday and i would like to know what you think about it so far.
(inspired by CnS Desktop v3.)
show.png
Download for free:
RunarM Desktop 0.1 Beta.zip
There are many things i haven't done yet. like settings.

-RunarM

Re: RunarM Desktop 0.1 Beta

Posted: Wed Sep 08, 2010 8:31 pm
by RunarM
Make addons, here is a addon kit for top and side!

Source has been removed permanently.

/
Just make and past into App/Addons

Re: RunarM Desktop 0.1 Beta

Posted: Wed Sep 08, 2010 8:37 pm
by Codex
Not bad, just could you make up your own 'name' cause like this its confusing...

Re: RunarM Desktop 0.1 Beta

Posted: Wed Sep 08, 2010 9:17 pm
by hungryhounduk
Hi RunarM
I like that, 8-) its nice and easy to see what is going on, I like the menus and the Party Checkbox, so yes keep developing it as i think that will be a really cool app once you have Finished it.

Great Stuff cooll;

Chris

Re: RunarM Desktop 0.1 Beta

Posted: Wed Sep 08, 2010 9:36 pm
by CodenStuff
Hello RunarM,

Looking good I like the party feature aswell and the webpage zoom. Most of the other stuff doesnt work yet but I look forward to seeing them in action cooll;

Your doing a good job on this keep it up cooll;

Re: RunarM Desktop 0.1 Beta

Posted: Thu Sep 09, 2010 2:12 am
by Scottie1972
This is pretty cool.
I love the party feature. Really wuld lik,e to know how to did that.

Re: RunarM Desktop 0.1 Beta

Posted: Thu Sep 09, 2010 2:38 pm
by Lewis
Party should light up the whole form :P And good job :P

Re: RunarM Desktop 0.1 Beta

Posted: Thu Sep 09, 2010 5:14 pm
by RunarM
I'm going to release the source in the vip area when i'm done with v. 0.1

Working on settings and built in Youtube Downloader

Scottie1972 wrote:
This is pretty cool.
I love the party feature. Really wuld lik,e to know how to did that.
Code: Select all
#Region "Checkbox4 (Party)"
    Private Sub CheckBox4_CheckedChanged_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox4.CheckedChanged
        If CheckBox4.Checked = True Then
            PictureBox1.Visible = True
            GroupBox2.BackColor = Color.Red
            Party.Start()
        Else
            PictureBox1.Visible = False
            Party.Stop()
            GroupBox2.BackColor = Color.White
        End If
    End Sub
#End Region
#Region "Party Colors"
    Private Sub Party_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Party.Tick
        If GroupBox2.BackColor = Color.Red Then
            GroupBox2.BackColor = Color.Blue
        ElseIf GroupBox2.BackColor = Color.Blue Then
            GroupBox2.BackColor = Color.Green
        ElseIf GroupBox2.BackColor = Color.Green Then
            GroupBox2.BackColor = Color.Yellow
        ElseIf GroupBox2.BackColor = Color.Yellow Then
            GroupBox2.BackColor = Color.Red
        End If
    End Sub
#End Region
Party Timer Interval: 120



Here is an example with party on the form:

Re: RunarM Desktop 0.1 Beta

Posted: Thu Sep 09, 2010 5:25 pm
by Scottie1972
Thanks RunarM, I was wondering how that effect was done.

Re: RunarM Desktop 0.1 Beta

Posted: Thu Sep 09, 2010 6:29 pm
by DarkyKnife
Very nice, I'm waiting for next update, if it will be.