Skip to main content

TechnoBytes(Tech+Articles=TECHCLES)

Computer Invention
This digital pen is a computer invention that transmits writing into digital media.
Although touch screen devices represent a movement away from paper, approximately eighty-percent of businesses still use paper based forms.
Many professions hand-write their notes, tables, diagrams and drawings instead of using tablets or other devices.
The computer pen is comparable to a regular ink pen (even uses refillable ink) that writes on regular paper, except it has an optical reader that records motion, images and coordinates. The recorded data is then transmitted to a computer via a wireless transmitter.
You can browse and edit your written notes, diagrams, tables, or drawings.
Another useful feature of this computer invention is that hand-written digital files can be easily converted into text fonts for use in word documents or emails.
Digital pen technology was first developed by the Swedish inventor and entrepreneur Christer Fåhraues.
Fåhraues is a physician and has an honorary doctorate degree in technology from Lund University in Sweden, and a M.Sc. degree in Bioengineering from the University of California San Diego.
Fåhraues served as the Chief Executive Officer and Chairman of Anoto Group AB, a company he originally founded in 1996 as C Technologies to license his digital pen technology.
This computer invention has been licensed to companies around the world for various commercial products. Applications include data/signature capture, completing forms, mapping, surveying, document management, paper replay, whiteboards, toys and education.
There are great expectations for digital pen technology over the next few years.

Comments

Popular posts from this blog

Convert Text Into Audio Using Notepad - TechnoBytes

Convert Text Into Audio Using Notepad How To Do It ? Open Notepad file on your Windows PC. Copy and paste the below mentioned code : Dim msg, sapi msg=InputBox(“Enter your text for conversion–www.techvorm.com”,”TechVorm Text-To-Audio Converter”) Set sapi=CreateObject(“sapi.spvoice”) sapi.Speak msg Save this file with any name with .vbs as extension. For eg. Text-To-Audio.vbs Thats it ! Your Text to Audio converter is ready to be used. Now open the saved file and key in the text you want to convert and click OK. If you find any difficulties in using this code, let me know via comments section.

WHAT IS SHARE MARKET ?

A share market is where shares are either issued or traded in. The key factor is the stock exchange – the basic platform that provides the facilities used to trade company stocks and other securities. A stock may be bought or sold only if it is listed on an exchange. Thus, it is the meeting place of the stock buyers and sellers. India's premier stock exchanges are the Bombay Stock Exchange and the National Stock Exchange. THERE ARE TWO KINDS OF SHARE MARKETS – PRIMARY AND SECOND MARKETS. Primary Market: This where a company gets registered to issue a certain amount of shares and raise money. This is also called getting listed in a stock exchange. A company enters primary markets to raise capital. If the company is selling shares for the first time, it is called an Initial Public Offering (IPO). The company thus becomes public. You can read about the 6 factors to consider before investing in an IPO here. Secondary Market: Once new securit...

Toggle Keyboard Button Simultaneously - TechnoBytes

Toggle Keyboard Button Simulteniously Using Notepad (and VB) you can set different keys on your keyboard to toggle continuously. Following are the 3 tricks using which different keys can be set to toggle simultaneously. Follow the steps given under each head to try out the tricks. 1. Caps Lock Key Open Notepad. Paste the following code in the notepad file: Set wshShell =wscript.CreateObject(“WScript.Shell”) do wscript.sleep 100 wshshell.sendkeys “{CAPSLOCK}” loop Save the file with anyname and .vbs extension. and close it. Now open the newly created file and see how the caps lock key behaves on your keyboard! 2. Hit Enter Key Continuously Open Notepad. Paste the following code in the notepad file: Set wshShell = wscript.CreateObject(“WScript.Shell”) do wscript.sleep 100 wshshell.sendkeys “~(enter)” loop Save the file with any name and .vbs extension and close it. Now open the newly created file and see how the enter ke...