BCA Raipur - BCA Notes S-1

Post your notes and other just by mailing us at bcaraipur@live.com

BCA Raipur - BCA Notes S-2

Post your notes and other just by mailing us at bcaraipur@live.com

BCA Raipur - BCA Notes S-3

Post your notes and other just by mailing us at bcaraipur@live.com

BCA Raipur - BCA Notes S-4

Post your notes and other just by mailing us at bcaraipur@live.com

BCA Raipur - BCA Notes S-5

Post your notes and other just by mailing us at bcaraipur@live.com

google search

Popular Posts


Welcome to BCA Notes

>>>>>>>>>>>>>>>>

Visitors

Search This Blog

Blogger templates

Visitor Map


Monday 29 December 2014

Java Script Redirect to new page Location!!!

Java Script 

Redirect to new page Location!!!

<head>
<script type="text/javascript">
<!--
function Redirect()
{
    window.location="http://www.bcaraipur.blogspot.in";
}

document.write("You will be redirected to main page in 10 sec.");
setTimeout('Redirect()', 10000);
//-->
</script>
</head>

Copy,  Paste this code as index.html and open it in web browser

Note:-

Friday 26 December 2014

Vb.net oops

VB.Net is an object-oriented
programming language. In Object-Oriented Programming methodology, a program consists of various objects that interact with each other by means of actions. The actions that an object may take are called methods. Objects of the same kind are said to have the same type or, more often, are said to be in the same class.
When we consider a VB.Net program, it can be defined as a collection of objects that communicate via invoking each other's methods. Let us now briefly look into what do class, object, methods and instant variables mean.
Object - Objects have states and behaviors. Example: A dog has states- color, name, breed as well as behaviors - wagging, barking, eating, etc. An object is an instance of a class.

Class - A class can be defined as a
template/blueprint that describes
the behaviors/states that object of
its type support.

Methods - A method is basically a
behavior. A class can contain many methods. It is in methods where the logics are written, data is manipulated and all the actions are executed.

Instant Variables - Each object has
its unique set of instant variables.
An object's state is created by the
values assigned to these instant
variables.

A Rectangle Class in VB.Net
For example, let us consider a Rectangle object. It has attributes like length and width. Depending upon the design, it may need ways for accepting the values of these attributes, calculating area and displaying details. Let us look at an implementation of a Rectangle class and discuss VB.Net basic syntax on the basis of our observations
in it:

Imports System
Public Class Rectangle
  Private length As Double
   Private width As Double
     Public methods
Public Sub AcceptDetails ()
length = 4.5
width = 3.5
End Sub
Public Function GetArea() As Double
GetArea = length * width
End Function
Public Sub Display ()
Console .WriteLine ( "Length: {0}" ,
length)
Console .WriteLine ( "Width: {0}" ,
width )
Console .WriteLine ( "Area: {0}" ,
GetArea())
End Sub
Shared Sub Main ()
Dim r As New Rectangle()
r .Acceptdetails ()
r .Display ()
Console .ReadLine ()
End Sub
End Class

When the above code is compiled and
executed, it produces the following
result:
Length: 4.5
Width: 3.5
Area: 15.75

In previous chapter, we created a Visual Basic module that held the code. Sub
Main indicates the entry point of
VB.Net program. Here, we are using
Class that contains both code and data.
You use classes to create objects. For
example, in the code, r is a Rectangle
object.
An object is an instance of a class:
Dim r As New Rectangle()
A class may have members that can be
accessible from outside class, if so
specified. Data members are called
fields and procedure members are called
methods.
Shared methods or static methods can
be invoked without creating an object of
the class. Instance methods are invoked
through an object of the class:
Shared Sub Main ()
Dim r As New Rectangle()
r . Acceptdetails ()
r . Display()
Console .ReadLine ()
End Sub


Identifiers

An identifier is a name used to identify a class, variable, function, or any other
user-defined item. The basic rules for
naming classes in VB.Net are as follows:

A name must begin with a letter that
could be followed by a sequence of
letters, digits (0 - 9) or underscore.
The first character in an identifier
cannot be a digit.

It must not contain any embedded
space or symbol like ? - +! @ # % ^
& * ( ) [ ] { } . ; : " ' / and \.
However, an underscore ( _ ) can be
used.

It should not be a reserved keyword.
VB.Net Keywords

The following are the VB.Net's
reserved keywords:

AddHandler
AddressOf
Alias
And
AndAlso
As
Boolean
ByRef
Byte
ByVal
Call
Case
Catch
CBool
CByte
CChar
CDate
CDec
CDbl
Char
CInt
Class
CLng
CObj
Const
Continue
CSByte
CShort
CSng
CStr
CType
CUInt
CULng
CUShort
Date
Decimal
Declare
Default
Delegate
Dim
DirectCast
Do
Double
Each
Else
ElseIf
End
End If
Enum
Erase
Error
Event
Exit
False
Finally
For
Friend
Function
Get
GetType
GetXML
Namespace
Global
GoTo
Handles
If
Implements
Imports
In
Inherits
Integer
Interface
Is
IsNot
Let
Lib
Like
Long
Loop
Me
Mod
Module
MustInherit
MustOverride
MyBase
MyClass
Namespace
Narrowing
New
Next
Not
Nothing
Not
Inheritable
Not
Overridable
Object
Of
On
Operator
Option
Optional
Or
OrElse
Overloads
Overridable
Overrides
ParamArray
Partial
Private
Property
Protected
Public
RaiseEvent
ReadOnly
ReDim
REM
Remove
Handler
Resume
Return
SByte
Select
Set
Shadows
Shared
Short
Single
Static
Step
Stop
String
Structure
Sub
SyncLock
Then
Throw
To
True
Try
TryCast
TypeOf
UInteger
While
Widening
With
WithEvents
WriteOnly
Xor

Vb.net hello World building first program

Before we study basic building blocks of the VB.Net programming language, let us look a bare minimum VB.Net program structure so that we can take it as a reference in upcoming Posts.
VB.Net Hello World Example

A VB.Net program basically consists of the following parts:

Namespace declaration

A class or module

One or more procedures

Variables

The Main procedure

Statements & Expressions

Comments

Let us look at a simple code that would
print the words "Hello World":

Imports System
  Module Module1
   'This program will display Hello World
   Sub Main()
      Console . WriteLine ("Hello World" )
      Console . ReadKey()
    End Sub
    End Module

When the above code is compiled and executed, it produces the following
result:

Hello, World!

Let us look various parts of the above
program:

The first line of the program Imports System is used to include the System namespace in the program.

The next line has a Module declaration, the module Module1 .

VB.Net is completely object oriented,
so every program must contain a module of a class that contains the data and procedures that your program uses.

Classes or Modules generally would contain more than one procedure.

Procedures contain the executable code, or in other words, they define the behavior of the class.

A procedure could be any of the
following:

Function

Sub

Operator

Get

Set

AddHandler

RemoveHandler

RaiseEvent

The next line( 'This program) will be
ignored by the compiler and it has
been put to add additional comments
in the program.

The next line defines the Main procedure, which is the entry point for all VB.Net programs. The Main procedure states what the module or class will do when executed.

The Main procedure specifies its behavior with the statement Console.

WriteLine("Hello World")
WriteLine is a method of the Console
class defined in the System namespace. This statement causes
the message "Hello, World!" to be displayed on the screen.

The last line Console.ReadKey() is for the VS.NET Users. This will prevent the screen from running and closing quickly when the program is launched from Visual Studio .NET. Compile & Execute VB.Net Program .

If you are using Visual Studio.Net IDE, take the following steps:
Start Visual Studio. On the menu bar, choose File, New, Project.
Choose Visual Basic from templates
Choose Console Application.
Specify a name and location for
your project using the Browse
button, and then choose the OK
button.

The new project appears in Solution
Explorer.
Write code in the Code Editor.
Click the Run button or the F5 key
to run the project. A Command
Prompt window appears that
contains the line Hello World.

You can compile a VB.Net program by using the command line instead of the Visual Studio IDE:

Open a text editor and add the above mentioned code.

Save the file as helloworld.vb

Open the command prompt tool and
go to the directory where you saved
the file.

Type vbc helloworld.vb and press
enter to compile your code.

If there are no errors in your code
the command prompt will take you to the next line and would generate helloworld.exe executable file.

Next, type helloworld to execute your
program.

You will be able to see "Hello World"
printed on the screen.

Vb.net Introduction-II

Visual Basic .NET (VB.NET) is an object-oriented computer programming language implemented on the .NET Framework. Although it is an evolution of classic Visual Basic language, it is not backwards-compatible with VB6, and any code written in the old version doesnot compile under VB.NET. Like all other .NET languages, VB.NET has complete support for object-oriented concepts. Everything in VB.NET is an object, including all of the primitive types (Short, Integer, Long,String, Boolean, etc.) and user-defined types, events, and even assemblies. All objects inherits from the base class Object.
VB.NET is implemented by Microsoft's .NET framework. Therefore, it has full access to all the libraries in the .Net Framework. It's also possible to run VB.NET programs on Mono, the open-source alternative to .NET, not only under Windows, but even Linux or Mac OSX.

The following reasons make VB.Net a
widely used professional language:

Modern, general purpose.

Object oriented.

Component oriented.

Easy to learn.

Structured language.

It produces efficient programs.

It can be compiled on a variety of
computer platforms.

Part of .Net Framework.

Strong Programming Features VB.Net

VB.Net has numerous strong programming features that make it endearing to multitude of programmers worldwide. Let us mention some of these features:

Boolean Conditions

Automatic Garbage Collection

Standard Library

Assembly Versioning

Properties and Events

Delegates and Events Management

Easy-to-use Generics

Indexers

Conditional Compilation

Simple Multithreading

Vb.net Introduction

VB.Net Programming Tutorial

VB.Net is a simple, modern, object-
oriented computer programming
language developed by Microsoft to
combine the power of .NET Framework
and the common language runtime with the productivity benefits that are the hallmark of Visual Basic.
This tutorial will teach you basic VB.Net programming and will also take you through various advanced concepts related to VB.Net programming Language.

Audience

This tutorial has been prepared for the beginners to help them understand basic VB.Net programming. After completing this tutorial, you will find yourself at a moderate level of expertise in VB.Net programming from where you can take yourself to next levels.

Prerequisites

VB.Net programming is very much based on BASIC and Visual Basic programming Languages, so if you have basic understanding on these programming languages, then it will be a fun for you to learn VB.Net programming language.

Continue  Vb.net-II

Monday 22 December 2014

Syllabus BCA IV VB.NET


                    MSIT/BCA/401 Programming Using VB.NET

VB.NET

 

MODULE 1: 

Introduction to .NET: - NET Framework features & architecture, CLR, Common Type System, MSIL, Assemblies and class libraries. Introduction to visual studio, Project basics, types of project in .Net, IDE of VB.NET- Menu bar, Toolbar, Solution Explorer, T001b0x, Properties Window, Fonn Designer, Output Window, Object Browser. The environment: Editor tab, format tab, general tab, docking tab. visual development & event drive Programming -Methods and events.

MODULE II: 

The VB,NET Language: Variables -Declaring variables, Data Type of variables, Forcing variables declarations, Scope & lifetime of a variable, Constants, Arrays, types of array, control array, Collections, Subroutines, Functions, Passing variable Number of Argument Optional Argument, Returning value from function- Control flow statements, conditional statement, loop statement. Msgbox & lnputbox.

MODULE III: 

Object oriented Programming: Classes & objects, fields Properties, Methods & Events, constructor, inheritance. Access Specifiers, Public Private, Projected. Overloading, Friend, Overloading Vs' Overriding, Interfaces, Polymorphism, My Base & My class keywords. Overview of OLE, Accessing the WlN32 API from VB.NET & Interfacing with office 97, COM technology, advantages of COM+, COM & .NET, Create User. control, register User Control, access com components in .net application.

MODULE IV: 

Working. with Forms: Loading, showing and hiding forms, controlling one fomi within another. GUI Programming with Windows Form: Textbox, Label, Button, List box, Combo box, Check box, Picture Box, Radio Button, Panel, scroll bar, Timer, List View, Tree View, toolbar, Status Bar. There Properties,
Methods and events. OpenFileDilog, SaveFileDialog, FontDialog, ColorDialog, Pr1'ntDialog. Link Label. Designing menus, ContextMenu, access & shorcut-keys, System.io Namespace, Reading and Writing data from and into files, File class and related Methods, Stream Reader, Stream Writer , Binary Reader, Binary Writer class, File and Directory Classes, 


MODULE V: 

Databases in VB.NET: Databases, Connections, Data adapters, and datasets, Data Reader, Connection to database with server explorer, Multiple Table Connection, Creating Command, Data Adapter and Data Set with OLEDB and SQLDB. Display Data on data bound controls, display data on Data grid. Data binding With controls like Text Boxes, List Boxes, Data grid etc. Navigating data source, Data Grid View, Data form wizard, Data validation, Connection Objects, Command Objects, Data Adapters, Dataset Class, Overview of ADO, from ADO to ADO.NET, generate Reports Using Crystal Report Viewer. Crystal Report : Connection to database, Table, Queries Building, Report, Modifying Report, Formatting Fields and

Sunday 21 December 2014

Js example

Try this js example
<html>
<head>
<script type="text/javascript">
<!--
function sayHello()
{
alert("Hello Dear!!")
}//-->
</script>
</head>
<body>
<input type="button" onclick="sayHello()" value="Say !!!!" />
</body>
</html>
Save it as js.html
Go to chrome
Type this
file:///storage/sdcard0/js.html
No need to have internet connection!



Tuesday 16 December 2014

Trial balance vs Balance sheet


Difference Between Trial Balance and Balance Sheet:

Following points describe the difference between trial balance and balance sheet:


Trial Balance
Balance Sheet
(i) The trial balance contains the balances of all the three accounts i.e. real, nominal and personal.
(i) The balance sheet contains the balances of real and personal accounts only.
(ii) The trial balance shows the arithmetical accuracy of the accounts.
(ii) The balance sheet exhibits the financial position of the business concern.
(iii) Trial balance is prepared before the preparation of the trading,
PLS account and balance sheet.
(iii) Balance sheet  is prepared after the preparation of trading, P&L  account as well as the trial balance.
(iv) The outstanding incomes and expenses are not incorporated in the trial balance.
(iv) Balance sheet shows outstanding expenses and accrued income.
(v) The value of closing stock is not stated in the trial balance.
(v) The value of closing stock is stated in thebalance sheet.
(vi) The trial balance is not presented to users of financial statements.
(vi) The balance sheet is included in financial statements to be presented to the users.

Accounting



Accounting

Practice and body of knowledge concerned primarily with
1.         Methods for recording transactions,
2.         Keeping financial records,
3.         Performing internal audits,
4.         Reporting and analyzing financial information to the management, and
5.         Advising on taxation matters.

It is a systematic process of identifying, recording, measuring, classifying, verifying, summarizing, interpreting and communicating financial information. It reveals profit or loss for a given period, and the value and nature of a firm's assets, liabilities and owners' equity.
Accounting provides information on the
1.         Resources available to a firm,
2.         The means employed to finance those resources, and
3.         The results achieved through their use.
  
Definition
The systematic recording, reporting, and analysis of financial transactions of a business.
The person in charge of accounting is known as an accountant, and this individual is typically required to follow a set of rules and regulations, such as the Generally Accepted Accounting Principles.

Accounting allows a company to analyze the financial performance of the business, and look at statistics such as net profit.

Assets

Things that are resources owned by a company and which have future economic value that can be measured and can be expressed in dollars. Examples include cash, investments, accounts receivable, inventory, supplies, land, buildings, equipment, and vehicles.
Assets are reported on the balance sheet usually at cost or lower. Assets are also part of the accounting equation: Assets = Liabilities + Owner's (Stockholders') Equity.
Some valuable items that cannot be measured and expressed in dollars include the company's outstanding reputation, its customer base, the value of successful consumer brands, and its management team. As a result these items are not reported among the assets appearing on the balance sheet.

Definition of 'Asset'


1. A resource with economic value that an individual, corporation or country owns or controls with the expectation that it will provide future benefit.



2. A balance sheet item representing what a firm owns.





Space for every file & a plan for every budget. Get Started!



Investopedia explains 'Asset'



1. Assets are bought to increase the value of a firm or benefit the firm's operations. You can think of an asset as something that can generate cash flow, regardless of whether it's a company's manufacturing equipment or an individual's rental apartment.




2. In the context of accounting, assets are either current or fixed (non-current). Current means that the asset will be consumed within one year. Generally, this includes things like cash, accounts receivable and inventory. Fixed assets are those that are expected to keep providing benefit for more than one year, such as equipment, buildings and real estate.

Capital


           Income Tax Law Firm
          
           Finance
          
           Financial Tips
          
           Capital Gains Tax Advice
          
           Financial Accounting Firm

Definition:

The term Capital has several meanings and it is used in many business contexts. In general, capital is accumulated assets or ownership. More specifically,
           Capital is the amount of cash and other assets owned by a business. These business assets include accounts receivable, equipment, and land/buildings of the business.
           Capital can also represent the accumulated wealth of a business, represented by its assets less liabilities.
           Capital can also mean stock or ownership in a company.
Capital Used in Other Business Terms
Other associated terms which relate to the term "capital" are:
           Capital gains are increases in the value of stock and other assets when they are sold.

           Capital assets, which sounds like a redundancy

           The capital structure of a business is the mix of debt and equity in the business balance sheet.

           Capital improvements are improvements made to capital assets.

           Venture capital is private funding (capital investment) provided by individuals or other businesses to new business ventures.

           A capital lease is a lease of business equipment which represents ownership and is reflected on the company's balance sheet as an asset.

           A capital contribution is a contribution of capital, in the form of money or property, to a business by an owner, partner, or shareholder. The contribution increases the owner's equity interest in the business.
Examples: Common cause of business failure is not having enough capital.