Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Yet another upgrade announcement
#1
Hello guys! I'm here yet again to announce a couple new things to BP Forums!

First of all, we have fixed an annoying bug that requires you to press a link after you submit a post in order to actually get back to the topic. Yay!

Second, we have now added rank images. Each rank now has its own set of stars. The higher your rank, the more stars you have.

Third, we have now added a little section called "Similar Topics" below each thread. This should allow users to quickly find topics related to their problem and solve their problem more efficiently.

Finally, we have added a new code module! In order to use this code module, simply use the code tags
Code:
[code2=language]

[/code2]

So for example, if I want to type in some VB.NET code, I use
Code:
[code2=vbnet]

[/code2]
And it outputs as...
[code2=vbnet]Public Sub New()
_milliseconds = 0
_seconds = 0
_minutes = 0
_hours = 0
_days = 0
_weeks = 0
_months = 0
_years = 0

Me.Text = "0:0:0:0:0:0:0:0"

countdownTimer = New Timer()
countdownTimer.Interval = 1
AddHandler countdownTimer.Tick, AddressOf Tick
End Sub[/code2]

I can do the same thing with Java if I simply change the language tag from "vbnet" to "java"
[code2=java]public static void main(String[] args) throws IOException
{
//Code is executed

BufferedReader reader = null;
try
{
reader = new BufferedReader(new FileReader(new File("text.txt")));
String contents = reader.readLine();
System.out.print(contents);
}
catch (Exception e)
{
e.printStackTrace();
}
finally
{
if (reader != null)
reader.close();
}



}[/code2]

And there you have it! Hopefully you guys enjoy these new updates!
My Blog | My Setup | My Videos | Have a wonderful day.
#2
This is just wonderful. Latest updates were simply awesome!
Thank you! <!-- sBig Grin --><img src="{SMILIES_PATH}/icon_e_biggrin.gif" alt="Big Grin" title="Very Happy" /><!-- sBig Grin -->
Also known as Rocketalypse.
System.out.println("I prefer Java.");
#3
I am glad to hear that you like them! If you have any future suggestions, don't hesitate to bring them forth!
My Blog | My Setup | My Videos | Have a wonderful day.
#4
Nice updates - thank you!
//Kismet
#5
I'm glad I found this, I was wondering how you got the 'vb.net code' on top of all your code snippets. But I'm glad I found it now, it'll make using and sharing code a whole lot easier.
#6
Derek275 Wrote:I'm glad I found this, I was wondering how you got the 'vb.net code' on top of all your code snippets. But I'm glad I found it now, it'll make using and sharing code a whole lot easier.
Yeah! I thought it was a nice addition. I will have to work on making this thread more visible for others to see.
My Blog | My Setup | My Videos | Have a wonderful day.


Forum Jump:


Users browsing this thread: 1 Guest(s)