1,880 questions
1
vote
0
answers
37
views
Adding a confirmation mesage broke my script [duplicate]
It is true - this is the same problem as referenced above - a Google Sheets issue with SpreadsheetApp.getUi();
I have a script on a Google Sheet which clears out old data
function ...
0
votes
1
answer
102
views
Create Proper MessageBox with only installed Software from the list
I have an addon what can be installed only to one Soft.
Lets say I already build simple list of Software with this addon can work on by reg query or test-path check:
If ((reg query "Soft1") -...
0
votes
0
answers
96
views
Why does MessageBox() appear in the background if the application's own windows are minimized on Windows 11? TaskDialog doesn't do this
If you try launching this program on Windows 11 from another program (like from Visual Studio), the message box will lack focus, and appear behind some other windows you have open:
#include <...
0
votes
1
answer
53
views
Why is my MessageBox.Show playing the messagebox sound, but not showing my MessageBox
At first I thought it was due a threading problem (I was calling it from the wrong thread) but surrounding it with Dispatcher.Invoke did not fix it.
catch (Exception e)
{
Application.Current....
0
votes
1
answer
103
views
Recommended way for a Windows app to inform user of an exception
In this context, an exception is not just a code-level exception (like EXCEPTION_ACCESS_VIOLATION or one of the exception codes listed here) but also includes other undesirable scenarios like ...
1
vote
3
answers
52
views
I'm having problem with coding UI formatting of message box with flutter
Look as you can see here the message box at the bottom should crop to the content but it doesn't as the word doesn't fit so just goes to next line but message box doesn't update.
heres my current ...
0
votes
1
answer
105
views
Dialog box for a user with an active session
My task is to update a program on users' computers. I will do this by running a script on behalf of the system account via the task scheduler.
But before starting the procedure of deleting and ...
0
votes
1
answer
166
views
Timer is not ticking when message box is open
I have an inactivity timer that keeps checking for inactivity throughout the app. The problem is, when message box is open, the timer is not ticking and checking for inactivity as long as the ...
2
votes
2
answers
348
views
Is ther a way to auto-close a pop-up after a specific number of seconds?
I'm currently writing a maui app in .NET 8.0 and after a method is complete, I usually display a message announcing the procedure was completed successfully, and I do this using the DisplayAlert() ...
0
votes
1
answer
107
views
Messagebox for overwriting files does not pop up
I have written the following VBA code to save my Solidworks files. It also checks if files already exists in the folder and if so - asks through a messagebox if these files need to be overwritten.
...
-3
votes
2
answers
325
views
How to make a function of MessageBox with Windows API
I want to make a reusable function that I can reuse whenever I want to use a MessageBox but in the code below, there is an error saying:
identifier "Lmessage" is undefined
identifier "...
1
vote
1
answer
81
views
Files overwriting messagebox in a loop using VBA
I have a working script that saves multiple Solidworks parts through a loop using vba. The amount and name of parts is dependent on the user that selects parts to be saved in a userform.
If files are ...
0
votes
0
answers
54
views
Messagebox.askyesno Not Working in Spyder IDE
I had the messagebox.askyesno function (from tkinter) working when I was using it from the Spyder standalone install. However, when I switched to the Python interpreter from Anaconda, the messagebox ...
0
votes
2
answers
75
views
Keep message boxes on top an in active screen
I have a script which, at its start, creates several dialog boxes to ask for input data. First a message appears "Select target folder". After clicking, a folder browser appears to allow the ...
0
votes
1
answer
81
views
ZK 10 Messagebox.show in doAfterCompose() stops page rendering
I am working on upgrade from ZK 8.5.2.1 to version 10, latest hotfix for jakarta.
After fixing multiple complications, I am now stuck with unexpected behaviour of Messagebox.show().
I need user to ...
0
votes
1
answer
63
views
TopMost WPF style MessageBox
In my VSTO Excel Addin application I wish to show a Systems.Window.MessageBox as TopMost window when the user attempt to close any opened workbook - just like Excel does if you try to close a workbook ...
0
votes
0
answers
59
views
Is there a way to add an if statement to a message pop-up in R?
I'm working on some code to clean a dataset and before exporting I need to check if there are any NA values which is done using
navalues <- sum(is.na(data$postcode))
I would like to add a pop-up ...
0
votes
2
answers
81
views
How to mock and perform asserts in MessageBox
I'm making a desktop/on-premise application using C# .Net Windows Forms and I need to perform some tests on a class that interacts with the user through messages while carrying out some processes, and ...
0
votes
2
answers
74
views
Make form like the message box just with own commands
First of all, I would like to say that english is not my mother language.
I have this Form in windows forms:
with this code:
public partial class FormInput : Form
{
public FormInput(string ...
-3
votes
1
answer
100
views
There's a way to show boxed text messages using pure Bash script? [closed]
I wrote a function working quite fine using ANSI escape sequences for terminals like VT100 (normally managed by Linux/Unix terminal emulators).
I reported below the Bash code.
#!/bin/bash
# Returns ...
1
vote
1
answer
124
views
MessageBox Hides the Parent Window Under Other Open Windows When Closing in WPF/Winform Application
I have been battling with this problem for so long now. I thought I would eventually figure out what was wrong, but it turned out that I couldn't.
It is this occasional occurrence with my app that I ...
0
votes
0
answers
68
views
Excel How to remove Message Box from code
This code (from Jon Peltier) lets you select a range for the series name.
Is there a way to make this work without the Message Box?
To say e.g. Set SeriesNameRange = ("C27:E27")?
Sub ...
2
votes
1
answer
210
views
msg.exe prints "Invalid parameter(s)"
I am working on a small server monitoring script, and want to show a pop-up window to the user with a list of services once they are detected to be down. I tried sending this message with C:\Windows\...
0
votes
1
answer
51
views
Display warning icon in MessageBox
I can't show any icon in MessageBox, I'm using material theme and ExtJS 7 CE
Ext.Msg.show({ title: 'My Title', message: 'My Message', width: 340, icon: Ext.MessageBox.INFO, buttons: Ext....
1
vote
1
answer
102
views
I want a message box to appear once i click submit
<form name="contactForm" class="customform" action="contact.php" method="post">
<div class="s-12">
<div class=...
0
votes
0
answers
116
views
Pushing and popping strings to and from stack NASM 64bit Windows assembly
I am busy implementing the stack on a project, and I got stuck. The goal is for it to display the message in MessageboxA, but not by using any variables, but by only pushing and popping from the stack....
0
votes
0
answers
109
views
catch (Exception ex) not displaying MessageBox message for event
So I'm coding a write to function and need the Exception ex to display a warning message that the txtFileContents.Text area is blank and needs to contain some text before the write to function can ...
1
vote
1
answer
112
views
Int to string in 64x windows assembly(nasm)
I am trying to convert an integer to a string and then displaying it using the MessageBoxA function. It is successful if the number is an xero, but any other positive integer is displayed as a blank ...
0
votes
1
answer
51
views
Confused with messagebox
I am trying to have my program use messagebox from tkinter. So far it's worked, but now I'm having a problem getting it to have a math equation in the title.
This is the code I have
while lives >= ...
0
votes
1
answer
103
views
MessageBox Description has only 1 letter
std::string Window::Exception::TranslateErrorCode(HRESULT hr) noexcept
{
char* pMsgBuf = nullptr;
DWORD nMsgLen = FormatMessage(
FORMAT_MESSAGE_ALLOCATE_BUFFER |
...
0
votes
0
answers
197
views
How to properly convert char to wchar_t
I'm trying to create this message box, but the text on the box is a strange language.
catch (const ExceptionHandling& e)
{
// initialize vars
const wchar_t* wideWhat = nullptr;
const ...
1
vote
1
answer
179
views
Powerbuilder messagebox text
When you use MessageBox you have a selection of MessageBoxButtons to choose from.
The buttons available are an enum, and give you options like "Yes No", "OK Cancel", etc.
When I am ...
0
votes
1
answer
220
views
How Messagebox Show connecting to the url link
I want to add a link, when the message appears, there is an ok button, when they click it will lead to the target URL link, how do I do it, can you help me
Public Shared Sub NewsInfo()
MessageBox....
-3
votes
1
answer
72
views
MessageBoxButton exception WPF, VB.net project
I am using the following code in a Button_Click event:
If OwordDoc IsNot Nothing Then
System.Windows.MessageBox.Show("A document is already open.", MessageBoxButton.OK, ...
0
votes
1
answer
613
views
pythonic popup messagebox in dearpygui (asyncio or sync way)
for person who is looking for pythonic popup messagebox in dearpygui, hope it can help
target:
do_sth_step1(...)
user_response = msgbox('Confirm?') # Yes/No
if user_response == 'Yes':
...
1
vote
0
answers
2k
views
CTkMessagebox and tkinter messagebox.showinfo() problems
I am trying to create a custom tkinter program. For a week or so I've been struggling with the messagebox and the interactions between it and the main window. This is the following code:
def ...
1
vote
2
answers
114
views
Is there a vba code which opens a msgbox when cell value is not equal to a specific cell?
I'm new to using vba so I wanted to know if there's a way I can get excel to show a message box when the value of a cell is not equal to another cell in my worksheet?
I saw this code being used for ...
1
vote
1
answer
632
views
How to get batch/powershell MessageBox and InputBox windows to display always on top of other windows?
I am writing a batch script to open a series of MessageBox and InputBox windows. The program works well when it is first launched and the users are able to interact with the windows, but if they click ...
0
votes
1
answer
470
views
MessageBox - Force it to be blocking
In order to keep a clean, easy and maintainable code, I want to exit a function, after the user has closed a MessageBox.... BUT the anonymous function is triggered async, therefore not blocking.
Is ...
1
vote
1
answer
147
views
karate ui match alert text
I am tring to check an alert message and it does not work.
This is the code :
Then match driver.dialog == "Trigger type not chosen"
This is the error :
match failed: EQUALS $ | data types ...
0
votes
1
answer
169
views
Why Looping each row in a datagridview doesn't show all value in the messagebox in the vb.net
It should also appear in the messagebox for codeproduct "B" if there is something wrong with my code please guide me
I updated the code full making it easier to solve the solution . maybe ...
0
votes
1
answer
169
views
Showing multiple messages in Python console
If I use ctypes to show message box in python console (without Tkinter), I'm not able to show two boxes at a time. I've to close the first box, then only second box will appear.
What change should I ...
0
votes
0
answers
47
views
how to have 2 messsage box with tkinter
i have been trying to make a kind of reminder that pop your next task but i also wanted another indicator that tells the next task the issue is when the next task pop up is opened the other one cant ...
1
vote
1
answer
146
views
Change Inno Setup message boxes button captions
I want to know how how to change other window caption's name in Inno Setup, when the message box appears "File not exist", "File exist", "After installation is cancelled" ...
0
votes
2
answers
447
views
Hi, I'm developing a chat application using Flutter. How can I check if message is seen or not based on last seen of both users?
I can access and update the last seen of both users through web sockets.
I'm not able to set proper conditions to check if message is seen by the other user. I need advice to when should I update the ...
0
votes
1
answer
47
views
How do I make a different messagebox show up depending on the answer from a previous one? Python
This may seem like a simple problem but I can't figure it out because I just started learning Python.
I want to make a messagebox with a Yes and No answer t a question which I did do, but I want ...
0
votes
1
answer
409
views
Getting System.MissingMethodException with MessageBox.Avalonia
I'm trying to display message boxes in Avalonia with C# on Windows.
My package versions are as follows:
My code for displaying a message box is:
using MessageBox.Avalonia;
using MessageBox.Avalonia....
0
votes
2
answers
179
views
unsupported operand type(s) for +: 'StringVar' and 'str'
it givs me this error (unsupported operand type(s) for +: 'StringVar' and 'str')
import tkinter as tk
from tkinter import *
from tkinter import messagebox
root = Tk()
root.geometry ('640x600') # Size ...
0
votes
1
answer
124
views
nsis : messagebox autoclose with MessageBox func
There is a way to autoclose message box ? with "MessageBox MB_OK" ?
ex : MessageBox MB_OK "Installation complete!"
i have tried : the banner,but it takes the name of install ...
1
vote
2
answers
1k
views
How to show a Message Box when the value of a formula cell in an array is changed from 0 to 1
I have a spreadsheet table for data entry. When certain criteria on a line in the table is met, I want to trigger a Message Box as a reminder for the user to do something.
First, I wrote a formula in ...