问题标签 [msgbox]
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.
vb.net - 控制台应用程序 - 第一个消息框未聚焦
我正在开发一个 VB.Net 控制台应用程序以从用户那里获取 ID 和密码,并且在输入无效 ID 或密码时应该弹出一条消息,但是我在控制台应用程序中使用消息框时遇到了一个特殊的行为。当显示第一个消息框时,它是失焦的,我们明确需要使消息框聚焦。但下一个后续消息框是焦点。
下面只是示例代码。
只是想知道为什么会发生这样的事情以及应该怎么做才能使第一个消息框也成为焦点。?
c# - C# Web 应用程序 MessageBox.Show 问题
我有一个 switch 语句,它遍历我的 html 中的按钮并命名它们。我想将消息框显示为默认情况,但是当我尝试创建 MessageBox 时,它会显示错误。我尝试使用 System.Windows.Forms;但是当我实现时,我无法将信息传递给我的 buttonsetup 函数。我意识到使用 System.Windows.Forms;仅适用于控制台应用程序。我需要进入 html 并发送消息吗?如果是这样,我如何以及如何正确实施它。
matlab - Matlab 定时窗口根据用户输入停止代码
我正在编写一个测试函数,它将在多个场景中运行,并且在每个场景中,我想询问用户是否愿意继续。如果他们说不,那么我将保存变量并退出程序。此函数应该有一个超时,此时代码将继续运行,并且没有选项退出,直到下一个场景开始。我的问题是超时。
我已经研究过设置 questdlg,但设置超时的唯一方法似乎是修改我不能做的 questdlg.m 文件(由于后勤原因)。
创建一个消息框并使用uiwait停止代码效果很好,但是我不知道如何确定用户是否单击了确定按钮或如何使该框在超时后消失。
问题:
如何确定 msgbox 中的按钮是否被按下?
如何让 msgbox 消失?
是否有另一种方法可以询问用户是否愿意在超时后停止运行测试?
python - 让 easygui 自行更新信息
试图让一个自我更新的车速表和时钟使用 gps 为我的卡车工作。到目前为止,我已经能够使用 easygui 和 msgbox 读取我想要的内容,但它不是自我更新,这对任何一个应用程序都没有多大帮助。下面是代码。任何帮助将不胜感激,我知道这很丑陋,可能不正确,但我是 python 新手。
excel - VBA 消息框货币格式
我是 VBA(Excel)的新手。我正在尝试制作一个收入计算器,在用户输入产品成本和售出数量后,它会出现在消息框中。您如何为连接变量“收入”创建通用货币格式?例如,我的问题是,当我制作格式“$0,000.00”,但收入只有 40 时,它显示为“0,040.00”,而我真的只想要“$40.00”
谢谢
vba - VBA msgbox重复值基于2列
当一个值基于 2 列重复时,我试图获取一个 msgbox。第一列值可以重复,但第二列将确定其是否重复
IE
B 列 = 代码,L 列 = 月份
用户可以多次输入代码,但如果他在同一个月输入,我希望弹出 msgbox
希望可以有人帮帮我
谢谢
vb.net - MsgBox 不会停止代码
我有一个 onChange TextBox 事件。当 textlength 为 22 时,应显示一个 msgbox 并应建立一个 db 连接。
不幸的是,msgbox 没有出现,或者出现和消失的速度非常快。
它不应该像这样发生。我也尝试过使用 ApplicationModal 但这并没有改变任何东西。
示例代码:
excel - Excel VBA: How to stop program and return to certain step in code, 'bypassing modal limitations of MsgBox'
I have a user interface where the user enters some information. Then they press a button for a report to be generated. The user however cannot have left certain files open while the report is generated. If the user leaves a file open, I want an error message to pop up to inform them of this. And then I want a way for the user to fix the problem (close the file) without having to restart the program as they already entered information.
I have the MsgBox pop up:
The problem is that the user cannot do any thing once the error message happens. I know that MsgBox
is modal, but is there a way to get around that. If not I want the user to return to the point before they pressed the generateReport
Button, so they do not have to retype any of the information they inputted. How do I go about solving this?
android - 仅更改 AlertDialog 中的字体大小
我知道这已经被问到甚至回答了,但我不知道如何自定义 AlertDialog。
我编写了以下代码,并得到以下结果作为 AlertDialog,这就是我想要的,除了字体大小:这是我唯一想要改变的东西。
在这里阅读其他一些答案,我编写了以下代码并获得以下对话框:
如您所见,它改变了一切!如何仅更改字体大小或如何使视图看起来像以前的 AlertDialog?
vb.net - VB.NET中进度条完成时多次显示消息框
我正在尝试一些进度条,但它没有正确显示弹出窗口。当我使用 msgbox 时,它会出现 100 次,当我通过替换 msgbox 来使用 form2 时,即使我关闭它,它也会继续显示。