topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Tuesday April 23, 2024, 12:29 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - .Beatz [ switch to compact view ]

Pages: [1]
1
N.A.N.Y. 2015 / NANY 2015 Teaser: Rotate (Android Game)
« on: October 21, 2014, 09:27 PM »
Application Name Rotate
Version BETA
Short Description Guide the rotating spheres through the gaps in the walls!
Supported OSes Android 2.2 and Above (iOS Coming Soon)
Web Page Coming Soon
Download Link To Be Confirmed
System Requirements
  • Android Phone/Tablet
Version History
  • A list of the (ongoing) version history
Author On the left... Up a bit... Just over there

So I have been a member here for a few years and never really done much apart from look at apps, download a few be quite quiet, been working on this for a little while now and thought I would give something back to you all. Any questions, comments or just useful stuff is more than welcome.

If you want to be one of the first to test this out (Android users) then leave a comment below, I will add you to my Beta testers group on Google Play and you will receive the game and updates through the Play Store

Description
Objective: Guide the rotating spheres through the gaps in the walls! - Sounds easy doesn't it! Well, Maybe not!... The spheres get faster and the gaps get smaller as you progress through the levels! Challenge your friends and family and find out who is the most skillful! Connect via Facebook or Google and get yourself on the leaderboards!

Features
Leaderboards (Track yours and your friends progress through the game and see if you can top their score!)
Achievements (Unlock various achievements throughout the game)

Planned Features
  • *Coming Soon!*
  • A continuous room where you must get as far as you can in the quickest time possible!
  • Facebook integration for Facebook requests/Taunts
  • More rooms, more balls, more fun
  • The rest are all secret... Shhhhh


Screenshots
Screenshot_2014-10-22-03-08-31.pngScreenshot_2014-10-24-11-59-04.pngScreenshot_2014-10-24-11-59-11.pngScreenshot_2014-10-24-11-59-18.pngScreenshot_2014-10-22-03-09-14.png

Usage
Installation
Windows: Not available
Android: Install from Google Play the same as any other App.

Using the Application
Simply use the controls to guide the spheres through the gaps in the walls!  How far can you get?!

Uninstallation
Windows: Not available

Android: Uninstall via normal methods for your device

Tips
You ain't gonna get any cheats here ;)

Known Issues
Please report any issues here!

2
Developer's Corner / Adding controls smoothly...
« on: August 28, 2012, 08:31 AM »
Okay so I am writing a program that has to load a lot of information from MySql then add it to controls.

Get Data > Fill Control > Display Control

Only problem is I could be loading as few as 4 controls or as many as 1000. Is there a better way I can add everything? It works for now but is not pleasant to watch and would defiantly not be good for a consumer to see. I have tried loading the controls before the form is loaded but that didn't work so well, also tried Control.SuspendLayout(); and Control.ResumeLayout(); Still no good.

If anyone has any ideas I will be will to try anything to get this working 100%

Many thanks

*Edit* Forgot to mention I am programming on C#

3
Developer's Corner / A bit of help C# and MySql
« on: August 19, 2011, 07:09 AM »
Hey guys, dont know if this is the right place but I will post here anyway...

I am writing a program and I am having some issues with selecting the MySql data using C#.

private void Checks()
        {
            string UN = Username_Text.Text;
            string Pass = Password_Text.Text;

            MySqlCommand cmd = new MySqlCommand(MySqlCommandType.SELECT);

            try
            {

                cmd.Select("users").Where("Username", UN);
                MySqlReader r = new MySqlReader(cmd);

                while (r.Read()) // Breakpoint added here shows that the program is reading up to this point but does not read anything below this line until the return;
                {
                    string RealPassword = r.ReadString("Password");
                    string RealUsername = r.ReadString("Username");
                    if (RealUsername == UN && RealPassword == Pass)
                    {
                        MessageBox.Show("YAY!");
                    }
                    else
                    {
                        MessageBox.Show("DAMN!");
                    }
                }
                return;
            }
            catch (Exception Exc) { MessageBox.Show(Exc.ToString()); }
        }

Anyone can help me with this? Its a simple login script but I just cant get my head around it and need a fresh pair of eyes

Thanks in advance

.Beatz

My MySql DLL is attached

Pages: [1]