BasisBit

I am born in Germany in 1993, my main hobby is developing software using C, C++, C#, ASP.Net, VB.Net, Java, PHP and a bit Perl. Projects I am working on are ExtHostBlocker for Windows, TweetMyPC, ReactOS, MySQL, a Skype-to-IRC bridge and a time-registration program for small businesses.

Homepage: http://basisbit.de


Posts by BasisBit

How to fix MS Exchange 2007 not sending eMails: dns query failed 451

01/20/2013 - 11:31 AM

Posted in Uncategorized | Comments Off

A customer set up a new SPI firewall but wasn’t able to send eMails from his internal  Microsoft Exchange which was running on a SBS 2008 Server.
He had all necessery ports opened (incoming and outgoing) and was able to send eMails directly from Outlook within the same network using the same Cloud-Smarthost.
Using the Exchange Management [...]

VB.Net How To: Changing the formatting og RichtTextBox content

01/19/2013 - 3:57 PM

Tags: , , ,
Posted in Uncategorized | Comments Off

Code example for changing font size of the first 10 characters to 16 and at the same time changing it to Bold and Italic:
RichTextBox2.Select(0, (Nachname_TextBox.Text & ” ” & Vorname_TextBox.Text).Length)
Dim BoldUnderlined As FontStyle = FontStyle.Bold + FontStyle.Underline
RichTextBox2.SelectionFont = New Font(RichTextBox2.SelectionFont.FontFamily.ToString(), 16, BoldUnderlined)
RichTextBox1.Select(0, 10-1)
Dim BoldItalic As FontStyle = FontStyle.Bold + FontStyle.Italic
RichTextBox1.SelectionFont = New Font(RichTextBox1.SelectionFont.FontFamily.ToString(), 16, BoldItalic)
Note: [...]

VB.NET How To: copy Text from RichtTextBox to Clipboard

01/19/2013 - 3:47 PM

Tags: , , ,
Posted in Uncategorized | Comments Off

Code:
My.Computer.Clipboard.SetText(RichTextBox1.Rtf(), TextDataFormat.Rtf)
with this code you will also keep the RTF formatting (bold, italic, font size, font colour, and so on).

Protected: TDMA vs. FDMA vs. whatever?

12/06/2012 - 2:28 PM

Tags: , , ,
Posted in My projects, Online | Comments Off

There is no excerpt because this is a protected post.

read on

09/08/2012 - 7:59 AM

Tags: , , ,
Posted in Software, Windows | Comments Off

Because of school and other stuff I won’t be able to continue blogging any more for some time. In the mean time, you should read those great books written by Mark Russinovish:

Zero Day (2011)
Trojan Horse (2012)

Those great books only cost a few bucks as Kindle edition (you can read those on your computer, smartphone or [...]

Ted talk: Sheena Iyengar on the art of choosing

08/12/2010 - 5:53 AM

Tags:
Posted in Uncategorized | Comments Off

About this Ted talk:
Sheena Iyengar studies how we make choices — and how we feel about the choices we make. At TEDGlobal, she talks about both trivial choices (Coke v. Pepsi) and profound ones, and shares her groundbreaking research that has uncovered some surprising attitudes about our decisions.
 
[video] or visit http://www.ted.com/….

Explained: Garbage Collection

07/22/2010 - 4:50 PM

Tags: , , , , , , , , , ,
Posted in Hardware, My projects, Software | Comments Off

Garbage Collection is the concept of collecting useless “dereferenced” memory, and freeing it for re-use by the system. De-referenced resources are those objects that are no longer in use by the program but are still allocated for use by it.
Languages like C/C++ could allow programmers to directly interact and play with memory, a responsibility that [...]

Windows Intune – PC management in the Cloud!

07/21/2010 - 5:46 PM

Tags: , , , , , , , , , , ,
Posted in News, Online, Software, Windows | Comments Off

Windows Intune, in a nutshell, is a Web-based console where IT administrators can manage the deployment of Microsoft updates and service packs to all PCs, keep track of hardware and software inventory, fix PC issues remotely, manage protection from malware threats and set security policies. Windows Intune can be accessed anywhere an Internet connection is [...]

WPC 2010 Virtual Pressroom: Video Gallery

07/15/2010 - 10:31 AM

Tags: , , , , , , , , , , , , ,
Posted in Hardware, News, Online, Software, Windows | Comments Off

Demo: The Personal Cloud
Corporate Vice President Brad Brooks shows off how Windows 7, Bing, Windows Live and other services connect to create a connected “personal cloud.”

[Video]

Have you made your decision to be a Mac or a PC?

05/31/2010 - 1:55 AM

Tags: , , , , , , , , , , , , ,
Posted in Apple, Hardware, Linux, ReactOS, Reviews, Software, Windows | Comments Off

This is a video review of Mac versus Windows which shows both – the good and the bad – sides of PCs and Macs:

<video>
Personally I made my decision to be a PC because I love to have control over every little part of the OS (using OpenBSD, Ubuntu Netbook Edition and various Windows).
What are you? (Mac, PC or both?) [...]