topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Monday March 18, 2024, 9:32 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.


Messages - .Beatz [ switch to compact view ]

Pages: [1]
1
Living Room / Re: Looking for a font similar to this image.
« on: January 12, 2016, 05:21 PM »
WhatTheFont Forum
Open a new case


Title of case
Try to clearly summarize your case. For example: "Obama campaign logo", or "1950s retro script".

Sample image
Hint: The best sample images are ones which show the unique features of a font. For example: if a font's R if unlike any other R from any other font, it is very helpful to see that R for identification purposes.

Optional message
The more you can tell about your sample, the easier it can be identified. For example: knowing a sample came from a magazine published in the 1940s makes it much easier to rule out certain possibilities
-What The Font Forum
Cheers Curt, will go check it out

2
Living Room / Re: Looking for a font similar to this image.
« on: January 12, 2016, 04:43 PM »
http://www.myfonts.com/WhatTheFont/

Try it.
Already tried a few of these but the letters are joined too much for them to work :(

3
N.A.N.Y. 2015 / Re: NANY 2015 Teaser: Rotate (Android Game)
« on: October 22, 2014, 06:17 AM »
Not going to have a Windows version but might release one especially for Donation Coder members

4
N.A.N.Y. 2015 / Re: NANY 2015 Teaser: Rotate (Android Game)
« on: October 21, 2014, 09:35 PM »
Cheers mouser, I thought it would be nice to give something back to the community

5
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!

6
Developer's Corner / Re: Adding controls smoothly...
« on: August 28, 2012, 09:46 AM »
I will try the databinding although never really been able to work with it properly lol

As for wpf I will have to look into it :)

Thanks for the reply's got a fair idea of how to do this and make it smooth and look good :)

7
Developer's Corner / Re: Adding controls smoothly...
« on: August 28, 2012, 09:24 AM »
Well not literally 1000 but it has no limit on the amount... I would say generally about 20-30 controls... I will look into threading though.

[Header]
{info}
{info}
[Header]
{info}

Header is not a problem since it is just the Header and doesn't really load any info

Info loads info from 1 row and about 5 columns from MySql for each (2 picture boxes, 3 linklabels, 3 labels)

8
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#

9
Developer's Corner / Re: A bit of help C# and MySql
« on: August 22, 2011, 10:57 AM »
I do that when I am working on some things to help me look around and see stuff easier :)

10
Developer's Corner / Re: A bit of help C# and MySql
« on: August 20, 2011, 07:15 PM »
@Stoic Joker - I am defining the database when the program loads. Also I am not getting either MessageBox

I will try and use the MySql connector/NET and see if that helps at all :)

Will keep you up to date on how its going and if I need a hand

Cheers guys helped quite alot

*EDIT*

Found out the dll keeps a constant connection so the message boxes wouldn't show up.

Spoiler
public bool Checks()
        {
            MySqlConnection Conn = MySqlSettings.GetConnection(); Conn.Open();
            bool exist = false;
            string user = Username_Text.Text;
            string userpass = Password_Text.Text;

            try
            {
                lock (Conn)
                {
                    MySqlCommand Cmd = new MySqlCommand("SELECT * FROM `users` WHERE Username='" + user + "' AND Password='" + userpass + "'", Conn);
                    MySqlDataReader DR = Cmd.ExecuteReader();
                    while (DR.Read())
                    {
                        string userpass1;
                        string user1;

                        userpass1 = (DR["Password"].ToString());
                        user1 = (DR["Username"].ToString());

                        if (user == user1 && userpass == userpass1)
                        {
                            exist = true;
                        }
                    }
                    DR.Close();
                }
                Conn.Close();
            }
            catch (Exception)
            {
                Conn.Close();
                return true;
            }
            if (exist == true)
            {
                MessageBox.Show("Logged in");
            }
            else
            {
                MessageBox.Show("Username or Password is wrong\nPlease try again");
            }

            return exist;
        }


Now it works like a dream as long as I don't use the dll

Cheers for the help guys

11
Developer's Corner / Re: A bit of help C# and MySql
« on: August 19, 2011, 08:21 PM »
I am not getting any errors it just wont read anything from the database... so far I have Username and Password fields in the MySql database I have tried using a connection string instead of this dll but failed miserably while trying to select Username as row and get the password from the same row...

Sorry for the erratic way I have written stuff I am not very good at explaining things lol (just ask Stephen)

12
Developer's Corner / Re: A bit of help C# and MySql
« on: August 19, 2011, 08:33 AM »
downloaded from Elitepvpers.de... It come in a source that I was working on and can't find the source code for it or the download link...

I  know I only have one post but I can assure you that the DLL is what I say it is... a dll nothing else nothing more.

I will keep looking for the download I got it from and will post it if I can find it...

13
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]