Monday, February 6, 2012

Team Viewer now available for Android

November 29, 2010 by · Leave a Comment 

Team Viewer is an excellent screen sharing and file transfer application that can be used to facilitate business collaborations and remote desktops sharing.

Traversing DOM using JavaScript

November 22, 2009 by · 1 Comment 

The HTML DOM defines a standard way for accessing and manipulating HTML documents. The DOM presents an HTML document as a tree-structure expressed as an XML document. DOM is a language independent API, as it can be used in Java, .NET, JavaScript and many more. I will use it with JavaScript to for my sample [...]

PHP Debugging Techniques – Part III

November 17, 2009 by · Leave a Comment 

Use an IDE and Debugger Most developers use some Integrated Development Environment (IDE) for the majority of their development, and I highly recommend that you do the same. Many PHP developer use Zend Studio and you only have to look at the feature list to see why they find it completely indispensible, especially for debugging. If you have [...]

PHP Debugging Techniques – Part II

November 17, 2009 by · Leave a Comment 

 2. Error Logging Despite out best efforts, errors can (and do) occur in production environments. When these hiccups do arise we have to ensure that they are dealt with quickly, otherwise users (or even, gasp, clients) get angry. A logging system can be very useful in tracking down bugs, especially when they happen in a [...]

PHP Debugging Techniques – Part I

November 12, 2009 by · 1 Comment 

There are many PHP debugging techniques that can save you countless hours when coding as error reporting, using print statements etc. Let’s go through a little detail of these techniques. Error Messages Error messages are your first line of defense as a developer. You don’t want to be developing code in PHP on a server [...]

Crystal report tutorial – VS 2005

November 5, 2009 by · Leave a Comment 

A very good book on using Crystal reports in Visual Studio 2005. many small and minute things are discussed in this book. VS2005 Walkthroughs Crystal Reports

Crystal Report Viewer width – Visual Studio

November 5, 2009 by · Leave a Comment 

By default Crystal report viewer width is fixed according to it toolbar, but changes due to amount of data present in the report. And the width is not editable (as it is seen). Because of this reason if a crystal report has good amount of data then it goes past page width and disturbs the [...]

The maximum report processing jobs limit configured by your system administrator has been reached.

November 5, 2009 by · 2 Comments 

call Close or Dispose method at the end so the reporting engine remove the report entry from its queue.

Opening hyperlink in a new window – Crystal Reports

November 5, 2009 by · Leave a Comment 

what to do when we want a hyperlink to open in a new window. This seems quite easy in any programming lanuage, but what to do when we want the same functionality in a crystal report. It is almost the same as with webpages. create formula field for and at the end just add "target=new;" [...]

How to get open Windows in MFC

November 5, 2009 by · Leave a Comment 

Hi, i have very little experience in MFC and VC++. I was developing a small project, during development i need to view the list of all opened windows in my explorer. i read somewhere and like to post the solution of this only for you It is very simple. here is the example by which [...]