Showing posts with label Terms. Show all posts
Showing posts with label Terms. Show all posts

Visual Basic 6.0 Tutorial free download

Visual Basic (VB) is the third-generation event-driven programming language and Integrated Development Environment (IDE) from Microsoft for its COM programming model. Visual Basic is designed to be relatively easy to learn and use.
Visual Basic was derived from BASIC and enables the rapid application development (RAD) of graphical user interface (GUI) applications, access to databases using Data Access Objects, Remote Data Objects, or ActiveX Data Objects, and creation of ActiveX controls and objects. Scripting languages such as VBA and VBScript are syntactically similar to Visual Basic, but perform differently.

A programmer can put together an application using the components provided with Visual Basic itself. Programs written in Visual Basic can also use the Windows API, but doing so requires external function declarations.
The final release was version 6 in 1998. Microsoft's extended support ended in March 2008 and the designated successor was Visual Basic.Net (now known simply as Visual Basic).

Visual Basic 6.0 (Mid 1998) improved in a number of areas including the ability to create web-based applications. VB6 has entered Microsoft's "non-supported phase" as of March 2008. Although the Visual Basic 6.0 development environment is no longer supported, the runtime is supported on Windows Vista, Windows Server 2008 and Windows 7.

SOURCE: wikipedia
Click this link to download Visual Basic 6.0 Tutorial.

Read More Here...

What is BASIC?

BASIC is a family of general-purpose, high-level programming languages whose design philosophy emphasizes ease of use - the name is an acronym from Beginner's All-purpose Symbolic Instruction Code.

The original Dartmouth BASIC was designed in 1964 by John George Kemeny and Thomas Eugene Kurtz at Dartmouth College in New Hampshire, USA to provide computer access to non-science students. At the time, nearly all use of computers required writing custom software, which was something only scientists and mathematicians tended to do. The language and its variants became widespread on microcomputers in the late 1970s and 1980s, when it was typically a standard feature, and often actually built into the firmware of the machine.

BASIC remains popular to this day in a handful of highly modified dialects and new languages influenced by BASIC such as Microsoft Visual Basic. In 2006, 59% of developers for the .NET Framework used Visual Basic .NET as their only programming language.

SOURCE: wikipedia

Read More Here...

What is VB.Net?

Visual Basic .NET (VB.NET), is an object-oriented computer programming language that can be viewed as an evolution of the classic Visual Basic (VB), which is implemented on the .NET Framework. Microsoft currently supplies two major implementations of Visual Basic: Microsoft Visual Studio 2010, which is commercial software and Visual Basic Express Edition 2010, which is free of charge.

SOURCE: wikipedia

Read More Here...

What is IDE?

An integrated development environment (IDE) (also known as integrated design environment, integrated debugging environment or interactive development environment) is a software application that provides comprehensive facilities to computer programmers for software development. An IDE normally consists of:
  • a source code editor
  • a compiler and/or an interpreter
  • build automation tools
  • a debugger
The boundary between an integrated development environment and other parts of the broader software development environment is not well-defined. Sometimes a version control system and various tools are integrated to simplify the construction of a GUI. Many modern IDEs also have a class browser, an object inspector, and a class hierarchy diagram, for use with object-oriented software development.

SOURCE: wikipedia



Read More Here...

How to enable Facebook Timeline

Facebook Timeline is a new feature of Facebook changing your profile theme with timeline format. You can view your post and comments starts from the time when you registered on Facebook. It's like that your profile has an archive.
Many Facebook Users who have tried Facebook Timeline said that they don't like it and since it is still in Beta Version, it is normal to have a an error and problems. But me, I really like this new feature! You can easily navigate your profile... Interested? ツ

(Ctrl+Click the image to enlarge)

I'll going to teach you on how to enable your Facebook Timeline...just a simple hacking...ツ
I already made a research on how to do this, but their process is "difficult" to understand, that's why I made my own. (I hope it will work more easily for you! ツ)
but remember, You cannot disable this feature after enabling it.... maybe because it's still on its Beta version. Don't worry, I'll going to post here immediately if I already know how to disable it. ツ

and I suggest that you must use Mozilla Firefox because of some technical reasons... ツ

Anyway, here's how:

1st. Log-in your Facebook account.

2nd. Go to Facebook developer's page.
click Developers at the very bottom of your Facebook page.

(Ctrl+Click the image to enlarge) 


NOTE: If you already allow/permit Facebook Developer in your Facebook Account, skip Step 3 and 4 and proceed to Step 5.


3rd. Click "Apps" at the Menu bar.

(Ctrl+Click the image to enlarge) 

 4th. Click Allow button.
 (Click the image to enlarge)

 5th. You are now in the process of creating your New Application.
Click Create New App button.
A New App window will appear.
Fill up the following text boxes,
check the check box and click Continue button.

  (Ctrl+Click the image to enlarge)

6th.Security Check Required Window will appear.
Write the Captchas in the textbox.
then click Submit Button.
  (Click the image to enlarge) 
  
7th.Your new application is now created.
then click Open Graph at the sidebar.

  (Ctrl+Click the image to enlarge)


8th.
Get Started with Open Graph window will appear.
Fill up the text boxes. (follow the instruction.)
then click Get Started button.

(Ctrl+Click the image to enlarge)

9th. You are now in the last part of Open graph...
Just follow the instructions there but you can now proceed to step 10!  ツ
(Click the image to enlarge)

10th. It is the Last part!...
Click this link... Facebook Timeline and click Get Timeline Button.
(Ctrl+Click the image to enlarge)

that's it!... check and enjoy your new Facebook Profile... ツ

If you have questions or clarifications about enabling your Facebook Timeline...feel free to leave a message below...ツ

Read More Here...

Gogle+

They said, Google is on the move on how they gonna defeat the well-known and historical social networking site - the Facebook.  And their powerful weapon? the Gogle+...! I've heard that it's also a kind of social networking site but has great features compared to Facebook.
And it's already in its Beta version. I haven't tried it yet, or registered into it but by watching some videos about this new social networking site, I can say that it has the chance to defeat Facebook!.... that's only my Point of View. ツ peace to my fellow Facebook supporters. ツ

 Click this link Gogle+ to go to the said site.

Yeah your right! It is Google+ not Gogle+...=P .. I just making an experiment with that keyword...ツ
Anyway, Watch this video for some sneak peek about Gogle+... Google+ i mean... ツ


Read More Here...

What is Padding and Margin?

What is Padding and Margin?
I know many of us (web developer newbies) are already using/editing Padding and Margin in our sites (especially Padding) but don't what really are those! ツ
When I make a research about this terms, I found this Site that answered my question clearly....
a big thanks to the author... ツ


In this post I will explain padding and margin and their purpose.

First I will explain the difference between the two.

Padding is like a inside spacing where margin is a outside spacing. Both work in the same way with about the same effect.


Now the values of them can be used differently.

You can have one of the several
in
px
em
pt
%

Now their are may ways to get the same effect with padding and margin

You can specify which side like this

padding-top:25px;
padding-bottom:25px;
padding-right:50px;
padding-left:50px;

Now you can also use padding in one line by doing something like this. All 3 of these below will give you the same effect as the code above.

padding: 25px 50px; ( 2 digit)

padding 25px 50px 25px 50px (4 digit)

padding 25px 50px 25px (3 digit)

With 2 digit padding or margin the first digit is top and bottom where the second is left and right.

With 4 digit padding or margin it works like a clock. top, right, bottom, and left.

With 3 digit it padding or margin the first digit is top, the second is left and right and the third is bottom.

SOURCE

Read More Here...

Aligning and Positioning Widget/Gadget in Blogger

Aligning and Positioning your Widget/Gadget is also one of the important tricks you must know in blogger, so that you can put it everywhere in your page while disregarding the default template...
Sounds interesting, right? ツ
Normally, it is used to put your Search Box aligned to your header banner but you really need to have a Trial and Error Method for you have the perfect position of your Widget/Gadget.
But don't worry, the process are very simple! ツ

1st. You need to Locate The Widget/GadgetID#
 (just click the link above to know how...)
2nd. go to Design-->Template Designer-->Advanced--> Add CSS--> Input one of the codes below:
This is for basic text alignment. Replace the Orange with center, left, or right

#GadgteID# {
text-align: center;
}
This is for a more precise alignment.You can use Padding & Margin

#GadgetID# {
padding: 0px 0px 0px 0px
}

You can also use a code like this to fit your needs.

#GadgetID# {
position:absolute;
left:100px;
top:150px;
}

This would display your gadget  100px off the left side of your browser screen and 150px off the top. You can adjust this to your liking.

Their are a few different types of positioning variables you can use.

absolute:  Generates an absolutely positioned element, positioned relative to the first parent element that has a position other than static. The element's position is specified with the "left", "top", "right", and "bottom" properties

fixed:  Generates an absolutely positioned element, positioned relative to the browser window. The element's position is specified with the "left", "top", "right", and "bottom" properties

relative:   Generates a relatively positioned element, positioned relative to its normal position, so "left:20" adds 20 pixels to the element's LEFT position

static:   Default. No position, the element occurs in the normal flow (ignores any top, bottom, left, right, or z-index declarations)

inherit:    Specifies that the value of the position property should be inherited from the parent element

SOURCE

Read More Here...

DOTA Warkeys Free Download

Wanna play DOTA (Defense of the Ancients) using a warkey (sometimes called hotkey) software? It is used to let your numkeys converted to alt+letters for you to have a good game because you can easily use your items (active) in numkey and with no sweat! ツ It is a great advantage specially to those who are playing in laptops or netbooks. Many DOTA addict gamers using this kind of software already....but I know there are sill some who don't, specially the newbies...ツ

                  Controls:
Numkeys                   Warkeys
     7                               alt+Q
     8                               alt+W
     4                               alt+A
     5                               alt+S
     1                               alt+Z
     2                               alt+X

Download DOTA warkey here: MASH.EXE (22.10kb)
It's 99% no virus! Thanks to the person who uploaded it in MediaFire. ツ

TIP:  Always remember the keyword "cyberlympus dota warkey" or save it to your cellphone so that where ever you play DOTA and want to have a warkey/hotkey, just research that keyword in google.com. ツ

If you have questions or comments, just post it below.... Happy gaming!

Read More Here...

FLYFF v16 - Rise of the Muran 3rd jobs

Flyff...which means Fly For Fun...
  is a fantasy MMORPG by Korean development company Gala Lab (formerly Aeonsoft & nFlavor).Flyff is a fairly typical party-oriented grinding game where no character can do everything, and efficient play requires working in groups to level up by killing monsters, or Masquerpets. Its main distinctiveness lies in its flying system; flying is the normal method of transportation for characters above level 20.
Flyff is now hosted in 13 countries and 10 languages. It's currently played by over 6 million people.
 Source

Flyff v16 Job Evolution



Rise of the Muran includes tons of new features, although none as highly anticipated as the revelation of the Job Evolutions. We aren't just raising the Level Cap this time around, we are increasing the strength and potential of all jobs.
Once you reach level 130H, you will unlock the ability to receive a new quest chain. Once you have completed this new quest chain you will unlock new Skills that can greatly change your experience. In some cases you will even require the use of new tools in order to perform your new, more powerful Skills. Rise of the Muran is going to shake up the way you play Flyff!

3rd jobs...   

Ringmaster->Seraph
New Skills:
•Breath of Life
•Heavens Step
•Divine Prosperity
•Raiment of Rhisis
•Priest's Grasp
•Soul of Rhisis

Blade->Slayer
New Skills:
•Deadly X
•Sky Splitter
•Blessing of War
•First Blood

Ranger->Crackshooter
New Skills:
•Devastating Sting
•Condor Dive
•Farsight
•Spirit of the Hawk

Psykeeper->Mentalist
New Skills:
•Cimetiere's Scream
•Laughter of La Croix
•Samedi's Embrace
•Kriminel's Hand
•Aether Grasp

Elementor->Arcanist
New Skills:
•Spectral javelin
•Astral Moon
•EVA Storm
•Echoes of the Weary

Jester->Harlequin
New Skills:
•Whisper Dodge
•Minds Eye
•Pandemonium
•Harlequins Greeting

Knight -> Templar
New Skills:
•Templar's Call
•Sky Splitter
•Maelstrom Strike
•Shield Bash
•Heart of the Tower
•Dead Man's Lure

Billposter->Force Master
New Skills:
•Bubbles Blessing
•Shades Calamity
•Ire of Iblis
•Touch of Rhisis

Source: flyff.gpotato.com

Read More Here...

Kepler-22b, The New Planet - 600 light-years from the Earth

 The Kepler-22b... a real new planet?  In my own point of view, if there's already living in the said planet, like the so-called aliens and UFOs, they are most developed and modernized compared to us. There technology is more powerful! since many people already claiming they saw an aliens long time ago with a disc-shaped space ship... and that was long time ago! how about now? I hope I have the chance to use their Computers and technologies, if they really exist. ツ
A new planet detected orbiting a star 600 light years away could have continents, oceans and life, it was revealed today.
The planet, Kepler-22b, is about twice the size of Earth and may have a surface temperature of around 22C - similar to a warm spring day in the UK.
It is the first so-called "super-Earth" known to lie within the "habitable" zone of a Sun-like star.
Dubbed the "Goldilocks zone", this is the orbital band where temperatures are just right to allow the existence of surface liquid water.
This means the planet could have continents and oceans just like the Earth. And where there is liquid water, there could also be life.
Scientists believe Kepler-22b may not only be habitable, but possibly even inhabited.
"This discovery supports the growing belief that we live in a universe crowded with life," said Dr Alan Boss, from the Carnegie Institution in Washington DC, who helped identify the planet from data obtained by the Kepler space telescope.

An artist's illustration of Kepler-22b (Pic: NASA)
An artist's illustration of Kepler-22b (Pic: NASA)

The telescope, launched by the American space agency Nasa, is watching 155,000 stars looking for tiny dimmings in brightness that betray the presence of planets.
Kepler-22b's host star, in the region of the constellations of Lyra and Cygnus, is slightly smaller than the Sun and about 25% less luminous.
The planet orbits the star in 290 days, compared with the Earth's 365, at a distance 15% closer than the Earth is from the Sun.
It lies right in the centre of the star's habitable zone, where potentially perfect conditions exist for life.
Two other small planets orbiting stars smaller and cooler than the Sun have recently been found at the very edges of their habitable zones. Their orbits more closely resemble those of Mars and Venus.
A report on the discovery will be published by the Astrophysical Journal.
Dr Douglas Hudgins, Kepler programme scientist at Nasa headquarters in Washington, said: "This is a major milestone on the road to finding Earth's twin."
The planet was spotted after making a "transit" across the front of its parent star, causing the star's brightness to dip. At least three transits are needed before such a signal can be confirmed as a planet.
Source.

Read More Here...

Yahoo!'s Easter Egg

Easter egg? An egg sell by Ms. Easter? Just kidding...ツ
What I'm talking about is also not the eggs made in Easter seasons.
Easter egg is a term used in Computer world referring to an intentional secret message, a code, or some joke-thing in a computer programs, web pages, software, and also in games or movies.

Sample of an Easter Egg that I like most (I know it's already an old thing) is the Yahoo!'s yodel.
Wanna try? It's simple! just go to Yahoo.com website and look for the Yahoo! logo. After that, just click the exclamation point in the said logo. You can hear a yodel "Yahooooooo!" .... of course, you must have a speaker or your sound box is not muted to hear the voice. =P

 

Do you have some other Easter eggs there? Share it here! ツ

Read More Here...

JFGI!

One time, I asked my older brother something,then he just said to me, "JFGI!"...

JFGI???..

JFGI is a "new" computer terminology which mean JUST FUCKING GOOGLE IT! ...yes it is! ツ


I'm already using this term when someone is asking me but only if his/her question is something stupid. ツ

you can also use the term STFW - Search the fucking Web
or GIYF (if you are polite) which means Google is your friend... ツ

Any question? JFGI! =P

Read More Here...

Blog Archive