Saturday, June 8, 2013

Loading cope with the Google Code Blog

 I will provide a solution or a solution for you who have a problem with loading the blog is quite heavy. Loading or opening process in a program to be one important factor for the operation of a system. Likewise with loading a blog, if it is too heavy it will make the performance of a blog that we manage to be difficult to develop because visitors would be reduced. A visitor does not want to take a long time to wait to...

Thursday, June 6, 2013

BusinessObjects Error message

There are many types of error messages in BusinessObjects Enterprise and other Business Objects products that are misleading. Misleading in a way that when you read the error message you start searching at the wrong place for an solution.One example of such an error message in Crystal Reports is: "The report could not be opened from BusinessObjects Enterprise.", "Possibly the report is on a different BusinessObjects Enterprise system than the one...

Wednesday, June 5, 2013

Windows application for converting Text into Speech.

Hi Friends, in this post I would like to explain how to convert Text into Speech.· Open windows application.· Place a TextBox & a Button control on to the form.· Goto ProjectMenu---> Add Reference---> COM---> MicrosoftSpeechObjectLibrary (Add this reference).· Add the following namespace: using SpeechLib;Please go through the code under button click event:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using SpeechLib;namespace...

Introduction to Windows Services.

Hi friends,in this post i would like to explain some basic things to know about windows services.* A service which is under control of windows OS is called windows service.* Windows services are used to develop automated background processes.* Windows services contains only application logic but not GUI(Graphical User Interface).* The controls which are not visible at runtime,can be placed in windows service projects.For example:Timer Control,Event log control,File system watcher control.* To develop windows services .Net provided:File-->NewProject-->VisualC#-->Windows-->WindowsServiceTemplate.*...