Classifieds |  Web |  My |  Home |  Pictures |  Wiki |  Lyrics |  Games |  Jokes |  Recipes |  Radio |  Today |  HELP
Bollywood |  Juicy Gossip |  Current Affairs |  News |  Hollywood |  Galatta |  Broadband |  Trailers |  HiDef
  • Hindi Lyrics
  • Songs
  • Videos
  • Albums
  • English Lyrics
  • Wallpapers
  • Trailers
  • Pictures
  • Movie Reviews
  • India Brand
  • Articles
  • Industry
  • YouTube
Recently Featured  |  Most Discussed  |  Most Recent  |  Most Responded  |  Most Viewed  |  Top Favorites  |  Top Rated  |  TV Serials  |  Trailers  |  Recently Watched
Videos from “Firchild” (25 video results)
5 4 Creating a Simple Browser in Visual Basic.NET
Using Visual Basic.NET (in this instance 2005) in order to create a simple browser that basically hijacks functionality from internet explorer Here's the code: Private ...
Added: 1 month ago
From: Firchild
Views: 232
5.0
08:59
More in: Howto
5.00 Installing Visual Basic 2008
A quick and slightly sloppy video showing how to download and install VB 2008
Added: 3 months ago
From: Firchild
Views: 260
5.0
04:26
More in: Howto
6 8 IF Statements in Flash
Using an IF statement linked to a button to verify text typed in one box (input text) and output to another (dynamic text). Here's the code (amended) on(release){ if((answer....
Added: 4 months ago
From: Firchild
Views: 230
no rating
08:09
More in: Howto
6.7 Masking in Flash
Creating a mask on an image in flash
Added: 4 months ago
From: Firchild
Views: 251
5.0
04:47
More in: Howto
6.6 Shape Tweening to create a morph effect in Flash CS3
Using a shape tween to morph a word into a picture
Added: 4 months ago
From: Firchild
Views: 466
4.0
04:14
More in: People
2.33 Populating a text box (or control) using a form button
Simple VBA that creates a 'Help Form' in Access
Added: 10 months ago
From: Firchild
Views: 2932
4.0
06:08
More in: Education
2.32 Queries Using SQL And VBA in Access
Using QBE builder to provide SQL and sticking it into VBA in order to run a delete query
Added: 10 months ago
From: Firchild
Views: 3545
5.0
06:23
More in: Education
2.31 Graphs in Microsoft Access
Using Reports to create graphs in Access (I wouldn't use this normally, since spreadsheets like Excel are sooo much better for this application!)
Added: 11 months ago
From: Firchild
Views: 2325
5.0
02:22
More in: Howto
2.30 Using VBA and API to Embed Audio Files in Access Forms
Using VBA in Access, using API in order to invoke an audio player. Here's the code I used Module code: Const SND_ASYNC = (1) Const SND_NODEFAULT = (2) Declare Function ...
Added: 1 year ago
From: Firchild
Views: 4329
5.0
04:29
More in: Howto
2.29 Password Protecting Queries with Access VBA
Forcing a password to be entered in order to run a query Here's the code I used Password.SetFocus If Password = "Manager1" Then MsgBox "Access Granted", vbInformation, "CD ...
Added: 1 year ago
From: Firchild
Views: 2721
5.0
06:54
More in: Howto
6.5 Orient to Path in Flash CS3
Creating a multi-object symbol and moving it along a set path, using the Orient to Path function to modify the angle of the object along the path.
Added: 1 year ago
From: Firchild
Views: 3245
5.0
06:36
More in: Howto
6.4 Motion Paths and Tweening in Flash CS3
Animating a bouncing ball using a motion path and tween
Added: 1 year ago
From: Firchild
Views: 1828
5.0
03:41
More in: Howto
6.3 Motion and Shape Tweening in Flash CS3
Using Tweening to change location and shape of items in an animation
Added: 1 year ago
From: Firchild
Views: 1090
4.0
06:14
More in: Howto
5.3(3) Calculator in Visual Basic Part 3 - Perfecting Code
Putting the finishing touches on the code by dealing with the zero division "error" (in versions prior to VB 2005, this would be a runtime error, in 2005 onwards, this is ...
Added: 1 year ago
From: Firchild
Views: 6191
4.0
01:53
More in: Howto
5.3 (2) Creating a Calculator in Visual Basic Part Two
Adding the code needed to make your calculator function (continued from part one) Here's the code used: Option Explicit On Public Class Form1 Dim FirstNumber As Single Dim ...
Added: 1 year ago
From: Firchild
Views: 16579
4.0
09:02
More in: Howto
5.3 (1) Creating a Calculator in Visual Basic Part One
Part one of setting up a pretty decent calculator in Visual Basic (Actually functions much like the Windows calculator)
Added: 1 year ago
From: Firchild
Views: 20124
4.0
02:55
More in: Howto
6.2 Animation (Stop Motion) in Flash CS3
Simple stop motion animation in Flash CS3
Added: 1 year ago
From: Firchild
Views: 2665
4.0
06:35
More in: Howto
6.1 Flash 101 - Simple shapes and using layers in Flash CS3
Really basic setup of images using simple layers in Adobe Flash CS3 which will be animated in the next video
Added: 1 year ago
From: Firchild
Views: 787
5.0
04:18
More in: Howto
2.26 Password Login Form / screen using VBA in Access
Creating a Login Form and password protecting your database Here's the code I used: Username.SetFocus If Username = "user1" And Password = "user1" Then MsgBox "Access Granted",...
Added: 1 year ago
From: Firchild
Views: 17506
5.0
05:51
More in: Howto
2.28 Protecting your VBA Code in Access
Protecting your VBA code from snoopy little trolls
Added: 1 year ago
From: Firchild
Views: 4056
5.0
01:36
More in: Howto
2.27 Creating a Multi User Login System in Access VBA
Creating a multi-user login form to password protect different areas of your database Here's the code: Username.SetFocus If Username = "staff1" And Password = "staff1" Then MsgBox ...
Added: 1 year ago
From: Firchild
Views: 17127
4.0
04:39
More in: Howto
2.25 DateDiff - Calculating Age in Access using Date of Birth
Using the DateDiff function to work out age from birth date
Added: 1 year ago
From: Firchild
Views: 5365
5.0
02:32
More in: Howto
2.24 Calculated Queries in Access (Calculated Fields)
Using a calculated field to work out the tax payable on an item, then adjusting item value
Added: 1 year ago
From: Firchild
Views: 4523
5.0
04:27
More in: Howto
5.1 Checking/Validating data using IF Statements in Visual Basic.NET
Using an IF Statement to Validate text placed in a text box on button press: Here's the code I used in this: Dim Captain As String Captain = TextBoxCaptain.Text Captain ...
Added: 1 year ago
From: Firchild
Views: 2067
4.0
07:25
More in: Howto
5.0 Visual Basic.NET 2005 & 2008 "Hello World" Forms and Buttons
Creating Message Boxes, Text Boxes, Add Text and Exit button, Putting together a simple text editor
Added: 1 year ago
From: Firchild
Views: 2196
5.0
08:14
More in: Howto

Loading...

Video Categories:
  • Autos & Vehicles
  • Comedy
  • Education
  • Entertainment
  • Film & Animation
  • Gaming
  • Howto & Style
  • Music
  • News & Politics
  • Nonprofits & Activism
  • People & Blogs
  • Pets & Animals
  • Science & Technology
  • Sports
  • Travel & Events
Popular Keywords
pokemon qvc playstation game cheats continental kohls webkinz sesame street rediff saturday night live indian lakme ad craigslist saturday night live pokemon webkinz hollywood angelina jolie yahoo usps firefox office depot
Also Try:
  • actors
  • actresses
  • ads
  • air force
  • animation
  • awards
  • banking
  • beauty
  • belly dance
  • bindi
  • bpo
  • bridal wear
  • business
  • call center
  • cars
  • cartoons
  • cinema
  • comedy
  • club
  • commercials
  • cooking
  • cricket
  • curry
  • dance
  • drama
  • economy
  • fashion
  • films
  • food
  • healthcare
  • henna
  • hospitals
  • jewellery
  • jobs
  • joke
  • karaoke
  • kids stories
  • laughter
  • magic
  • medical tourism
  • mobile
  • models
  • mountains
  • naukri
  • news
  • nri
  • prank call
  • recipes
  • remix videos
  • roads
  • saree
  • serials
  • shaadi
  • short films
  • swimsuit calender
  • temple
  • tourism
  • train
  • travel
  • tv serials
  • tv shows
  • voice
  • wedding
  • yoga
Hot Trends from World
Hot Trends from India
Hot Trends from Singapore
SmasHits.com - India's leading web site for lovers of Indian Music, Hindi Songs, Bollywood Movies, Pop, Bhangra, Ghazals, Remix and more.
Disclaimer