How to transfer contact from Android to Iphone…..

In Android Phone make this steps……

1. Open the Contacts app on your Android, tap the menu key and select Import/Export.

2. Select the option to “Export to SD Card” (it should save as 00001.vcf by default).

3. Connect the SD card to your PC (either via the phone, through a USB cable, or with a card reader). Copy the .vcf file from the SD card onto your desktop.

4. Log in to your Gmail account and select Contacts from the drop down menu in the upper left corner of the screen. Choose Import from the More Actions menu bar. Select the .vcf file and import it.

In Iphone make this steps……

1. On your iPhone select Settings -> Mail, Contacts, Calendars.

2. Set up a new “Microsoft Exchange” account (yes, even if you’re trying to import from Gmail).

3. Input your email address and login info. Enter a domain if you have one for an actual ME server; Gmail users can leave it blank.

4. Select “Server,” then either input the ME server address or “m.google.com” for Gmail.

5. On the final screen, select what you want to import—Mail, Contacts, Calendars, and/or Reminders—then hit Accept.

SHARE THE KNOWLEDGE


  

Micromax modem not working windows 8 pro………….

I have windows 8 pro running on Desktop or Laptop with Micromax MMX 352G. It will not work because of its compatibility.

Just follow the steps below:

1. uninstall the software if already installed.

2. open the modem in new windows and set its ( modem_installation.exe and show_modem.exe ) compatibility to windows7 then press OK.

3. Now install the software , then restart the system .

4. Connect the modem and start the software ( it shows no device ) then exit the application from the task manager .

5. Open the Device manager ( control panel > Administrative tools > Computer management )

6. Go for Other devices , simply uninstall all the drivers related to modem there (better uninstall both with or without yellow mark)

7. Go to Action menu and click on Scan for hardware changes .

8. Now simply open the MMX usb manager and it works fine.

SHARE THE KNOWLEDGE


  

HTML – base tag example.

Description :

The base tag is a HTML tag. It specifies a base(default) URL for all link in the page.

Code :

<html>
<head>
<base href=”http://roseindia.net”&gt;
<title>HTML is a markup language</title>
</head>
<body>
<h1>HTML — base tag. </h1>
&nbsp;<a href=”/techindex/html/index.html”>See HTML Examples Code …….</a>
</body>
</html>

 

SHARE THE KNOWLEDGE


  

Splitter in C#……………….

It is placed after/before control. At run time if u keep mouse control at edge of control a small arrow appears using it you can increase/decrease size of the control. (Control which has expandability).

Procedure :

1)    Increase the form size to maximum, take treeview control, set its dock property to left.

2)    Take splitter

3)    Take listview control, increase the size according to form.

 

int a, b, c, d;

private void Form6_Load(object sender, EventArgs e)

{

a = treeView1.Width;

b = listView1.Left;

}

private void splitter1_SplitterMoved(object sender, SplitterEventArgs e)

{

c = treeView1.Width;

d = c – a;

listView1.Left = b + d;

listView1.Width = this.Width – listView1.Left;

}

SHARE THE KNOWLEDGE


  

How to Delete Outlook Express Accounts……………

If you change Internet Service Providers or simply have an email account you no longer wish to check, it is a simple task to remove the email account in Outlook Express. With just a few clicks of the mouse, the unwanted email is deleted and will not be checked in the future. This can be done with any email address that you no longer need or use.

Instructions

1. Open Outlook Express on your computer. Click “Tools” from the menu at the top of the screen. Click “Accounts” from the options given.

2. Choose the “Mail” tab from Internet accounts screen. Highlight the email amount you wish to delete, clicking on the account name.

3. Select “Remove.” Click “Yes” when the program asks if you are sure. The email account will now be deleted.

SHARE THE KNOWLEDGE


  

Difference Between WiMAX and Wi-Fi…………..

WiMAX and Wi-Fi are wireless technologies. “WiMAX” stands for “Worldwide Interoperability for Microwave Access” and “Wi-Fi” stands for “Wireless Fidelity.” They are different from each other in many ways. In this article we will discuss WiMAX IEEE 802.16 and Wi-Fi 802.11.

WiMAX has two different versions; fixed and mobile versions. The mobile version is 802.16 m and can replace CDMA and GSM technologies. The fixed version is 802.16d, and 802.16e is used for home whereas Wi-Fi which comes in 802.11 families has many versions like 802.11a, 802.11b, 802.11g, and 802.11n

Wi-Fi operates in spectrum which is unlicensed. It may interfere with each other and with cordless phones also. It can operate in uncontrolled environments along with Bluetooth, walkie-talkies, and sometimes microwave frequencies too. This results in a powerful device, and the one which is closer to the access point getting more airtime than its fair share. Whereas WiMAX was developed in a way that it requires a license. The frequencies and license has to be purchased. These frequencies are more powerful and of a higher range. It has more of control and command and can be used for cable, Internet, and DSL. It helps in providing services like video, data, voice, etc.

SHARE THE KNOWLEDGE


  

Difference Between RAM and ROM…………

RAM is a volatile memory type, which means that it loses its content once power is removed. This is the reason why it cannot replace ROM, which retains its content even when not powered. The downside of ROM is its much slower speed. Using it to replace RAM would make a computer perform very slow.

Nowadays, RAM is seen mainly as the primary memory of computers and other gadgets like smartphones and tablets. In portable gadgets, the internal memory reserved for applications is often referred to as ROM. But in computers, ROMs retains its original meaning. The chip used to hold the BIOS is a ROM as it isn’t routinely written to; but it is sometimes updated. Optical drives are also called ROMS (i.e. CD-ROM and DVD-ROM) as they do read discs that cannot be written to; but most optical drives also have the ability to write to blank discs.

Summary:
ROM is used for storing programs while RAM is used by programs to hold temporary data
RAM is a type of memory that can be accessed non-sequentially while ROM is a type of memory that is only read in typical operation
ROM is non-volatile while RAM is volatile
RAM is considerably faster than ROM

SHARE THE KNOWLEDGE


  

How to create a SQL Connection in C Sharp……….

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.SqlClient;

namespace Database
{
class Program
{
static void Main(string[] args)
{
// String copy in notepad from property windows
string conString = @”Data Source=.\SQLEXPRESS;AttachDbFilename=””D:\visual studio2010\Database\Database\emp.mdf””;Integrated Security=True;User Instance=True” ;

SqlConnection con = new SqlConnection(conString);
con.Open();

string sql = “select Fname,Lname,Email,Mobile from employee where IsActive = 1”;

//Fire Querry
SqlCommand cmd = new SqlCommand(sql,con);

//Get Result of Querry
SqlDataReader rd = cmd.ExecuteReader();

//Iterate over all result
while(rd.Read())
{
string msg = string.Format(“Fname = {0} Lname = {1} Email = {2} \n Mobile = {3}”,rd[“Fname”],rd[“Lname”],rd[“Email”],rd[“Mobile”]);

Console.WriteLine(msg);
}

rd.Close();
con.Close();
Console.Read();

}
}
}

SHARE THE KNOWLEDGE


  

Configure your Outlook 2010 Client with Gmail….

Enabling POP

1. Sign in to Gmail.

2. Click Settings at the top right corner of your Gmail page.

3. Click Forwarding and POP/IMAP at the top middle.

4. Select Enable POP for all mail radio button.

5. Choose what to do with your messages after they’re accessed with your POP client or device.

6. Enable the IMAP.

7. Configure your POP client and click Save Changes.

Outlook Configuring

1. Open Outlook.

2. Click the File menu, and select Add Account in Account Information on top…

3. Fill in all necessary fields to include the following information:

Your Name: Enter your name as you would like it to appear in the From: field of outgoing messages.

Email Address: Enter your full Gmail email address (username@gmail.com). Google users, enter your full address in the format username@your_domain.com.

Password: Enter your email password.

Text Messaging: Leave this option unchecked.

Manually configure server settings or additional server types: Leave this option unchecked if you want to automatically configure Outlook 2007.

4. Click Next. If you are configuring Outlook 2010 automatically, you’re done! Just click Finish.

SHARE THE KNOWLEDGE


  

Visual Studio themes………..

Now a days working on visual studio for a long time is seems quite boring. How it is that if u change the theme of visual studio ? yes it is possible to do so. U just have to do the settings and that’s it. Just follow the steps below.

Import the themes of visual studio from here and put that inC:\Users\NIKHILESH\Documents\Visual Studio 2010\Settings this folder. Then open your  visual studio and then go into the tools in menu bar and then select the import and export settings

Click on that and you will see a pop-up window

Select the import selected environment settings and then click on next.

After that again a pop-up window will appear then save the current settings and then click next

Select the theme that u have put in the settings folder and then click on next.

Now all the settings were save just click on finish and its done.

Enjoy the theme.

SHARE THE KNOWLEDGE