Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
37 views

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 ...
Tom Albu's user avatar
0 votes
1 answer
102 views

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") -...
MikeZetPL's user avatar
  • 179
0 votes
0 answers
96 views

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 <...
user541686's user avatar
  • 213k
0 votes
1 answer
53 views

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....
Sjors Miltenburg's user avatar
0 votes
1 answer
103 views

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 ...
NightFuryLxD's user avatar
1 vote
3 answers
52 views

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 ...
Matthew Warner's user avatar
0 votes
1 answer
105 views

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 ...
Ivan's user avatar
  • 11
0 votes
1 answer
166 views

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 ...
nikhil's user avatar
  • 1,764
2 votes
2 answers
348 views

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() ...
Bob Gatto's user avatar
  • 176
0 votes
1 answer
107 views

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. ...
JetskiS's user avatar
  • 143
-3 votes
2 answers
325 views

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 "...
Jayden Steiner Sable's user avatar
1 vote
1 answer
81 views

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 ...
JetskiS's user avatar
  • 143
0 votes
0 answers
54 views

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 ...
imperialjasper's user avatar
0 votes
2 answers
75 views

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 ...
Petr Synek's user avatar
0 votes
1 answer
81 views

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 ...
Worsik's user avatar
  • 67
0 votes
1 answer
63 views

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 ...
d365b's user avatar
  • 21
0 votes
0 answers
59 views

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 ...
sionnach's user avatar
0 votes
2 answers
81 views

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 ...
williamqmoura's user avatar
0 votes
2 answers
74 views

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 ...
Laurin Theisen's user avatar
-3 votes
1 answer
100 views

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 ...
Lorenzo Sola's user avatar
1 vote
1 answer
124 views

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 ...
nomacreates's user avatar
0 votes
0 answers
68 views

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 ...
user23636411's user avatar
2 votes
1 answer
210 views

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\...
xjcl's user avatar
  • 15.7k
0 votes
1 answer
51 views

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....
user23510896's user avatar
1 vote
1 answer
102 views

<form name="contactForm" class="customform" action="contact.php" method="post"> <div class="s-12"> <div class=...
Saad Abbas's user avatar
0 votes
0 answers
116 views

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....
Marnu van Sandwyk's user avatar
0 votes
0 answers
109 views

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 ...
Benjamin's user avatar
1 vote
1 answer
112 views

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 ...
Marnu van Sandwyk's user avatar
0 votes
1 answer
51 views

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 >= ...
Array's user avatar
  • 3
0 votes
1 answer
103 views

std::string Window::Exception::TranslateErrorCode(HRESULT hr) noexcept { char* pMsgBuf = nullptr; DWORD nMsgLen = FormatMessage( FORMAT_MESSAGE_ALLOCATE_BUFFER | ...
descreetOP's user avatar
0 votes
0 answers
197 views

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 ...
descreetOP's user avatar
1 vote
1 answer
179 views

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 ...
Tibor Titusz Tóth's user avatar
0 votes
1 answer
220 views

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....
Project Downgrade's user avatar
-3 votes
1 answer
72 views

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, ...
barryleajo's user avatar
  • 1,962
0 votes
1 answer
613 views

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': ...
Atlas's user avatar
  • 337
1 vote
0 answers
2k views

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 ...
Georgi Kirov's user avatar
1 vote
2 answers
114 views

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 ...
Lian Keshiahian's user avatar
1 vote
1 answer
632 views

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 ...
Desecreight's user avatar
0 votes
1 answer
470 views

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 ...
icbytes's user avatar
  • 1,871
1 vote
1 answer
147 views

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 ...
Andrei Vartic's user avatar
0 votes
1 answer
169 views

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 ...
roy's user avatar
  • 729
0 votes
1 answer
169 views

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 ...
Salah's user avatar
  • 131
0 votes
0 answers
47 views

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 ...
Hatchy's user avatar
  • 23
1 vote
1 answer
146 views

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" ...
HayTxaHT ՀայՏղաՀՏ's user avatar
0 votes
2 answers
447 views

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 ...
Arsh Nirmal's user avatar
0 votes
1 answer
47 views

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 ...
Evan's user avatar
  • 15
0 votes
1 answer
409 views

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....
BullyWiiPlaza's user avatar
0 votes
2 answers
179 views

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 ...
الاختراع المدمر's user avatar
0 votes
1 answer
124 views

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 ...
DIMM_V2's user avatar
  • 131
1 vote
2 answers
1k views

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 ...
Tom's user avatar
  • 13

1
2 3 4 5
38