Wednesday 25 May 2016

Web.config File


web.config is configuration file for the Asp.net web application. It includes the settings information of the web application. Web.Config is created and modified in .xml extension. The specfic tags of the web.config files contains the information about the Settings,Security,Connection strings,Session States, and all the configurations part.







For Instance : -
< configuration >< appSettings >< add key="ConnectionString"value="server=localhost;uid=sa;pwd=;database=MyDB" / >< /appSettings >< /configuration >
Read More »

ADO .NET

ADO .NET is a port of connection between our applications and Data base, ADO .NET provides many classes to communicate and becomes the commuication track between the databsae and the application.
Read More »

Shortcut to show formulas in excel sheet

To show the formula cell in the excel sheet it can be easily done by VB. The Shortcut would be press (CTRL) and (`) just on the left side of the numeric key (1) and to again make the simple view just click the same combination or press (ESC) .
Read More »

Quality Management

Quality Management term is not only the product quality but it's also termed by the Organizational improvement.
ISO and CMM are the main parts of the QMS. CMM - Is a Framework of implementation. ISO - Is a standard of implementation.
Read More »

Example Prview of Headings From H2 - H6

This is the Example Prview of Headings From H2 - H6 

Heading of H2 Tag



Heading of H3 Tag




Heading of H4 Tag





Heading of H5 Tag




Heading of H6 Tag
Read More »

HTTP Stands for ?

HTTP Stands for Hyper Text Transfer Protocol.
Read More »

FTP Stands For ?

FTP Stands for File Transfer Protocol.
Read More »

HTTPS Stands For ?

HTTPS Stands for Secure Hyper Text Transfer Protocol.
Which can be defined as the secure layer when the data exchanged in between web pages.
Read More »

URL Stands For ?

URL Stands for uniform Resource Locator.

URL is the address of the unique address of the web page on WWW (World Wide Web).The links on the web page points to the uniform address of the document on world wide server to retrieve the information. 
Read More »

Full form of JPEG/JPG and GIF

JPEG/JPG - Full form of JPEG is Joint Photographic Experts Group.

GIF - Graphic Interchange Format.
Read More »

Computer Multitasking

Computer Multitasking/MultiProcesses - As the name gives the info to perform multi tasks at the same momentem, equally sharing the resources to perform muliple task at the same time. Where we can work on word, excel or more applications simultaneously.
Read More.... 
Read More »

How to insert image in web page.

inserting image :-
<img src="yourfile.jpg">br /> inserting image with height , width , border. <br /><img src="yourfile.jpg" width="200" height="200" border="1">
Read More »

ALT Attribute in img tag

ALT attribute defines the alternative text for the image which gives the description or info of the image and if the image is not shown on the browser yet the alternative text is displayed giving the description of the image.Alternative text is displayed when mouse pointer focuses it this ALT attribute can be compared with the function of ToolTip text in .NET 

<span style="background-color: white;"> &amp;lt;img src="niit.jpeg" alt="NIIT Technologies" /&amp;gt;</span>

Read More »

Setting the text for label control windows form

Creating an instance of a Label.


Label label1 = new Label();


Set text to display on the control 


label1.Text = "First Name";

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0
Read More »

GAC Stands For ?

GAC stands for Global Assembly Cache.
Read More »

Full form of WPF ?

WPF - Windows Presentation Foundation whis is renderd as part of .NET FrameWork 3.0 which supports 3D rendering, Animation and Multimedia features also previously known as Avalon.
WPF runtime libraries are included with all versions of Microsoft Windows since Windows Vista and Windows Server 2008. Users of Windows XP SP2/SP3 and Windows Server 2003 can optionally install the necessary libraries.
Read More »

BCL Stands For ?

BCL - Base Class Library.
Read More »

CTS Stands For ?

CTS - Common Type System.
Read More »

CLR Stands for ?

CLR - Common Language Runtime.
Read More »

CAS Stands For ?

Code Access Security is a part of .NET security model that determines whether or not a piece of code is allowed to run and what resources it can use while running.
Read More »

W3C Stands For ?

The World Wide Web Consortium an international community known for making the Web Standards. 
Read More »

Set the Background colour of the HTML page

<body bgcolor="red">

Read More »

Hyperlink through web page using anchor tag.

&lt;a href="www.google.com"&gt;Google Page &lt;/a&gt; 
Read More »

Displaying FileDialog Box~ mkniit

OpenFileDialog openFileDialog1 = new OpenFileDialog();

openFileDialog1.InitialDirectory = "c:\\" ;
openFileDialog1.Filter = "txt files (*.txt)|*.txt|All files (*.*)|*.*" ;
openFileDialog1.FilterIndex = 2 ;
openFileDialog1.RestoreDirectory = true ;

if(openFileDialog1.ShowDialog() == DialogResult.OK)
{
try
{
if ((myStream = openFileDialog1.OpenFile()) != null)
{

}
}
catch (Exception ex)
{
MessageBox.Show("Un-Expected Error : " + ex.Message);
}
}
}
Read More »

Move Files using c#

string filesource = @"C:\file.txt";
string filedestination = @"C:\Myfolder\Ramneek\file.txt";

System.IO.File.Move(filesource,filedestination);
Read More »

Copyind Files or Directories using c#

public class SimpleFileCopy
{
static void Main()
{
string fileName = "test.txt";
string sourcePath = @"C:\Users\Public\TestFolder";
string targetPath = @"C:\Users\Public\TestFolder\SubDir";

Use Path class to manipulate file and directory paths.
string sourceFile = System.IO.Path.Combine(sourcePath, fileName);
string destFile = System.IO.Path.Combine(targetPath, fileName);

if (!System.IO.Directory.Exists(targetPath))
{
System.IO.Directory.CreateDirectory(targetPath);
}

System.IO.File.Copy(sourceFile, destFile, true);

if (System.IO.Directory.Exists(sourcePath))
{
string[] files = System.IO.Directory.GetFiles(sourcePath);

{
fileName = System.IO.Path.GetFileName(s);
destFile = System.IO.Path.Combine(targetPath, fileName);
System.IO.File.Copy(s, destFile, true);
}
}
else
{
Console.WriteLine("Source path does not exist!");
}

Console.WriteLine("Press any key to exit.");
Console.ReadKey();
}
}

Source MSDN
Read More »

Best source to learn DotNet

The best source to learn DotNet :

MSDN Library.

http://msdn.microsoft.com

DotNet Spider.

www.dotnetspider.com
Read More »

Quality Control

Quality control is the process by which the quality of the product is compared with specific standards and action is taken if the quality does not matches the applicable standards.Quality Control is the detection of defects rather than their prevention.
Read More »

Basic Quality Control Activities.

Quality Control activities includes Inspection,Testing,Checkpoint review.

Inspection ; It includes the structured review by checking every module of SDLC using checklists,It helps in identifying major threats.

Testing : Refers to the process of checking all positive and negative features.

Checkpoint review : Refers to the questions raised to check the major problem areas of the developed system .
Read More »

Software Development Life Cycle (SDLC) Errors

Errors types that might get introduced in a Software Product.

Leakage Errors : These errors are not detected at a particular stage in the development cycle of the software and are carried forward to the next stage.

New Errors ; With leakage errors new errors might get raised at a particular stage.

Compatibility Errors : Two or more modules may work correctly when isolated but they might get exception when they are integrated.
Read More »

Garbage Collection

Garbage Collection is a process that automatically frees the memory of objects that are no more in use.
Read More »

SQL server displaying all the contents of the table

Select * from Schema.table_name

Select * from manoj.table1

where manoj is the schema of the created database in which the table1 is stored.
Read More »

Selecting specific columns form the database

SELECT Name,Age,RollNo from Schema.Table1
Read More »

Change the name of the column while displaying the data from database

SELECT 'Name'= EmpName, 'ID NO' = EmpID From Schema.Table1
Read More »

Retrieve Selected rows from database

SELECT * From Schem.Table1 WHERE Name = 'Manoj'

This query retrieves the Name details from the Table1 where the name is manoj.
Read More »

Multicast deligate with DATE TIME arguments

public delegate void PowerDeviceOn(DateTime autoPowerOff);
Read More »

Loading assembly into current application.

AppDomain domain = AppDomain.CurrentDomain;
string myPath = Path.Combine(domain.BaseDirectory, "ramneekexample.dll");
Assembly asm = Assembly.LoadFrom(myPath);
Read More »

MS OFFICE/TIPS

1        How to select only UN read mails in outlook
Solution : Type read:false in the search box of outlook or on Home tab click Filter E-mail button and then Unread option(Shortcut Key ALT + H + L + U).
2      How to use HLOOKUP Function in excel.
Solution : =HLOOKUP(“_Column”,”_Range,”Parameter”)



1Shortcut key  to insert current time in MS EXCEL ?
 CTRL + SHIFT + :

2 What is Recent tab in file menu?
Solution : Recent tab also known as Excel History Pane saves our recent activities or modifications made in excel sheet/workbook, which is located in the file menu and is divided into two sections Recent Workbooks on left side and Recent Places on right side.
Shortcut key to open Recent tab  ALT + F + R.
-          Recent workbooks section displays the list of recently opened or modified excel files
-          Recent places section displays the list of folders that has been recently visited.


1     Can you name any search engine other than Google or Yahoo ?
Solution: Yes, there is Bing created by Microsoft 2009 formely known as Live/Windows search. Infact now Bing is supporting Yahoo and Google for speedy results. 

2  What is Format Painter?
Solution: Format Painter is the part of standard tool given in MS Office, you can use this to quickly copy formating of text,alignment, shapes, graphpics, picture borders, column, row etc.


Shortcut key : Right window + S + R or you can use ALT + H + F + P.

3 Can we use CTRL + D with filtered data?
Solution: Never use CTRL + D when your data is filtered because this will copy above text down where you are using it.

4  State one word to define MS excel ?.
Solution: Tabular.

  Can we navigate between Excel sheets without mouse ?
Solution: Yes by using CTRL + Page Down/Page Up.
   What is MSTSC?
Solution: MSTSC stands for Microsoft Terminal Services Client,Which is used for remote login at clinet and sever end using computer name or IP address.
7  What is Font face in MS Excel?
Solution: Font face is the text appreance that is displayed and printed.
            Example – Arial, Algerian, Handwriting.
8  What is concatenate in MS Excel.
Solution: Concatenate is a predefined function to join two or more strings(Text) in one column.

Example - 

Hello (Cell A1)
NIIT Cell A2)
=concatenate(A1,A2)
Hello NIIT (Cell A3)

9)    Shortcut key to warp text in excel?
Solution: ALT + Enter Key.

10)  Multiplication operator in excel?
Solution: (*) Asterisk.




   What Bcc stands for in outlook, can we check who is marked in the Bcc.?
Solution: Bcc stands for blind carbon copy, Bcc by default is the hidden property of mail. Yes we can view Bcc  if we check sent items or mail header by viewing it’s properties.
Shortcut key to add or remove Bcc : ALT + P + B

    Full form of GOOGLE ?
Solution: Global Organization Of Oriented Group Language Of Earth.

    How to highlight duplicate rows with formula?
Solution: Well there are 6 formulas to fetch out the duplicates from the data and we may also use conditional formatting for this.
                Lets try to figure it out with Countif 
= countif(A:A,A:A)>1 





    How many sheets are there in workbook by default? Can we change it ?
Solution : By default workbook starts out with three sheets. Yes we can change this value as per the requirement.
Step 1 – Click File menu.
Step 2 – Click Options.
Step 3 – In  General tab change the numeric value in “Include this many sheets”.

2  Formula to count number of characters in the cell?
Solution: = LEN(Cell_reference)

Text
Formula
Output
NIIT (A1)
=LEN(A1)
4

3  Explain the path to open MS Excel?
Solution: Start – All Programs – Microsoft Office – Microsoft Excel.
Or Start – Run – Type excel – Enter.

   Can we create keyboard shortcut to open excel?
Solution: Yes we can create keyboard shortcut to open excel.
Start – All Programs – Microsoft Office – Right click Microsoft Excel – Properties
-      In the shortcut key tab type the key that you want to assign example (CTRL + ALT + Z).
Now you can open excel by pressing (CTRL + ALT + Z) from your keyboard.



1   Formula to select the maximum value in the range?
Solution: = max(range_).
    Formula to select the minimum value in the range?.
Solution: =min(range_).
     Difference between save and save as?
Solution: Save as is used when the file is saved for the first name or if we want to rename the file.(F12) or (ALT + F + A).
Save – This is a regular saving of the document whenever the file is modified (CTRL + S) or (ALT + F + S)



 Shortcut key to insert time and date separately?
Solution: Time -: CTRL +  SHIFT + : (CONTROL + SHIFT + COLON )
                    Date -: CTRL + ; (CTRL + SEMI COLON)
2 Operator and formula  to join text of different cells in on cell?
Solution: & is the operator to join text and formula is  =H12&I12
   How to insert space between the above (=H12&I12) formula ?
Solution: =H12&" " &I12
Attached is the example for Query 2 and 3.
  What is action script ?
Solution: Action script is a programming languge that creates the 3D objects and creates the motion path for them.
     Full form of Excel VBA?
Solution: Visual basic for application, this is based on dot net technology and macros are created with VBA.
I VBA is applicable to only EXCEL?
Solution: No, VBA is applicable to all MS OFFICE application(Example Excel, Powerpoint, Word, Acess, One Note Project Planning Etc)



1    Shortcut Key to Open Format Cells ?
Solution: CTRL + 1

      Shortcut to wrap text?
Solution: ALT + Enter.




1   How to insert zero (0) at the beging of the cell.
Solution: You can insert single quote (‘) berfore zero or you can change the format of the column to text.
  
Shortcut key to make the cell text.
Solution: ALT + H + N + TE + Enter.


How to rename the excel work sheet?
      Solution: Right click on the sheet tab or press F2 and change the default name.
How to insert new blank sheet with shortcut key?
      Solution: SHIFT + F11



1Can we add password to excel files, if yes how?
Solution: Yes we can add password to excel files, below are the steps:
-       Click on File menu.
-       Click Save as button.
-       In the save as dialog box click tools button at the bottom and select general option.
-       This will allow you to insert password to your file.

2Can we update excel automatically ?
Solution: Yes we can by creating a connection and setting the refresh time of the connection created. 




1Can we hide the gridlines in the Excel Sheet?
Solution: Yes we can hide the grid lines in the Excel sheet, following are the steps
-          Click on File menu.
-          Click  Options Button.
-          In Advanced tab un check the show gridlines option.
-          Click Ok.

2Formula to count only numbers(Numeric Values) in a range?
Solution: = COUNT(range_)
Note: Count function will only count numeric values in a range and will skip all the blanks and text value.

   What is office clipboard?
 Solution: Office Clipboard is a short term memory generated by the office application when we cut/copy/paste/undo/redo some data.
2)    What is the difference between undo and redo?
                         Solution: Undo (CTRL + Z) cancel the last task performed by maximum 12 times.
                         Redo(CTRL + Y) can cancel or repertory the last 99 actions.


  If excel sheet is not working and the data is also not saved what to do?
Solution: Without closing the excel sheet reboot the system ans close your excel sheet with CTRL + Pause break.

2  Macros are giving errors and not working properly?
Solution: Shut down the system for 10 minutes and restart it, this will make your system cpu free to execute macros.

3 What is Title bar in excel sheet?
Solution : Title bar display’s the name of the current opened sheet/document.
Read More »

Full form of HTML,CSS,VBA,PHP,DOM.....


HTML - HyperText Markup Language.

DHTML - Dynamic Hyper Text Markup Language.

XHTML - eXtensible HyperText Markup Language.

XML - EXtensible Markup Language .

UML - Unified Modeling Language.

CSS - Cascading Style Sheets.

VBA - Visual Basic for Applications.

VB - Visual Basic

GUI - Graphical User interface.

WWW - World Wide Web.

DTD - Document Type Declaration.

XSLT - eXtensible Stylesheet Language Transformations.

DOM - Document Object Model.

URL - Unifrom Resource Locator.

PHP - Hypertext Preprocessor.
Read More »

HTML Full Form

HyperText Markup Language

This is a markup language for formatting web documents or web pages. Such document files are stored with '.htm' or '.html' extensions. The computer software that interprets HTML documents and displays content on screen are called web browsers. Google Chrome, Mozilla Firefox, Internet Explorer and Safari are most famous web browsers. Tim Berners-Lee was the first to invent HTML. In late 1990 he produced and parsed a HTML document successfully. At current, W3C (World Wide Web Consortium) looks after the documentation and development of HTML markup. Till now many versions of HTML have been introduced. Current version HTML 5 is gaining huge popularity due to high strength capabilities.


Tags :       formfull.in                fullformdictionary.in                   mkniit
Read More »

Friday 20 May 2016

How to Book Namotel Mobile Online Register @Rs 99 – Buy Now www.namotel.com Order


Namotel Mobile Online Booking @ Rs 99 – Namotel AcchedinSmart Phone Registration at www.namotel.com, Buy Now Namotel Cheap 99 Android Phone Option Available for Cash on Delivery. Don’t wait, Book Order Early From Below Link.

How to Buy Namotel Mobile Online Register @ Rs 99 – Book Now Android Mobile  @ www.namotel.com :

Namotel Acchedin Rs 99 Mobile Booking : Do you heard aboutfreedom 251Docoss x1 Mobiles Right? Yes these all are Fake and for the Fame, Name Entered into Industry. At last So Many people got fooled with those Company Mobiles without receving any pieces. Ok leave about that two. Now Again One Another Company Namotel Achhe din Company Offering Cheap Android Phone/ Mobile at RS 99 only. Namotel 99 rupees Mobile is Cheapest Android Mobile which is in very Less Price.

Book Namotel Mobile online Registration for Rs 99 at www.Namotel.com ?

Namotel Acche Din, Introduced as the world’s cheapest smartphone is launched at Rs. 99. Commenting on the launch of the device, Promoter Madhava Reddy revealed this is the cheapest smartphone ever produced in the world and ships with a 4-inch display, 1.3GHz quad-core processor coupled with 1 GB of RAM. They Mentioned in their website about Namotel Mobile, Joy and freedom represents our logo! The same joy will flourish in billion Indians In the form of smart Connect with (3 different looks and shapes) Android Smart powerful Phone at ₹99/- .We make this product in India for showing love for India and Exclusive ‘’MAKE IN INDIA” Initiative. This product is Limited offer and it is applicable only for India and who hold Aadhar Identity.

Namotel Acche Din
Namotel Rs 99 is a Cheapest Android 3G Supported Mobile. Here Below Listed Namotel Rs 99 Specifications, Features, Price in India. You People/ Readers can Check How to buy 99 rs Namotel in Online with Step by Step Procedure.

How to Buy Namotel Mobile Online atwww.namotel.com & Namotel.in,Namotel.org website online :

Namotel is a Bangalore Based Start up Company, its offering mobile at very dead cheap price. CEO launched Rs 99 Phone asNamotel Acche din and its calling as India’s Most Affordable Smart phone i.e Namotel Acche din. We will look in Warranty and Delivery Dates and Lot more below.
It is available for booking from 17th May to 25th May 2016.
  • Start date to Book Namotel : 17th May 2016
  • Last date For Register Namotel Booking Online : 25th May 2016

Namotel Mobile Key Features :


  • Android Lollipop Operating System
  • Dual Camera (Rear and Front)
  • 3G Supported Smartphone
  • Quad Core Processor
  • 4 GB ROM
  • 1 GB RAM

Namotel Mobile Specifications :


Namotel Mobile Specifications :
Screen Display : 04 Inch HD Display
Operating System Version : Android Lollipop 5.1 OS
SIM Facility : Dual SIM (WCDMA + GSM)
Network Connectivity: 3G + 2G Connectivity.
Rear/ Back Camera : 2.0 Megapixel Rear Camera with many camera modes.
Front Camera : 0.3 Front Facing Camera for Selfie Shots.
Internal Memory : 4 GB Internal Storage (ROM).
User Memory less than 02 GB (Internal) .
RAM Size : 1 GB RAM.
Expandable External Memory – Can Expand Through SD/ Memory Card.
Processor : 1.3 GHz Quad Core Processor.
Battery Capacity : 1325 mAh Battery.
Type of Body : Plastic Body.
Namotel Colors : White and Black Colour Variants.
Also Check in their Other Websites Namotel.comNamotel.in,Namotel.Org

How to Book Namotel Android Smart Phone Booking Online Procedure Step by Step Guide :

1. Firstly Open Official Website of Namotel atwww.namotel.com or www.Namotel.in.
2. Select Acchedin Tab on Top Menu Bar for Rs 99 Mobile.
3. Next Click on Register Tab for Booking, then The below Form will be Displayed.

4. Before Filling the Form You need to Scan the Pass port Size pic with 1 MB and Aadhar Card Scan with Less than 2 MB Size.

5. If you Have BeMyBanker ID then Enter otherwise, Register for BeMyBanker ID at www.bemybanker.com From Above Option.
Then Fill up all the Details of Address and gender, pin code for delivery option.
There is 1 year warranty for Namotel according to website norms.
Done! your Order gets Confirms with Email Message.
On completing the Online Booking Process, you will receive an Email or an SMS (or both) as Confirmation of Booking Namotel Achhe Din Mobile.
Note: There is No Payment Option through Debit/ Credit cards & Online Net Banking. Only Cash On Delivery is Available.

Namotel Acchedin Mobile Review & Rating :


Summary



Review Date
Reviewed Item
Namotel 99 Booking, Namotel Acchedin Order
Author Rating
Read More »