NullIntended
NullIntended
Explore posts from servers
CC#
Created by NullIntended on 12/21/2023 in #help
Selenium Question
Do I need tear down etc for finalized product? Im using nunit framework but cant seem to be able to remove them without issues.
1 replies
CC#
Created by NullIntended on 7/20/2023 in #help
❔ OCR issue
12 replies
CC#
Created by NullIntended on 7/20/2023 in #help
✅ tray system
cs #region Background
private void frmSystemTray_Load(object sender, EventArgs e)
{
notifyIcon1.BalloonTipText = "Application Minimized.";
notifyIcon1.BalloonTipTitle = "File Backup System";
notifyIcon1.ShowBalloonTip(1000);
}

private void frmSystemTray_Resize(object sender, EventArgs e)
{
if (this.WindowState == FormWindowState.Minimized)
{
// ShowInTaskbar = false;
Hide();
notifyIcon1.Visible = true;
notifyIcon1.ShowBalloonTip(1000);
}
}
private void notifyIcon1_MouseDoubleClick(object sender, MouseEventArgs e)
{
MessageBox.Show("NotifyIcon Double Clicked!");
Show();
ShowInTaskbar = true;
notifyIcon1.Visible = false;
WindowState = FormWindowState.Normal;
}
cs #region Background
private void frmSystemTray_Load(object sender, EventArgs e)
{
notifyIcon1.BalloonTipText = "Application Minimized.";
notifyIcon1.BalloonTipTitle = "File Backup System";
notifyIcon1.ShowBalloonTip(1000);
}

private void frmSystemTray_Resize(object sender, EventArgs e)
{
if (this.WindowState == FormWindowState.Minimized)
{
// ShowInTaskbar = false;
Hide();
notifyIcon1.Visible = true;
notifyIcon1.ShowBalloonTip(1000);
}
}
private void notifyIcon1_MouseDoubleClick(object sender, MouseEventArgs e)
{
MessageBox.Show("NotifyIcon Double Clicked!");
Show();
ShowInTaskbar = true;
notifyIcon1.Visible = false;
WindowState = FormWindowState.Normal;
}
Any idea why it wont open the form afteri put it into system tray?
2 replies
CC#
Created by NullIntended on 7/18/2023 in #help
✅ issue compiling to exe
21 replies
CC#
Created by NullIntended on 7/18/2023 in #help
hey
So I have a Keyauth system set up on my program. How can I get it to load the login form? Currently it doesn't use it at all it just loads my program right away. Thanks!
9 replies
CC#
Created by NullIntended on 7/18/2023 in #help
Copy form with ui
How can I copy a form exactly as it is and put it into my current project. I have a login.cs, login.designer and the login.rsx or whatever. All I want is to import it with ui into my new project but when I add them the UI isn't there but everything else is. Thanjs
1 replies
CC#
Created by NullIntended on 7/17/2023 in #help
❔ how can I fix this?
50 replies
CC#
Created by NullIntended on 7/17/2023 in #help
❔ how to export project to .exe
Hey I have a project I'm trying to export to .exe. I see a lot of videos but their layout looks different. I have 2019 and 2022 installed. I'm using newest version of .net framework. I do not have one click which is what I think makes the .exe instead of manifests.
165 replies
CC#
Created by NullIntended on 7/14/2023 in #help
❔ images
6 replies
CC#
Created by NullIntended on 7/13/2023 in #help
❔ background image
Hey guys. So I seem to crash my program every time I add a background image. Any Idea how to fix it? Vs2022
7 replies