07-20-2012, 12:33 PM
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
So for example, if I want to type in some VB.NET code, I use
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!
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]
[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!