Those articles are still there :confused:
All the best, Perić Željko
Those articles are still there :confused:
All the best, Perić Željko
Cheers :)
All the best, Perić Željko
Thanks.
All the best, Perić Željko
When I open ' My articles page ' , there are many blank articles under ' Uncategorised Articles ', that I have not created. I am not able to erase those articles by click at the delete link below the name of the article. What could it be ?
All the best, Perić Željko
:thumbsup:
All the best, Perić Željko
Thanks it works fine, but I have found article that solves same problem in different way, somwhere on the Internet and I just want to leave the URL adress that leads to that article that could be alternative, not to write my own solution.
All the best, Perić Željko
How to submit alternative to some article ?
All the best, Perić Željko
Thanks for ansver.
All the best, Perić Željko
Perhaps an option available or not when member is logged on.
All the best, Perić Željko
I wonder, is it possible to know if some member is still logged in or not. I ask this because , when I expect answer or comment from somone it seems that he or she, has been disconected, logged out. Perhaps there should be some kind of notification labbel that shall show, On or Off line status of member. Just like there is notification label when someone post new coment or message to me in upper right corner. Perhaps when I click on the name of member or float with mouse pointer over, there shuld come up status message.
All the best, Perić Željko
I confirm that too. Thanks for ansver.
All the best, Perić Željko
Hello Chris, I confirm that the speed have something to do with it.
All the best, Perić Željko
Hello, I don't know is this bug at this new GUI or something is wrong with my web browser. When I position mouse pointer over drop down menus title, for exmple discussions, drop down menu opens, but when I move pointer down to select next option it closes. I struggled until I started this discussion group to report this. This happens randomly but it is very annoying, and refers to all titles except the home title which do not have drop down menu. My browser is IE ver 8, OS MS Windows XP Home SP3.
All the best, Perić Željko
I agree with you. Related to Wikipedia here is a link to the article that gives explanation what is 'Readability' and there are some interesting external links to different studies of this problem. Some of these studies are interesting because they find correlation of readability and comprehension of the text. Results are interesting. Readability survey[[^](http://en.wikipedia.org/wiki/Readability survey "New Window")] All the best, Perić Željko
I agree with Naerling, and it is interesting that there is no variation of text size or font type that is for me most important thing for text readability at all. All the best, Perić Željko
Thanks
Hello, when I open my account at Code Project, and access my home page, I get the opportunity to see all the answers I gave, my sent messages, etc.. Now for example when I select the answer that I gave 15 days ago( or 3 months ), and I update my answer it happens that the answer and whole question appears in the forum as if someone had asked that question again, is there a way to prevent that and only the person who asked the question see my updated answer for outdated questions. All the best, Perić Željko
Hello mehmetali, peter have excelent solution , I made mine own which is not as elegant. It is console application made in SharpDevelop C#. This code is update of old one, it have no problem with entry of numbers as old version, now it works with float point numbers and it folows full math logic.
/*
* Created by SharpDevelop.
* User: Peric Zeljko
* Date: 7.10.2011
* Time: 8:51
*
*
* Simple console program for conversion of
* Binary numbers to Real numbers
*
*/
using System;
namespace Binary_to_Decimal
{
class Program
{
public static void Main(string[] args)
{
//
// declaration of variables
//
string [] DecimalFloat = new string[2];
string Binary = "";
bool RealRelevance = false;
bool BinaryRelevance = false;
int Index = 0;
int Lenght = 0;
int Exponent = 0;
int Cipher = 0;
double BaseExponent = 0;
double RealNumber = 0;
double D = 0;
double F = 0;
string Negative = "";
string DecimalPart = "";
string FloatPart = "";
string Letter = "";
//
// not very desirable but necessary
// begining of program label
//
begining :
//
// Hello message to user
//
Console.Title = "Program Binary to Real ";
Console.SetWindowSize(80,40);
Console.ForegroundColor = ConsoleColor.Green;
Console.Clear();
Console.WriteLine("\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*");
Console.WriteLine(" Binary to Real");
Console.WriteLine("\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*");
//
// Get number from Console
//
Console.WriteLine();
Console.Write("Enter binary number (exmpl: 1001) : ");
Binary = "";
Binary = Console.ReadLine();
Console.WriteLine();
Console.WriteLine("\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*");
//
// Check if it is Real number
//
RealRelevance = false;
RealNumber = 0;
RealRelevance = double.TryParse(Binary,out RealNumber);
if (RealRelevance == true)
{
//
// clear sign plus or minus
//
if (Binary.Contains("-"))
{
Binary = Binary.TrimStart('-');
Negative = "- ";
RealNumber = -1 \* RealNumber;
}
else if (!Binary.Contains("-") && !Binary.Contains("+"))
{
Negative = "";
}
else if (Binary.Contains("+"))
{
Binary = Bi
Hello Peter, your code is excelent , but have no control of what user enters, except if it is an emty string, so I shall use your code with small change in that direction.
void Button1Click(object sender, EventArgs e)
{
// TODO: Implement Button1Click
if (textBox1.Text.Length > 0)
{
try
{
textBox2.Text = Convert.ToInt32(textBox1.Text, 2).ToString();
}
catch (Exception)
{
MessageBox.Show("You didn't entered a Binary number !",
"Error",MessageBoxButtons.OK,MessageBoxIcon.Error);
}
}
else
{
MessageBox.Show("You didn't entered a Binary number !",
"Error",MessageBoxButtons.OK,MessageBoxIcon.Error);
}
}
All the best, Peric Zeljko periczeljkosmederevo@yahoo.com
SharpDevelop C# - what do you think about it http://www.sharpdevelop.net/OpenSource/SD/