Hi
During this weekend we will be testing our new theme, so there might be some glitches. If you see something that is not right please let us know.
Thanks
Amit


Continue Reading...

Sometimes we need to know the width of a given string in pixels, do you know how to compute it? Before writing some long code, please notice that the .NET framework class library provides such a method. When Googling about this issue, we find the Graphics.MeasureString Method, here is how to use it:

Graphics graphics = this.CreateGraphics();
SizeF textSize = graphics.MeasureString("How long am I?", this.Font);

Nice isn’t it? Well, there is one little problem here, how is the Graphics object created? The written code is a Windows Forms code, so the this is the Form itself. You can’t create the Graphics object by simply allocating it because…


Continue Reading...

In the last article we installed and configured the Subversion server using Visual SVN.

Today I am going to show you how to interact with the server from the client side.

What you will need to download the Tortoise SVN client application.

Download and install and after a restart (bummer) we are ready to start working!

The Tortoise SVN adds its functionality in the Windows Explorer Context Menu.

Tortoise SVN


Continue Reading...

Blog Stats Hey all

September is over and here we are again!

 

Dev102.com 1st Anniversary

Soon we will have our 1st anniversary! Yes , we are 1 year old! Dev102.com was launched on December 7th, we are still thinking about how to celebrate it, if anyone of you thinks of something we are listening.

 

Tweeter

We have just set up a Twitter account and we would love it if you followed us! So come on,

Follow Us on
Twitter

 

Guest Posting

We would like to remind you that if you want to earn quick 30$


Continue Reading...

I bet many of you are working on your own software projects and would love to have a version control at their disposal. This is useful for many reasons. If you are working with one or more friends on a joint project, if you have a desktop and a laptop and you want to work from both computers while keeping the files synchronized, or if you just want to be more organized and keep versions and backups of your work. You can also use Visual SVN to sync folders or documents between several computers.

This article will have 2 sections One will discuss the SVN Server installation and configuration and the second part will be about how to use the SVN client.

First you have to download the Visual SVN Server Installation

Installing the Visual SVN Server

Double click on the Visual SVN executable to begin the installation. After a few next next next clicks you will get this screen:


Continue Reading...