
Originally Posted by
JuggaloBrotha
You actually doing vb.net on a mac or are you using one of those "Mac on Win7" theme programs on your system?
Yeah I'm using one of those themes, my desktop looks almost like this one:
http://browse.deviantart.com/?qh=&se...+os+x#/d498clt

Edit: I have another question, I'm making a new calculator that can save a number into a memory. If what I add into the memory has a "." it replaces it with a ","... The data type of the memory is "Single".
MS Code (Memory Store):
Code:
memory = Val(RichTextBox1.Text)
MR Code (Memory Recall):
Code:
RichTextBox1.Text = RichTextBox1.Text & memory