问题标签 [monthcalendar]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
3 回答
2992 浏览

mysql - 按月分组的Mysql查询

我想做一些事情,比如从表中获取所有行

我希望 MySQL 返回"group by"行 mont wise 从

我怎样才能编写我的查询来达到同样的效果?

谢谢...

0 投票
2 回答
3299 浏览

c# - 从选定的月历日期获取星期

我需要一个解决方案来计算从所选日期开始的星期。(在月历中)
我试过:

但是一周的开始和结束日期不正确,在某些年份我有 53 周?
解决这个问题的最佳方法是什么?

0 投票
1 回答
845 浏览

vb.net - VB.Net:动态创建的 MonthCalendar 不会触发 LostFocus 或 GotFocus

我创建了一个表单,它有一个选项卡式控件,可以动态地将用户控件添加到每个选项卡中,并在表单底部有一个 StatusStrip。当应用程序启动时,用户控件会根据安全性加载到选项卡中,并至少加载 1 个选项卡。在 StatusStrip 上,有两个 ToolStripComboBoxes、2 个 ToolStripButtons、1 个 ToolStripLabel 和 1 个 ToolStripStatusLabel。一切都很好并且可以正常工作。

当用户按下两个按钮之一时,我被要求弹出 MonthCalendar 。这是我用来执行此操作的代码:

theCal 在表单类的顶部被定义为 Protected。因此,按下按钮将创建 MonthCalendar 并正确定位它,如果它不存在,如果它存在,则将其删除。这没有问题。

我的问题是 theCal 永远不会触发 GotFocus 或 LostFocus。我有如下定义的过程 theCalLostFocus 并且它从不抛出异常。我可以在 throw 处设置一个断点,而代码永远不会到达那个点。

单击 Cal 上的日期将调用 CalDateSelected 过程,但单击窗体的任何其他区域不会触发 CalLostFocus。由于用户可能不想选择日期并且我不想强迫他们必须按下按钮来移除 theCal,我希望能够在失去焦点时移除 theCal。任何人都知道为什么会发生这种情况并且有人有解决方案吗?

谢谢。-NCGrimbo

0 投票
2 回答
567 浏览

jquery-plugins - DatePicker [ eyecon ] 设置日期范围 jquery/javascript

我正在使用多月Datepicker

我无法明确设置日期范围。

例如,我必须在单击某些按钮时显示 2012 年 9 月 1 日至 2012 年 8 月 30 日。

文档有这种方法,但它只选择开始日期

$('selector').DatePickerSetDate(date, shiftTo);

提前致谢。

0 投票
5 回答
1966 浏览

sql - 获取不同年份中按日/月的最早日期

我有一个日期列表:

活动日期

我想按天/月获得这些年来最早的事件日期。所以最早的是 06/04/1998,如果我想获得最新的活动日期,它是 29/11/2010。我如何为此编写语法?

0 投票
1 回答
2899 浏览

php - PHP:获取给定月份的工作日数

给定月份和工作日,我需要构建一个函数来检索所有星期一、星期二、星期三、星期四和星期五的天数。

假设我给这个月的函数,2012 年 9 月和工作日编号 1。该函数应该检索 2012 年 9 月的所有星期一,它们是:3、10、17 和 24

请注意,对我来说,第 1 个工作日是星期一,第 2 个是星期二,第 3 个是星期三,第 4 个是星期四,第 5 个是星期五。

到目前为止,我已经完成了:根据今天的日期获取一周的第一天(我在下面发布了函数)。但我不知道如何以简单的方式从这里开始,我已经做了很多小时,我怀疑有更好的方法来做到这一点。你能告诉我怎么做吗?

万分感谢

0 投票
1 回答
486 浏览

php - 使用从星期五开始的日历查找月份中的周数

我正在寻找日期在一个月的哪一周开始,一周从星期五开始。例如,日历看起来像这样:

输入将是时间戳格式 ( $currentDate) 的日期,我正在寻找$weekCount.

谢谢

0 投票
1 回答
1125 浏览

c++ - BoldDays with TMonthCalendar

I have written a C++ Builder VCL Forms application with a TMonthCalendar control called TMonthCalendar.

I am wanting to set some of the days with the control to be bold.

Here is my current code:

However I am getting the following error:

Can I please have some help to do this?

Here is a link to the documentation: http://docwiki.embarcadero.com/Libraries/XE3/en/Vcl.ComCtrls.TMonthCalendar.OnGetMonthInfo

I see no difference between my code and the documentation. Yet I still get errors.

thanks

UPDATE

I am trying the following code:

Yet am getting the following errors:

[BCC32 Error] Assessment2.cpp(361): E2357 Reference initialized with 'unsigned long', needs lvalue of type 'unsigned int' Full parser context Assessment2.cpp(359): parsing: void _fastcall TformMain::TMonthCalendarGetMonthInfo(TObject *,unsigned long,unsigned long &)

and

[BCC32 Error] Assessment2.cpp(361): E2342 Type mismatch in parameter 'MonthBoldInfo' (wanted 'unsigned int &', got 'unsigned long') Full parser context Assessment2.cpp(359): parsing: void _fastcall TformMain::TMonthCalendarGetMonthInfo(TObject *,unsigned long,unsigned long &)

UPDATE

I am wanting to retrieve all the days of a certain month from a vector and then set the days to bold via the TMonthCalendar control.

Here is my code:

The dayOfAppointment variable is working correctly and gets the value as an integer of the days that should be displayed in bold. I am after some help to please display these days as bold days.

I am getting some errors to do with the unsigned int arr[] and displaying the bold days. Here they are:

[BCC32 Error] Assessment2.cpp(366): E2313 Constant expression required [BCC32 Error] Assessment2.cpp(372): E2034 Cannot convert 'int[1]' to 'unsigned int *'

I think this is because the static array requires compile time constants and thus the second code will never compile. Is there a way around this?

0 投票
2 回答
17513 浏览

c# - 如何使用 MonthCalender 在文本框中插入日期?

我的 Windows 表单中有一个textBox1。我想用它从用户那里获取日期。我想显示MonthCalender1一旦用户将光标放在textbox1然后textbox1自动设置日期然后日历就会消失。我如何使用 C# 或 C++/CLI 来做到这一点?

0 投票
3 回答
1452 浏览

c# - 如何在 C# 中隐藏 MonthCalendar 控件的下一个/上一个按钮

我有一个项目,我想在 C# 中隐藏 MonthCalendar 控件的下一个/上一个按钮。我已经搜索了谷歌,但我找不到解决方案。请让我看看。