Posted by: Quadtechindia


Could not load file or assembly 'CrystalDecisions.Web, Version=10.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies  

Posted by: Quadtechindia in

It can be solved by installing the crystal run time package that can be found on your local computer (I believe it is installed with visual studio 2008). It is located in:

\Program Files\Microsoft SDKs\Windows\v6.0A\Bootstrapper\Packages\CrystalReports10_5

I found this information in the Local Help: ms-help://MS.VSCC.v90/MS.MSDNQTR.v90.en/crystlmn/html/topic409.htm

Running the MSI on the production server installed the version 10.5.3700.0 files there and cleared the error.

Difference between Triggers and Stored Procedure  

Posted by: Quadtechindia in

1. SP may Return a value but Trigger Not,
2. In SP you can pass parameter But in trigger you can't
3. we explicitly call the Sp when Trigger are implicitly
fired
4. you can write a sp in Trigger but in a Trigger you cant
write SP.
5. Trigger written on an individual Table or View where SP
is written for an Database

USB Flash drive automatic back up  

Posted by: Quadtechindia in

Automatically backup USB flash drives with help of an application available on www . usbflashcopy . com , a free utility..

THINGS Your WEBCAM Can Do  

Posted by: Quadtechindia in

1. HOME SECURITY SYSTEM : -
Free Softwares are available over internet for download, which you can use to turn a webcam into a remote security system.
Check out www.yawcam. com (For Windows)or www. vitamindinc.com (Windows and MAC).

2. Gaming : -
Try www.newgrounds. com, which have plenty of games which uses web cam as an input like keyboard and mouse. Check it out!!

3. Unlock your laptop / desktop using face recognition
Visit http://bananascreen.en.softonic.com and download the free software.

4. Funny Effects on Photo
Check out www.cameroid.com or www.seenly.com and have fun.

5. BAR CODE READER
Shocked but its true. Download the software from www.bcwebcam.

6. MAKE A FONT OF YOUR HANDWRITING
Head over to www.pilothandwriting.com and create one and show your friends your handwriting is one of fonts which systems supports

Difference between website and web application : ASP.NET  

Posted by: Quadtechindia in ,

A "web site" has its code in a special App_Code directory and it's compiled into several DLLs at runtime. A "web application" is precompiled into one single DLL that is built and copied in the Bin directory.

A web site is just a group of all files in a folder and sub folders. There is no project file. All files under the specific folder - including your word documents, text files, images etc are part of the web site.

You have to deploy all files including source files (unless you pre compile them) to the server. Files are compiled dynamically during run time.

In website since there is no project file, there is nothing that you can double click to open the web site in Visual Studio for editing. You have to open Visual Studio first and then open the site from Visual Studio

Terminate a process in task manager  

Posted by: Quadtechindia in

public void terminate()
{
Process[] plist = Process.GetProcesses();
foreach (Process p in plist)
{
try
{
if (p.MainModule.ModuleName.ToUpper() == "WEBDEV.WEBSERVER.EXE")
{
//p.Kill();
}

if (p.MainModule.ModuleName.ToUpper() == "IEXPLORE.EXE")
{
p.Kill();
}
}
catch
{
}

}
}