Thursday 30 April 2015

Learn Visual Basic 6.0- Working with Frame Control,Check Box and Option ...

Learn Visual Basic 6 0 Working with Frame Control,Check Box and Option Buttons -Quick and easy
(No Step is skipped while demonstration-Each Step is explained with quick notes )
Video demonstration is focused on following points:
1.How can you display a text while loading a form.
2.How can you insert Frame control in the form
3.How can add different checkbox  and option button controls into the frame.
4.How can you make them functional by writing the code into them.
You can work easily with such controls once you are able to find : how do they do it.
Watch this video and leave your comments for suggestions.
Subscribe to channel for find more interesting videos.




Source Code :
Private Sub ChkBold_Click()
If ChkBold.Value = 1 Then
TxtName.FontBold = True
Else
TxtName.FontBold = False
End If

End Sub

Private Sub Chkitalic_Click()
If Chkitalic.Value = 1 Then
TxtName.FontItalic = True
Else
TxtName.FontItalic = False
End If

End Sub


End Sub

Private Sub fntSize_Click()
If fntSize.Value = 1 Then
TxtName.FontSize = 12
Else
TxtName.FontSize = 8
End If
End Sub

Private Sub Form_Load()
TxtName.Text = "SANDEEP KAUNDAL"
TxtName.FontSize = 8

End Sub

Private Sub Opt1_Click()
Txtgen.Text = "Male"
Txtgen.FontBold = True

End Sub

Private Sub Opt2_Click()
Txtgen.Text = "Female"
Txtgen.FontBold = True
End Sub

Saturday 18 April 2015

How Plotter Works-Demonstration

A plotter gives a hard copy of the output. It draws pictures on paper using a pen..Ideal for Flex Cut out,Advertisement ,Public Attention .
Video is shooted by sandeep kaundal

Please Like and Share :-)

Visual Basic 6.0 Video Tutorial -Working with Command Button and its Properties

 Visual Basic 6.0 Video Tutorial -Working with Command Button and its Properties

Visual Basic 6 0 Tutorial
Working with Command Button and its properties
Discover best in learning and making the best use of Visual Basic 6.0 tool ..

The command button control is used to begin, interrupt, or end a process. When clicked, it invokes a command that has been written into its Click event procedure.

Please Like and Share :-)

Visual Basic 6.0 Video Tutorial-Working with Label and its properties

Visual Basic 6.0 Video Tutorial-Working with Label and its properties


VB 6.0 Tutorial
How we can add labels on a form and format them in interactive way .
This is probably the first control you will master. It is used to display static text, titles and screen output from operations.

Please Like and Share:-)

Visual Basic 6.0 Video Tutorial- working with Message Box -MsgBox Function

Visual Basic 6.0 Video Tutorial- working with Message Box -MsgBox Function

This VB6 tutorial explains how to use the MsgBox function in Visual Basic. This also works for VBS MsgBox. The MsgBox function displays a message in a dialog box, waits for the user to click a button, and returns an Integer indicating which button the user clicked.

Please Like and Share :-)

How to type Copyright ,Registered and Trade Mark Symbol in MS Word Document-do it quickly

How to type Copyright ,Registered and Trade Mark Symbol in MS Word Document-do it quickly


Add Copyright Symbol,Registered and Trademark Symbol in MS Word Document.
Simplest and easiest ways to add these symbol in your document just in fraction of  second.
Please Like and Share :-)

Type Rupee Symbol in MS Word-Do it quickly

Type Rupee Symbol in MS Word-Do it quickly

Simple Steps to add Rupee Symbol in your Microsoft Word Document.
Add rupee symbol very easily .everyone can add it quickly.
just watch this video
PLEASE LIKE AND SHARE :-)

Delete unwanted and temporary files from your system-Boost your PC

Delete unwanted and temporary files from your system-Boost your PC
Simple steps to free the space occupied by Unwanted or Temporary files in your computer.
Simple Commands to delete such files and utilize the space effectively.
Watch and share.
PLEASE LIKE AND SHARE :-)

How to delete Windows.Old Folder using DISK CLEANUP in WIndows 8

How to delete Windows.Old Folder using DISK CLEANUP in WIndows 8
WIndows 8 Operating System Installation
Files that were used in your previous version of Windows are stored in the Windows.old folder.
you can safely reclaim disk space by using Disk Cleanup to delete the Windows.old folder and other temporary files .


PLEASE LIKE AND SHARE :-)

NESTED MENUS or MENUS WITHIN MENU IN MENU BAR USING MENU EDITOR in Visual Basic 6.0 -quick and easy

NESTED MENUS or MENUS WITHIN MENU IN MENU BAR USING MENU EDITOR

in this tutorial,Video Demonstration is focused on following activities:
*How we can create Nested Menu on Menu Bar already created.
Nested Menus means menus within menu.
we can make a hierarchy of menus from one level to the other level.
PLEASE LIKE AND SHARE

Learn Visual Basic 6.0-Dropdown Menus or Sub Menus in Menu bar using Menu Editor

DROPDOWN MENU or SUBMENUS IN MENU BAR USING MENU EDITOR IN VISUAL BASIC 6.0

in this tutorial,Video Demonstration is focused on following activities:
*How we can create Dropdown  Menus or Sub menus on menubar already created.
Sub Menus are menus that are branch off from another menu items.

PLEASE LIKE AND SHARE
CREATE A MENU BAR USING MENU EDITOR IN VISUAL BASIC 6.0


How we can create Menu Bar using Visual basic 6.0.
All Steps are easy and self explanatory.easily you can create menu bar without hassle.

Student Login Form Using Visual Basic 6.0- Tutorial-Quick and easy

Student Login Form using Visual Basic 6.0

How we can create a login form (Student Login Form) with ease.

I feel that you are much familiar with the controls and events of VB.
 Login Form is basically designed to verify the user before granting the access to use any system.


First we will create login form and do the authentication of user using simple lines of code..
Secondly we check that if login is successful then redirected the control to Main form.otherwise control willnot be redirected.
 simple steps  to create Student Login form.

Every one can create such kind of applications quickly.



Code

Private Sub Command1_Click()
Dim username As String
Dim password As String
username = "admin"
password = "admin"
If (username = Text1.Text And password = Text2.Text) Then
MsgBox "login successful......"
Form2.Show

Else
MsgBox "sorry..... login failed....try again...."
End If
End Sub

PLEASE LIKE AND SHARE
SUBSCRIBE TO MY CHANNEL

Friday 17 April 2015

Custom Progress Bar in Splash Screen using Visual Basic 6.0-Tutorial Upd...

How you can build a customized Progress Bar in Splash screen using Visual Basic 6.0.
Video Demonstration focused on following parts
*How to develop a splash screen using VB.
*How to adjust the splash screen in the middle of the computer screen.so that it looks nice when splash screen is loading.
*Finally Customized Progress Bar using Visual Basic.
#How to design the progress bar first.
#How to change the properties of different controls used in Progress Bar.
#How to add code to make your progress bar functional .
For your more convenience ,i am adding the source code of the entire project here .
Source code for adjust the screen in the middle. and Source code for Progress Bar which must be written under Timer Control function.Click the file to download:
https://www.mediafire.com/?05ybjjl4n1r48l1

Dim ctr, ctr2, r As Double
Dim ctr3 As String
'ADJUST THE SCREEN IN THE MIDDLE
Private Sub Form_Load()
Me.Left = (Screen.Width - Me.Width) / 2
Me.Top = (Screen.Height - Me.Height) / 2
End Sub

'SOURCE CODE CUSTOM PROGRESS BAR UNDER TIMER CONTROL

Private Sub Timer1_Timer()
ctr = 0
If ctr2 <= 100 Then
    Randomize
    r = Int((200 - 100 + 1) * Rnd + 100)
    ctr = r / 50
    ctr = Round(ctr, 0)
    ctr = ctr2 + ctr
    ctr3 = Str(ctr)
        If ctr >= 100 Then
             Percentage.Caption = "100%"
             shpProgress.Width = 5000
             Login.Show
             Unload Me
        Else
             shpProgress.Width = shpProgress.Width + r
             Percentage.Caption = (ctr3) + "%"
             ctr2 = Int(ctr3)
        End If
End If

End Sub



Please Like and Share,Commets :-) ..
Subscribe the Channel...

Thursday 2 April 2015

Picture Browser in Visual Basic 6 0- Using Drive List ,Directory List,Fi...


PICTURE VIEWER IN VISUAL BASIC 6.0

How you can create a picture Viewer/Browser in Visual Basic 6.0 with four controls Drive List Box ,Directory List Box,File List Box,Picture Box.
Just write a few lines of code and make some changes in the properties windows for each control .
Every one can create such application.
Code:
Private Sub Dir1_Change()
File1.Path = Dir1.Path
End Sub

Private Sub Drive1_Change()
Dir1.Path = Left(Drive1.Drive, 2)
End Sub

Private Sub File1_Click()
On Error Resume Next
Picture1.Picture = LoadPicture(File1.Path + "\" + File1.FileName)
End Sub

LIKE AND SHARE.

SUBSCRIBE TO MY CHANNEL :-)