How to create drag & drop event in flash action script

In this tutorial I am going to show you how to easily create or achieve the drag & drop event using flash action script Step 1 Open flash then select file >> new >> flash document Now in left side menu bar you can select rectangle, or circle Here I chosen circle. Create a circle …

Getting Information about Databases and Tables

MySQL provides a SHOW statement that has several variant forms that display information about databases and the tables in them. SHOW is helpful for keeping track of the contents of your databases and for reminding yourself about the structure of your tables. You can also use SHOW prior to issuing ALTER TABLE; it’s often easier …

Mysql table types

As of MySQL 4.1, the list of table types is available directly through the SHOW TABLE TYPES statement: mysql> SHOW TABLE TYPES; +——–+———+———————————————————–+ | Type | Support | Comment | +——–+———+———————————————————–+ | MyISAM | DEFAULT | Default type from 3.23 with great performance | | HEAP | YES | Hash based, stored in memory, useful …

Creating a Windows service

For this I used Daniel Berger’s win32-service package. This is a great package that does literally everything for you to enable you to create a nice Windows service. Just install the gem like this: gem install win32-service I used examples/daemon_test.rb as the base template to make my Windows Service. This piece of code contains all …

Usability for Rich Internet Applications

Here’s a good article on design patterns for RIA. “Rich Internet applications (RIAs) can provide opportunities to design much better user experiences. They can be faster, more engaging and much more usable. However, this improvement is not without its downside—RIAs are much more difficult to design than the previous generation of page-based applications. The richer …