Showing posts with label Basic programming. Show all posts
Showing posts with label Basic programming. Show all posts

Friday, May 27, 2011

Basic Web Development Solutions





You want to write your own piece like songs, poems and stories, and your target is a mammoth crowd of audience? then free hosted sites service is for you. Most of the developers forgot to consider that hosted web service is the best to become their sidekicks in developing their own content.

Web hosted solutions is not bad after all, they can easily be managed and automatically propelled the syndication of the content using the aggregators like RSS(Really Simple Syndication). The Google web site offers a variety of web service from blogs to web e-mails. The templates are already in the dashboard/main panel area, the end user has to activate it and start to choose the templates and layout of his own to rock in the internet.

There are Hosted Blogging services too, you can tell the globe of your stories and experiences or exchange ideas with the different races at the edge of the continent. The following blogging service are - blogger.com, yahoo! 360- the address is http://360.yahoo.com. Myspace is part of the bigtime innovation of FB, check myspace.com There are lots of websites that offer services in the internet, but one thing of caveat! guard your self or you might embrace a catastrophe experience on the net.

If you gotten these hosted services. its about time for you to understand the web technology. How does the Web Technology works. Try HTML tutorial at w3cSchool.

Thursday, May 26, 2011

Of Active-x and Programs





Before it was the OLE (object Linking Embedding) now its the innovation of frameworks to apply the various technology of the 3rd party programs that instigate applications of web, multimedia, stand alone programs, mobile, augmented systems and the network enterprise application.

According to the WIKEPEDIA ACTIVEX” is – is a framework for defining reusable software components in a programming language independent way. Software applications can then be composed from one or more of these components in order to provide their functionality.[1]
It was introduced in 1996 by Microsoft as a development of its Component Object Model (COM) and Object Linking and Embedding (OLE) technologies and is commonly used in its Windows operating system, although the technology itself is not tied to it.
Many Microsoft Windows applications — including many of those from Microsoft itself, such as Internet Explorer, Microsoft Office, Microsoft Visual Studio, and Windows Media Player — use ActiveX controls to build their feature-set and also encapsulate their own functionality as ActiveX controls which can then be embedded into other applications. Internet Explorer also allows embedding ActiveX controls onto web pages.”

I think framework is just a container or a monstrous IDE (integrated Development Environment) of the softwares where external libraries and links are catered by the host which is the framework.

To straighten the discussion, Activex speed up the programming process by means of Controls and elements. This is the artillery of the programmers, to erect a unique applications, no need to expand the systems by writing a curvy and spaghetti codes, it is designed to curb long codes and embrace the Rapid Application Design(RAD).

There are two types of control in the Vb framework , these are the Standard and and Intrisinc(hidden) control. Where can you find this? it is located in the Reference of the VB framework.

On the other hand OLE was (I think the current vehicle of activex) the vintage activex that automates the process of shelling other applications. It has the temerity to call external applications and create a logical simulation of linking the remote applications to the Hosts programs.

For example, Notepad could be the target program to communicate with the VB program. This is to link the host and the server using the OLE component of the Visual Basic. This is an old trick, but once you understand the principle, it could lead to a better innovation process.

You can share your thoughts, ideas or queries in the HOW TO column.

Monday, April 18, 2011

The power of Basic

Basic refuses no power, and power refuses no basic. The evolution of computing started with the vintage programming- the Basic programming, I can still remember the vintage program of gWBasic and Basica, I used to code my program in  apple computer(the green screen) and in IBM PC computer.

The first thing that I learned was the medieval disk operating system to manipulate the boot up process and file handling management. We need to study the internal and external commands of DOS to to copy a file from another disk and to save a file. Before the basic program was hoarded in the memory of the computer, during the boot up process it will automatically proceed to the basic program.

The father of basic stuff  is Alan Cooper (correct me if I'm wrong). Basic created a ladderization of improvements from simple data crunching to class and object oriented programming.From a unique calling procedure to branch in a target line number using the GOSUB command.The GOSUB command leverage its function to a procedure and event programming in Visual Basic. Basic hoisted its name in the apex of computing.

The famous SCREEN,PSET,PRESET,GET,PRINT and LOCATE commands unleash the graphical prowess of basic to dictate the usefullness of gaming algorithm while  the PEEK and POKE play around with low level programming in storing the value to the memory address.


Here is the tiny vintage code in basic.

10 cls
20 rem-prg by. Dr.F
30 let x = 10
40 let y = 10
50 let total = y+x: for i = 1 to total: print chr$(i):next i
60 end

Did you notice that Basic is a  bit akin to Python?