- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我是这个领域的新人。我在我的窗口窗体中使用一个定时器,它以固定的时间间隔从数据库中获取数据。现在我希望我的计时器重新发送相同的邮件,但我需要在屏幕上显示秒表每秒运行一次。有什么办法吗?代码在这里.....
public partial class Form2 : Form
{
private Timer _timer;
int count = 0;
// The last time the timer was started
private DateTime _startTime = DateTime.MinValue;
// Time between now and when the timer was started last
private TimeSpan _currentElapsedTime = TimeSpan.Zero;
// Time between now and the first time timer was started after a reset
private TimeSpan _totalElapsedTime = TimeSpan.Zero;
// Whether or not the timer is currently running
private bool _timerRunning = false;
public Form2(String UserName)
{
InitializeComponent();
_timer = new Timer();
_timer.Interval = 1000;
_timer.Tick += new EventHandler(timer_Tick);
label4.Text = UserName;
}
private void richTextBox2_TextChanged(object sender, EventArgs e)
{
}
private void timer_Tick(object sender, EventArgs e)
{
count = count + 1;
var timeSinceStartTime = DateTime.Now - _startTime;
timeSinceStartTime = new TimeSpan(timeSinceStartTime.Hours,
timeSinceStartTime.Minutes,
timeSinceStartTime.Seconds);
// The current elapsed time is the time since the start button was
// clicked, plus the total time elapsed since the last reset
_currentElapsedTime = timeSinceStartTime + _totalElapsedTime;
// These are just two Label controls which display the current
// elapsed time and total elapsed time
label3.Text = timeSinceStartTime.ToString();
String str1, str2;
SqlDataReader rd1, rd2;
SqlConnection Con = new SqlConnection("Data Source=216.218.224.238;Database=chatapp;Uid=chatappuser;pwd=1234@ChatAppUser;MultipleActiveResultSets=true;");
// SqlConnection Con = new SqlConnection("Data Source=.\\SQLEXPRESS;Initial Catalog=Test;User ID=;Password=;Connection Timeout=600");
Con.Open();
rd1 = new SqlCommand("select top 1 Chat from chat where where email ='" + label4.Text + "'order by id Desc", Con).ExecuteReader();
rd1.Read();
str1 = rd1["Chat"].ToString();
rd1.Close();
rd2 = new SqlCommand("select top 1 UserInitial from chat where email ='" + label4.Text + "' order by id Desc", Con).ExecuteReader();
rd2.Read();
str2 = rd2["UserInitial"].ToString();
rd2.Close();
if (str1 != str2)
{
SqlDataReader rd3, rd4;
rd3 = new SqlCommand("select top 1 UserInitial from chat where email ='" + label4.Text + "'order by id desc", Con).ExecuteReader();
richTextBox1.Text = richTextBox1.Text + " <br /> " + rd3.Read();
rd3.Close();
rd4 = new SqlCommand("Update top 1 chat set Chat = UserInitial where email ='" + label4.Text + "'order by id desc", Con).ExecuteReader();
rd4.Read();
rd4.Close();
Con.Close();
}
}
private void button1_Click(object sender, EventArgs e)
{
if (!_timerRunning)
{
// Set the start time to Now
_startTime = DateTime.Now;
// Store the total elapsed time so far
_totalElapsedTime = _currentElapsedTime;
_timer.Start();
_timerRunning = true;
}
else // If the timer is already running
{
_timer.Stop();
_timerRunning = false;
}
SqlDataReader rd5;
SqlConnection Con = new SqlConnection("Data Source=216.218.224.238;Database=chatapp;Uid=chatappuser;pwd=1234@ChatAppUser;MultipleActiveResultSets=true;");
// SqlConnection Con = new SqlConnection("Data Source=.\\SQLEXPRESS;Initial Catalog=Test;User ID=;Password=;Connection Timeout=600");
Con.Open();
richTextBox1.Text = richTextBox1.Text + "<br />Me:" + richTextBox2.Text;
rd5 = new SqlCommand("Update chat set UserInitial ='" + richTextBox2.Text + "' order by id Desc where email ='" + label4.Text + "'", Con).ExecuteReader();
rd5.Read();
rd5.Close();
Con.Close();
}
private void button3_Click(object sender, EventArgs e)
{
_timer.Stop();
_timerRunning = false;
// Reset the elapsed time TimeSpan objects
_totalElapsedTime = TimeSpan.Zero;
_currentElapsedTime = TimeSpan.Zero;
label3.Text = _totalElapsedTime.ToString();
MessageBox.Show(count.ToString());
count = 0;
}
提前致谢......
最佳答案
您可以使用 StopWatch获取时间量的类 Elapsed
来自 MSDN:
Provides a set of methods and properties that you can use to accurately measure elapsed time.
第 1 步:创建一个 StopWatch
变量作为类级变量。
第 2 步:调用 Start()
方法,无论何时您想要开始计数。
第 3 步:对于每个 timer_tick
事件,您可以使用 stopwatch.Elapsed.Seconds
计算经过的总秒数。
试试这个:
Stopwatch watch = new Stopwatch();
watch.Start();
private void timer_Tick(object sender, EventArgs e)
{
label1.Text = watch.Elapsed.Seconds.ToString();
}
关于c# - 如何在不使用计时器的情况下以 Windows 形式显示秒表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22060823/
我是 Java 新手,这是我的代码, if( a.name == b.name && a.displayname == b.displayname && a.linknam
在下面的场景中,我有一个 bool 值。根据结果,我调用完全相同的函数,唯一的区别是参数的数量。 var myBoolean = ... if (myBoolean) { retrieve
我是一名研究 C++ 的 C 开发人员: 我是否正确理解如果我抛出异常然后堆栈将展开直到找到第一个异常处理程序?是否可以在不展开的情况下在任何 throw 上打开调试器(即不离开声明它的范围或任何更高
在修复庞大代码库中的错误时,我观察到一个奇怪的情况,其中引用的动态类型从原始 Derived 类型更改为 Base 类型!我提供了最少的代码来解释问题: struct Base { // some
我正在尝试用 C# 扩展给定的代码,但由于缺乏编程经验,我有点陷入困境。 使用 Visual Studio 社区,我尝试通过控制台读出 CPU 核心温度。该代码使用开关/外壳来查找传感器的特定名称(即
这可能是一个哲学问题。 假设您正在向页面发出 AJAX 请求(这是使用 Prototype): new Ajax.Request('target.asp', { method:"post", pa
我有以下 HTML 代码,我无法在所有浏览器中正常工作: 我试图在移动到
我对 Swift 很陌生。我如何从 addPin 函数中检索注释并能够在我的 addLocation 操作 (buttonPressed) 中使用它。我正在尝试使用压力触摸在 map 上添加图钉,在两
我设置了一个详细 View ,我是否有几个 Nib 文件根据在 Root View Controller 的表中选择的项目来加载。 我发现,对于 Nibs 的类,永远不会调用 viewDidUnloa
我需要动态访问 json 文件并使用以下代码。在本例中,“bpicsel”和“temp”是变量。最终结果类似于“data[0].extit1” var title="data["+bpicsel+"]
我需要使用第三方 WCF 服务。我已经在我的证书存储中配置了所需的证书,但是在调用 WCF 服务时出现以下异常。 向 https://XXXX.com/AHSharedServices/Custome
在几个 SO 答案(1、2)中,建议如果存在冲突则不应触发 INSERT 触发器,ON CONFLICT DO NOTHING 在触发语句中。也许我理解错了,但在我的实验中似乎并非如此。 这是我的 S
如果进行修改,则会给出org.hibernate.NonUniqueObjectException。在我的 BidderBO 类(class)中 @Override @Transactional(pr
我使用 indexOf() 方法来精细地查找数组中的对象。 直到此刻我查了一些资料,发现代码应该无法正常工作。 我在reducer中尝试了上面的代码,它成功了 let tmp = state.find
假设我有以下表格: CREATE TABLE Game ( GameID INT UNSIGNED NOT NULL, GameType TINYINT UNSIGNED NOT NU
代码: Alamofire.request(URL(string: imageUrl)!).downloadProgress(closure: { (progress) in
我是一名优秀的程序员,十分优秀!