Archive

Archive for October, 2008

Norton Anti Virus 2009:

October 31st, 2008 admin No comments

Norton Anti Virus 2009:

Norton Anti Virus 2009 is a new Virus today which already had many attacks of the System.Virus enters when one is Downloading Norton Anti Virus 2009.It cause in hanging of the System.It Keeps alert messages popping up every 5-10 minutes.If you connect system to the internet,it will automatically ask whether to download Norton antivirus 2009 or not.

Popularity: 1% [?]

Categories: Tech Stuff, Virus Tags:

What is PACS ?

October 31st, 2008 admin No comments

PACS (Picture Archiving and Communication Systems) are computers or networks used for storing, retrieving, distributing and presenting of medical images (in DICOM format). Full PACS handle Dicom images from multiple modalities (like CT, MRI, US, PET…), where as Mini-PACS handle Dicom images from specific modalities. It replaces hard copy film archives and enables radiologist access remotely the patient images. It also interfaces with the HIS (Hospital Information System) and RIS (Radiologist Information System).

Popularity: 1% [?]

Categories: DICOM, What-is Tags:

What is Tracing?

October 31st, 2008 admin No comments

Tracing is a refined process for outputting page-level information.When tracing is enabled you automatically get information on the ASP.NET Web page. Information like:

Request Details – Session Id; Request time, type, and encoding; status code, etc.
Trace Information – Page-level ASP.NET messages that you specify via Trace.Write and Trace.Warn.
Control Tree – A listing of the Web controls on theASP.NET Web page,and how they relate to one another.
Cookies Collection – A listing of all of the cookies.
Headers Collection
– A listing of all of the HTTP headers.
Server Variables – A listing of all of the server variables.

Trace statements are processed and displayed only when tracing is enabled. You can control whether tracing is displayed to a page, to the trace viewer, or both.

Popularity: 1% [?]

Categories: Asp.net, What-is Tags: ,

How to Embed a Flash File into C# Window Form?

October 30th, 2008 admin 2 comments

To embed a flash file in C# Windows .Net Application we can use Shockwave Flash Object ActiveX Control.

Follow the Steps to embed flash file:

Step 1: In Tool box right click and select the menu “Choose Items”.

Step 2: From Choose Toolbox Items window select “Com component” tab.

Step 3: Scroll down and make sure “Shockwave Flash Object” is ticked and click ok. The Shockwave Flash Object will now appear in the toolbox.

Step 4: Simply click and drag the Shockwave Flash Object to window Form.

Step 5: Add the Code “Form Load”.

axShockwaveFlash1.LoadMovie(0, Application.StartupPath + “flash.swf”);

These steps embed the flash file and loads “flash.swf” in the application path when window loads.

Popularity: 4% [?]

Categories: C#, Flash Tags:

what is Spring Framework?

October 30th, 2008 admin No comments

What is Spring Framework?

Spring is grate framework for development of Enterprise grade application. Spring is a light-weight framework for the development of enterprise-ready applications. Spring can be used to configure declarative transaction management, remote access to your logic using RMI or web services, mailing facilities and various options in persisting your data to a database.Spring framework can be used in modular fashion, it allows to use in parts and leave the other components which is not required by the application.

Feature of Spring Framework

Popularity: 1% [?]

Categories: Spring, What-is Tags:

Spring Framework

October 30th, 2008 admin No comments
  • Transaction Management: Spring framework provides a generic abstraction layer for transaction management. This allowing the developer to add the pluggable transaction managers, and making it easy to demarcate transactions without dealing with low-level issues. Spring’s transaction support is not tied to J2EE environments and it can be also used in container less environments.
  • JDBC Exception Handling: The JDBC abstraction layer of the Spring offers a meaningful exception hierarchy, which simplifies the error handling strategy.
  • Integration with Hibernate, JDO, and iBATIS: Spring provides best Integration services with Hibernate, JDO and iBATIS.
  • AOP Framework: Spring is best AOP framework
  • MVC Framework: Spring comes with MVC web application framework, built on core Spring functionality. This framework is highly configurable via strategy interfaces, and accommodates multiple view technologies like JSP, Velocity, Tiles, iText, and POI. But other frameworks can be easily used instead of Spring MVC Framework.

what is Spring Framework?

Popularity: 1% [?]

Categories: Spring Tags:

.Net Framework 4.0 Universe

October 30th, 2008 admin No comments

Microsoft announced Visual Studio 2010 and the .NET Framework 4.0 on September 29, 2008 which marks the next generation of developer tools from Microsoft.

Based upon .NET Framework 4.0 Brad Abrams released a poster “.Net Framework 4.0 universe” , which gives you a clear view of new stuffs in .NET Framework 4.0.You can download the poster in PDF format.

Visual Studio 2010 and the .NET Framework 4.0 deliver key innovations in the following pillars:

  • Democratizing Application Lifecycle Management
  • Enabling emerging trends
  • Inspiring developer delight
  • Riding the next generation platform wave
  • Breakthrough Departmental Applications

You can have a overview of Visual Studio 2010 and .NET Framework 4.0 from msdn.

Popularity: 2% [?]

Categories: DotNet Framework, Tech Stuff Tags:

What is DICOM?

October 30th, 2008 admin No comments

DICOM (Digital Imaging and Communications in Medicine) is a standard developed by NEMA (National Electrical Manufacturers Association) for distribution and viewing of medical images (such as CT, MRI, UltraSound, Xray…). The standard includes a file format definition and a communication protocol. The communication protocol uses TCP/IP to communicate between systems. The standard enables the integration of Modalities, Printer, PACS, Workstations, Server.

Popularity: 1% [?]

Categories: DICOM, What-is Tags:

set focus on textbox value at the end

October 28th, 2008 admin No comments

To set focus on textbox Value at the End using javascript follow the steps:

1.Assuming ‘Search’ is the id given for the Textbox.
2.setFocus() function called on BODY load.
3.The function will position the cursor at the end of the Textbox value
(if any value Present it will point at the end of the value)

function setFocus()
{
var field = document.form.Search;
field.focus();
field.value = field.value;
field.focus();
}

 

Demo Link

Popularity: 1% [?]

Categories: Javascript Tags: ,

Refresh the Window

October 28th, 2008 admin No comments

To refresh the window using JavaScript

window.location.reload();

 

Popularity: 1% [?]

Categories: Javascript Tags: ,