Monday, August 27, 2018

Create Bootable Pedrive for Windows 7/8/10

This videos shows how to create bootable pendrive for windows 7/8/10. In this video two methods are explained for creating bootable pendrive.

Watch the video till end :
https://youtu.be/1tAI3bOR2Fo

Method 1: Use DVD for making bootable pendrive.
   Copy all the files from DVD using keys Ctrl + A from keyboard (don't use mouse for selection, it     may not select the hidden files) and paste it in pendrive.

Method 2: Using software for creating bootable pendrive.
     You need two things - rufus software and ISO image file to copy.
     You can download both of it from internet and links are given below.
     To download Rufus 3.1 click:  https://rufus.akeo.ie/

      After downloading files: Run rufus program, you will see this window
 Step 1: Select ISO image file, where you saved.

 Step 2. Give the name to your Pendrive

 Step 3: Select NTFS from file system.

 Step 4: Click on START.

Wait for a while, once the process is complete your work in done.

After this you can use your pendrive as RAM Memory.
     

Thursday, August 23, 2018

How to add photo as icon in pendrive

This video tutorial shows how to add photo or logo as icon in your removable disk. This feature makes your removable disk personalize and attractive. It is very simple and fast method to display your photo as icon on pendrive.

watch till end:
https://youtu.be/arMxXxQ2sng

First step: Edit your photo to bitmap picture format (bmp)

Second step: Create a new text document (notepad) and type two lines of code as:
      [autorun]
      icon= photo_name.bmp

      Save it as file name: autorun.inf
      & file type as: All files

Third step: Now copy or cut and paste the both photo and file into pendrive. And your work is done.


For more informative videos subscribe my channel and like comment and share: 

Friday, August 17, 2018

Create Calculator Using Microsoft Word VBA

This video tutorial describe how to create Calculator using Microsoft Word VBA. This is simple and easy steps to create calculator helps students to interact with VB Environment. For complete guide watch the video below.




Complete code:
-----------------------------------------------------------
Option Explicit
Dim num1 As Double
Dim num2 As Double
Dim op As String
Dim result As Double

-----------------------------------------------------------

Private Sub CommandButton1_Click()                       // For button 7
If TextBox1.Text = "0" Then
TextBox1.Text = "7"
Else
TextBox1.Text = TextBox1.Text & "7"
End If
End Sub
-----------------------------------------------------------

Private Sub CommandButton10_Click()                  // For button 3
If TextBox1.Text = "0" Then
TextBox1.Text = "3"
Else
TextBox1.Text = TextBox1.Text & "3"
End If
End Sub
-------------------------------------------------------------
Private Sub CommandButton11_Click()                    // For button 2
If TextBox1.Text = "0" Then
TextBox1.Text = "2"
Else
TextBox1.Text = TextBox1.Text & "2"
End If
End Sub
--------------------------------------------------------------  
Private Sub CommandButton12_Click()                    // For button 1
If TextBox1.Text = "0" Then
TextBox1.Text = "1"
Else
TextBox1.Text = TextBox1.Text & "1"
End If
End Sub
---------------------------------------------------------------
Private Sub CommandButton13_Click()                      // For operator /
num1 = TextBox1.Text
TextBox1.Text = 0
op = "/"
End Sub
---------------------------------------------------------------
Private Sub CommandButton14_Click()                   // For operator =
num2 = TextBox1.Text
If op = "+" Then
result = num1 + num2
TextBox1.Text = result
ElseIf op = "-" Then
result = num1 - num2
TextBox1.Text = result
ElseIf op = "x" Then
result = num1 * num2
TextBox1.Text = result
ElseIf op = "/" Then
result = num1 / num2
TextBox1.Text = result
End If
End Sub
-------------------------------------------------------------------
Private Sub CommandButton15_Click()                         // For button .
If TextBox1.Text = "0" Then
TextBox1.Text = "."
Else
TextBox1.Text = TextBox1.Text & "."
End If
End Sub
--------------------------------------------------------------------------
Private Sub CommandButton16_Click()                                     // For button 0
If TextBox1.Text = "0" Then
TextBox1.Text = "0"
Else
TextBox1.Text = TextBox1.Text & "0"
End If
End Sub
--------------------------------------------------------------------------------
Private Sub CommandButton17_Click()                                          // For button Clear
TextBox1.Text = 0
End Sub
----------------------------------------------------------------------------
Private Sub CommandButton2_Click()                                             // For button 8
If TextBox1.Text = "0" Then
TextBox1.Text = "8"
Else
TextBox1.Text = TextBox1.Text & "8"
End If
End Sub
-------------------------------------------------------------------------------
Private Sub CommandButton3_Click()                                            // For button 9
If TextBox1.Text = "0" Then
TextBox1.Text = "9"
Else
TextBox1.Text = TextBox1.Text & "9"
End If
End Sub
---------------------------------------------------------------------------------
Private Sub CommandButton4_Click()                                           // For button +
num1 = TextBox1.Text
TextBox1.Text = 0
op = "+"
End Sub
----------------------------------------------------------------------------------
Private Sub CommandButton5_Click()                                         // For button =
num1 = TextBox1.Text
TextBox1.Text = 0
op = "-"
End Sub
------------------------------------------------------------------------------------
Private Sub CommandButton6_Click()                                                   // For button 6
If TextBox1.Text = "0" Then
TextBox1.Text = "6"
Else
TextBox1.Text = TextBox1.Text & "6"
End If
End Sub
-------------------------------------------------------------------------------------
Private Sub CommandButton7_Click()                                                    // For button 5
If TextBox1.Text = "0" Then
TextBox1.Text = "5"
Else
TextBox1.Text = TextBox1.Text & "5"
End If
End Sub
--------------------------------------------------------------------------------------
Private Sub CommandButton8_Click()                                                 // For button 4
If TextBox1.Text = "0" Then
TextBox1.Text = "4"
Else
TextBox1.Text = TextBox1.Text & "4"
End If
End Sub
---------------------------------------------------------------------------------------
Private Sub CommandButton9_Click()                                                    // For button x
num1 = TextBox1.Text
TextBox1.Text = 0
op = "x"
End Sub

Tuesday, August 14, 2018

Create Multiplication Table using Microsoft Word VBA

This video tutorial is about How to create Multiplication Table using Microsoft Word VBA. As we know Microsoft Word is a very popular Word processing application program and most of the people use this application in their daily office work. But many people don't know the actual potential of this application that we can do a lot with Microsoft Word. This video is to show a simple application program that explain how MS Word can be useful in preparing such program.
As we very familiar with Microsoft Office Package Application Programs, so it will be very easy for people to learn such functions. Therefore I tried to do some interesting work in Microsoft Word. Hope you all will like it.
For more such videos Please : Like, Share , Comment & don't forget to Subscribe.

Click here to watch video:

Monday, August 13, 2018

How to create Custom List in Excel

This video is about how to create Custom List in Excel. Excel already contain some predefined list like Days of the week and Months of the year. Similarly you can also add your own list that you frequently used in excel. Such list is very helpful to access list whenever required by typing first word of the list, that saves lot of your precious time. So friends, watch the video till end to get complete tutorial to add custom list in Excel.

Technology Today is a YouTube Channel that gives you tutorial about Computer Tips and Tricks, how to , latest technology update, Application guide etc
Watch video: click here:  Create custom list in excel