Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8779695
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T19:51:40+00:00 2026-06-13T19:51:40+00:00

I am writing an alarm program in C# that displays a system modal dialog

  • 0

I am writing an alarm program in C# that displays a system modal dialog with a user-specified message at a specified time. However, I can’t seem to find the C# equivalent of

MessageBoxA(HWND_DESKTOP, msg, "Alarm",
   MB_OK | MB_ICONWARNING | MB_SYSTEMMODAL | MB_SETFOREGROUND);

Edit: I am trying to learn C# and the .NET libraries. I thought writing programs equivalent to some small programs that I have written in C or C++ would be a good place to start.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T19:51:41+00:00Added an answer on June 13, 2026 at 7:51 pm

    Something like this should work for you:

    MessageBox.Show("text", "caption", MessageBoxButtons.OK, MessageBoxIcon.Warning);
    

    Find out more on MSDN: http://msdn.microsoft.com/en-us/library/system.windows.forms.messagebox.show.aspx

    EDIT:
    Just as alternative idea, this would create form of the size of your screen and show there message box by blocking everything else on the screen until you close that message box.

    internal class TransparentWholeScreen: Form
    {
        public TransparentWholeScreen()
        {
            Size = Screen.PrimaryScreen.Bounds.Size;
            TopMost = true;
            FormBorderStyle = FormBorderStyle.None;
            SetStyle(ControlStyles.SupportsTransparentBackColor, true);
            BackColor = Color.Transparent;
            Shown += OnShown;
        }
    
        private void OnShown(object sender, EventArgs e)
        {
            var dialogResult = MessageBox.Show("text", "caption", MessageBoxButtons.OK, MessageBoxIcon.Warning);
            if(dialogResult == DialogResult.OK)
            {
                Close();
            }
        }
    }
    

    Just add following code on elapsing of your alarm timer:

        var backGroundForm = new TransparentWholeScreen();
        backGroundForm.ShowDialog(this);
    

    Honestly I don’t like this solution, besides it won’t work as alarm for people who can kill process 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am writing an app that in some situations warns user with an alarm
I am writing an alarm program for android and am very happy with it
I'm writing a simple alarm utility in Python. #!/usr/bin/python import time import subprocess import
I am writing an Android alarm application that uses a Service in order to
So I've been writing an app that uses an alarm to open a service
Writing htaccess that allows me to remove index.php from the URL can confuse search
I am writing a program that fires off an intent to start a service
I am writing an Android alarm-like app. I want to let the user to
I'm writing a simple program that makes multiple connections to different servers for status
I'm writing a sports app that needs to track the elapsed time of quarter/half/period.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.