- [SQLSERVER] Loại bỏ Restricted User trên database MSSQL
- [C#] Hướng dẫn tạo mã QRcode Style trên winform
- [C#] Hướng dẫn sử dụng temp mail service api trên winform
- [C#] Hướng dẫn tạo mã thanh toán VietQR Pay không sử dụng API trên winform
- [C#] Hướng Dẫn Tạo Windows Service Đơn Giản Bằng Topshelf
- [C#] Chia sẻ source code đọc dữ liệu từ Google Sheet trên winform
- [C#] Chia sẻ source code tạo mã QR MOMO đa năng Winform
- [C#] Chia sẻ source code phần mềm lên lịch tự động chạy ứng dụng Scheduler Task Winform
- [Phần mềm] Tải và cài đặt phần mềm Sublime Text 4180 full version
- [C#] Hướng dẫn download file từ Minio Server Winform
- [C#] Hướng dẫn đăng nhập zalo login sử dụng API v4 trên winform
- [SOFTWARE] Phần mềm gởi tin nhắn Zalo Marketing Pro giá rẻ mềm nhất thị trường
- [C#] Việt hóa Text Button trên MessageBox Dialog Winform
- [DEVEXPRESS] Chia sẻ code các tạo report in nhiều hóa đơn trên XtraReport C#
- [POWER AUTOMATE] Hướng dẫn gởi tin nhắn zalo từ file Excel - No code
- [C#] Chia sẻ code lock và unlock user trong domain Window
- [DEVEXPRESS] Vẽ Biểu Đồ Stock Chứng Khoán - Công Cụ Thiết Yếu Cho Nhà Đầu Tư trên Winform
- [C#] Hướng dẫn bảo mật ứng dụng 2FA (Multi-factor Authentication) trên Winform
- [C#] Hướng dẫn convert HTML code sang PDF File trên NetCore 7 Winform
- [C#] Hướng dẫn viết ứng dụng chat với Gemini AI Google Winform
[C#] Chia sẻ source code make Crazy Error Message Effect Bomb Windows
Xin chào các bạn, bài viết hôm nay mình chia sẻ các bạn source code Crazy Effect Error Message trên winform, khi người dùng click vào sẻ hiển thị ngẫu nhiên các thông báo lỗi.
[C#] Crazy Error Windows
Video demo ứng dụng:
Source code C#:
using bs;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Forms;
namespace CrazyError
{
public partial class Form1 : Form
{
private int step = 30;
bool dixuong = true;
bool dilen = false;
bool dungtrai = false;
bool dungphai = false;
Random r= new Random();
public Form1()
{
InitializeComponent();
this.StartPosition = FormStartPosition.Manual;
this.Location = new Point(0, 0);
}
public Point GetRandomScreenLocation()
{
Random rand = new Random();
Screen screen = Screen.PrimaryScreen;
int x = rand.Next(screen.Bounds.Left, screen.Bounds.Right);
int y = rand.Next(screen.Bounds.Top, screen.Bounds.Bottom);
return new Point(x, y);
}
private void button1_Click(object sender, EventArgs e)
{
this.Hide();
Rectangle screenBounds = Screen.PrimaryScreen.Bounds;
var listForm = new List<Form>();
var listForm2 = new List<Form>();
var listForm3 = new List<Form>();
var rnd = new Random();
var task1 = Task.Run(() =>
{
for (int i = 1; i <= 50; i++)
{
var formrand = r.Next(1, 4);
Form frm;
if (formrand == 1)
{
frm = new Form2();
}
else if (formrand == 2)
{
frm = new Form3();
}
else {
frm = new Form4();
}
listForm2.Add(frm);
frm.StartPosition = FormStartPosition.Manual;
var point = GetRandomScreenLocation();
frm.Location = point;
this.BeginInvoke(new Action(() =>
{
frm.Show();
if (i == 50) {
foreach (var item in listForm2)
{
item.Close();
}
}
}));
Task.Delay(150).Wait();
}
});
task1.ContinueWith(t => {
Task.Run(() =>
{
var temp = new Form2();
int x = 100;
int y = 100;
for (int i = 1; i <= 500; i++)
{
Form form;
form = new Form2();
form.Name = $"form{i}";
listForm.Add(form);
form.StartPosition = FormStartPosition.Manual;
form.Location = new Point(x, y);
if (form.Top + form.Height >= screenBounds.Bottom)
{
dilen = true;
dixuong = false;
}
if (form.Left + form.Width >= screenBounds.Right)
{
dungphai = true;
dungtrai = false;
}
if (form.Left <= screenBounds.Left)
{
dungtrai = true;
dungphai = false;
}
if (form.Top <= screenBounds.Top)
{
dilen = false;
dixuong = true;
}
if (dilen)
{
if (dungphai)
{
x = x - step;
}
else
{
x = x + step;
}
y = y - step;
}
if (dixuong)
{
y = y + step;
if (dungtrai)
{
x = x + step;
}
else
{
x = x - step;
}
}
this.BeginInvoke(new Action(() =>
{
form.Show();
if (i > 20 && i < 200)
{
foreach (var item in listForm)
{
var intNumber = Convert.ToInt32(item.Name.Replace("form", ""));
if (i - intNumber == 20)
{
item.Close();
}
}
}
if (i == 500)
{
foreach (var item in listForm)
{
item.Close();
}
var frm = new BsodForm();
frm.Show();
}
}));
Task.Delay(30).Wait();
}
});
Task.Run(() =>
{
var temp = new Form3();
int x = 350;
int y = 500;
for (int i = 1; i <= 400; i++)
{
Form form;
form = new Form3();
form.Name = $"form{i}";
listForm3.Add(form);
form.StartPosition = FormStartPosition.Manual;
form.Location = new Point(x, y);
if (form.Top + form.Height >= screenBounds.Bottom)
{
dilen = true;
dixuong = false;
}
if (form.Left + form.Width >= screenBounds.Right)
{
dungphai = true;
dungtrai = false;
}
if (form.Left <= screenBounds.Left)
{
dungtrai = true;
dungphai = false;
}
if (form.Top <= screenBounds.Top)
{
dilen = false;
dixuong = true;
}
if (dilen)
{
if (dungphai)
{
x = x - step;
}
else
{
x = x + step;
}
y = y - step;
}
if (dixuong)
{
y = y + step;
if (dungtrai)
{
x = x + step;
}
else
{
x = x - step;
}
}
this.BeginInvoke(new Action(() =>
{
form.Show();
if (i > 20 && i < 200)
{
foreach (var item in listForm3)
{
var intNumber = Convert.ToInt32(item.Name.Replace("form", ""));
if (i - intNumber == 20)
{
item.Close();
}
}
}
if (i == 400)
{
foreach (var item in listForm3)
{
item.Close();
}
}
}));
Task.Delay(30).Wait();
}
});
});
}
}
}
Thanks for watching!