A. 通讯录怎么查
通讯录你可以在联系人图标里面进行查看,如果你的联系人被删的话可以去浏览器中找到极速数据恢复帮你进行找回,具体的操作步骤如下:
第一步:要想还原误删的联系人数据,我们可以这样做。在浏览器中搜索极速数据恢复,把它安装在手机中。
第二步:将下载好的极速数据恢复软件打开,可以在“恢复”界面中看到有很多恢复功能,找到并点击“联系人恢复”。
第三步:接下来软件就会帮助我们深度扫描手机系统,在此过程中,需要耐心等待。
第四步:接下来它就会立马把扫描出来的数据罗列在手机上,我们只需要找出对我们有用的联系人数据进行勾选,后点击“恢复”就可以啦!
B. 用C#编写个人通讯录程序
using System;
namespace TheFirstClassApp
{
enum Sexly
{
male,
female
}
struct Date
{
public int year;
public int month;
public int day;
public int Year
{
get
{
return this.year;
}
set
{
if (value >= 1990)
this.year = value;
else
this.year = 0;
}
}
public int Month
{
get
{
return this.month;
}
set
{
if (value >= 1 && value <= 12)
this.month = value;
else
this.month = 0;
}
}
public int Day
{
get
{
return this.day;
}
set
{
switch (this.month)
{
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12:
{
if (day >= 1 && day <= 31)
this.day = value;
else
this.day = 0;
}
break;
case 4:
case 6:
case 9:
case 11:
{
if (day >= 1 && day <= 30)
this.day = value;
else
this.day = 0;
}
break;
case 2:
if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0)
{
if (day >= 1 && day <= 29)
this.day = value;
else
this.day = 0;
break;
}
else
{
if (day >= 1 && day <= 28)
this.day = value;
else
this.day = 0;
break;
}
default:
break;
}
}
}
public string DateString
{
get
{
return year.ToString() + "年" + month.ToString() + "月" + day.ToString() + "日";
}
}
public Date(int year, int month, int day)
{
this.year = year;
this.month = month;
this.day = day;
}
public bool IsLegalDate(int year, int month, int day)
{
if (year >= 1990 && year <= 2011)
{
if (month <= 12 && month >= 1)
{
switch (this.month)
{
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12:
{
if (day >= 1 && day <= 31)
this.day = day;
else
Console.WriteLine("您输入有误");
return false;
}
case 4:
case 6:
case 9:
case 11:
{
if (day >= 1 && day <= 30)
this.day = day;
else
Console.WriteLine("您输入有误");
return false;
}
case 2:
if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0)
{
if (day >= 1 && day <= 29)
this.day = day;
else
Console.WriteLine("您输入有误");
return false;
}
else
{
if (day >= 1 && day <= 28)
this.day = day;
else
Console.WriteLine("您输入有误");
return false;
}
default:
return false;
}
}
else
return false;
}
else
return false;
}
}
class Person
{
private string name;
public string Name
{
get
{
return this.name;
}
set
{
this.name = value;
}
}
private Sexly sex;
public Sexly Sex
{
get
{
return sex;
}
set
{
if (Convert.ToString(value) == "male" || Convert.ToString(value) == "female")
sex = value;
}
}
private string mobile;
public string Mobile
{
get
{
return this.mobile;
}
set
{
this.mobile = value;
}
}
private string address;
public string Address
{
get
{
return this.address;
}
set
{
this.address = value;
}
}
private string id;
public string ID
{
get
{
return this.id;
}
set
{
this.id = value;
}
}
private Date birthday;
public Date Birthday
{
set
{
if (value.year >= 1990 && value.year <= 1999)
this.birthday = value;
else
{
this.birthday = value;
this.birthday.year = 1990;
}
}
}
private Date work;
public Date Work
{
get
{
return this.work;
}
set
{
this.work = value;
}
}
public int WorkYear
{
get
{
return this.CalculateWorkYear();
}
}
private int CalculateWorkYear()
{
int currentYear = DateTime.Now.Year;
int workYear = this.work.year;
return currentYear - workYear;
}
public int Age
{
get
{
return this.CalculateAgeFromBirthday();
}
}
private int CalculateAgeFromBirthday()
{
int currentYear = DateTime.Now.Year;
int birthYear = this.birthday.year;
return currentYear - birthYear + 1;
}
public Person()
{ }
public Person(string name, Sexly Sex, Date birthday, string mobile, string address, string id)
{
this.name = name;
this.sex = Sex;
this.birthday = birthday;
this.mobile = mobile;
this.address = address;
this.id = id;
}
public bool SetDate(out string errorMsg, params int[] dateDates)
{
Date birthday = new Date();
errorMsg = "";
if (dateDates.Length == 1)
{
birthday.year = dateDates[0];
birthday.month = 1;
birthday.day = 1;
if (birthday.year < DateTime.Now.Year)
return true;
else
{
errorMsg = "输入年份有误";
return false;
}
}
else
{
if (dateDates.Length == 2)
{
birthday.year = dateDates[0];
birthday.month = dateDates[1];
birthday.day = 1;
if (birthday.year < DateTime.Now.Year)
{
if (birthday.month <= 12 && birthday.month >= 1)
return true;
else
{
errorMsg = "输入的月份有误!";
return false;
}
}
else
{
errorMsg = "输入的年份有误!";
return false;
}
}
else
{
if (dateDates.Length == 3)
{
birthday.year = dateDates[0];
birthday.month = dateDates[1];
birthday.day = dateDates[2];
if (birthday.year < DateTime.Now.Year)
{
if (birthday.month <= 12 && birthday.month >= 1)
{
switch (birthday.month)
{
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12:
if (birthday.day >= 1 && birthday.day <= 31)
return true;
else
{
errorMsg = "输入日期有误";
return false;
}
case 4:
case 6:
case 9:
case 11:
if (birthday.day >= 1 && birthday.day <= 30)
return true;
else
{
errorMsg = "输入日期有误";
return false;
}
case 2:
if (birthday.year % 4 == 0 && birthday.year % 100 != 0 || birthday.year % 400 == 0)
{
if (birthday.day >= 1 && birthday.day <= 29)
return true;
else
{
errorMsg = "输入日期有误";
return false;
}
}
else
{
if (birthday.day >= 1 && birthday.day <= 28)
return true;
else
{
errorMsg = "输入日期有误";
return false;
}
}
default:
{
errorMsg = "输入月份有误";
return false;
}
}
}
else
{
errorMsg = "输入月份有误";
return false;
}
}
else
{
errorMsg = "输入年份有误";
return false;
}
}
else
{
errorMsg = string.Empty;
return true;
}
}
}
}
public string Information
{
get
{
string info = "";
info += "姓名:" + this.name + "\r\n";
info += "性别:" + (this.sex == Sexly.male ? "男" : "女") + "\r\n";
info += "年龄:" + this.Age + "\r\n";
info += "出生日期:" + this.birthday.DateString + "\r\n";
info += "手机号码:" + this.mobile + "\r\n";
info += "地址:" + this.address + "\r\n";
info += "身份证:" + this.id + "\r\n";
info += "工龄:" + this.WorkYear;
return info;
}
}
}
class ProgEntry
{
static void Main()
{
Date birthday = new Date();
Date theWork1 = new Date();
Person thePerson = new Person();
Console.WriteLine("请输入姓名:");
thePerson.Name = Console.ReadLine();
Console.WriteLine("请输入您的性别(男用"0"表示,女用"1"表示):");
thePerson.Sex = (Sexly)Convert.ToInt32(Console.ReadLine());
Console.WriteLine("请输入您的出生年份:");
birthday.year = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("请输入您的出生月份:");
birthday.month = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("请输入您的出生日期:");
birthday.day = Convert.ToInt32(Console.ReadLine());
thePerson.Birthday = birthday;
Console.WriteLine("手机号码");
thePerson.Mobile = Console.ReadLine();
Console.WriteLine("地址:");
thePerson.Address = Console.ReadLine();
Console.WriteLine("身份证:");
thePerson.ID = Console.ReadLine();
Console.WriteLine("请输入您的开始工作年份:");
theWork1.year = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("请输入您的开始工作月份:");
theWork1.month = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("请输入您的开始工作日期:");
theWork1.day = Convert.ToInt32(Console.ReadLine());
thePerson.Work = theWork1;
/*Console.WriteLine("工作年:");
Work.year = int.Parse(Console.ReadLine());
Console.WriteLine("工作月:");
Work.month = int.Parse(Console.ReadLine());
Console.WriteLine("工作日:");
Work.day = int.Parse(Console.ReadLine());*/
//Console.WriteLine("您的姓名:{0},性别:{2} ,年龄:{4} ,手机:{1}\n,家庭地址:{5}",thePerson.Name,thePerson.Sex,thePerson.Age,thePerson.Mobile,thePerson.Address);
/*Date theBirthday1 = new Date(1978, 12, 31);
Person thePerson = new Person("张三", Sexly.male, theBirthday1, "188888888", "青年东路七号", "328888888888885");
Date theWork1 = new Date(2010,12,31);
thePerson.Work = theWork1;*/
string errorMsg = "";
//int[] arr = new int[3];
//Date birthday1 = new Date();
thePerson.SetDate(out errorMsg, birthday.year, birthday.month, birthday.day);
//thePerson.Birthday = birthday1;
Console.WriteLine(thePerson.Information);
Console.WriteLine(errorMsg);
Console.ReadLine();
}
}
}
C. 移动号码在网上怎么查通讯录
中国移动手机用户不能在网上查通讯录,通讯录只存在于自己的手机上。
移动用户可以网上查询的是通讯记录,即通话详单,查询的方法:
打开网页,进入中国移动网上营业厅(www.10086.com)以后点击【登陆】.
输入手机号码和服务密码,如果不知道服务密码才可以使用动态密码来登陆.
登陆成功以后点击【我的移动】我的消费下点【我的详单】.
再次输入服务密码就可以看查询到每一次通话的情况,套餐及固定费清单、通话清单、上网清单、短/彩信清单、代收费业务扣费记录等.
输入二次授权的手机获得的密码.
此时可以查最近六个月的通话记录。设定好查询时间以后点击【开始查询】,并且支持将通常详单以excle格式导出至电脑硬盘。
D. 手机号码备份 如何网上查看号码
移动有个
号簿管家
的业务,只要
手机
型号匹配号簿管家
软件
,下载一个到手机上,进行
号簿
备份
,就把手机里面的
通讯录
备份到号簿管家网站上,登陆号簿管家网站就可以查询到通讯录了,网站上的通讯录还支持excrel导出到电脑桌面上。
市场上还有很多款
备份软件
,有对应的
网址
。
E. )编写一个通讯录管理系统。要求包括通讯录建立、增加号码、删除号码、查询号码(按姓名、按号码)、修改
咨询记录 · 回答于2021-11-22
F. 如何查手机通讯录
打开你的手机之后,点击拨号键或者联系人,我的截图或者和你的手机不一样,但是每部手机都有通讯录和联系人的,找到他们,这里就打开拨号键吧。打开看到的是最近来电,再选择联系人,里面没有自己的通讯录。
这时点击手机及机身下方的设置按钮,点击之后,跳出几个选项,选择设置项,打开设置。
设置界面内容比较多,不要乱设置,否则会比较麻烦,因为如果你不小心设置了某个地方,又不知在哪里就不好办了。要找到显示联系人的选项,当前界面找不到,就往下滑动,找到就点击进去。
这时可以看到SIM卡联系人,打开右边的锁,锁又灰色变成橙色表示设置成功。然后返回你的联系人列表,就可以看到你以前的通讯录全部在这里了。
如果你只是想显示一部分的人的手机号,就在设置那里,选择导入或者导出联系人的选项,设置界面前面提过了,这里不再赘述。再选择从SIM卡导入,进入你的SIM卡通讯录。
然后通讯录列表上可以看到你的通讯录电话号码,点击右侧按钮打钩,表示选中它,然后点击下方的导入按钮,就可以把你选择的号码导入到你的手机通讯录中了。
最后,看一下你的联系人,看看是不是都有显示你的通讯录号码了,好了就这么简单,找不到通讯录的小伙伴仔细看咯。
G. 知道号码怎么查通讯录
建议您可以查询通话清单,其查询方式如下:
【中国电信欢GO网站】
1、登陆中国电信欢GO网站,凭借手机“客户密码”登陆,点击“费用”---“通话详单”;
2、选择查询月份,点击获取短信验证码,点击“确认查询”;
3、查询结果具体到每一通电话的通话时长及通话费用。
【微信公众号“中国电信广东公司”查询】
关注微信公众号“中国电信广东公司”(微信号:gdkf10000);进入公众号后,点击“我要查询”----“查费用和积分”,在跳出的活动界面中点“查询往月话费”,选择需要查询话费账单的月份,总消费以及套餐费用、套餐外费用;点击套餐外费用下得“明细”,即可显示该月套餐外语音通话的总费用。
【微信公众号“广东电信”查询】
1、关注微信公众号“广东电信”(微信号:gddxwt);进入微信公众号后点击“自助服务”---“账户查询”---“账单查询”;
2、点击左上角的图标选择查询账单的日期,点击进入查询该月账单,向下滑动屏幕,可看到“套餐外费用”项目,如您上月通话超出套餐内语音,则会出现相应记录,若无则不显示记录。网页链接
H. 利用vb创建创建一个简易的通讯录。查询姓名就出来电话号的那种。 希望大神指导
您好!
要数据库吗?我可以帮你做一个
I. 人名和手机号如何注册通讯录
通讯录的话是不需要进行注册,你说的应该是出村名字,名字和号码,先点击号码,把号码输完后点击添加至通讯录,然后输入联系人的姓名就可。