Forum > Coding >

How to remove window border

Posts: 250

Threads: 111

Joined: Jun, 2018

Reputation: 5

Posted

Synapse has that custom border or no border. But I want to make something like that because I don't know how to customize it. It's insanely ugly to have that border. It drives me insane to see it >:C
  • 0

Exploits I own: Synapse, Electron

Scripts I've made: Aimbot GUI, Draco Admin

Scripts I'm working on: More game ESPs

Posts: 212

Threads: 42

Joined: May, 2018

Reputation: 0

Replied

click on the border and type this.

this.FormBorderStyle = FormBorderStyle.None;


if that doesn't work go to properties and find border style and put none.
  • 0

Posts: 250

Threads: 111

Joined: Jun, 2018

Reputation: 5

Replied

It works, but I get a popup saying it will startup without debugging. Also, my exploit won't move without it ;-;
  • 0

Exploits I own: Synapse, Electron

Scripts I've made: Aimbot GUI, Draco Admin

Scripts I'm working on: More game ESPs

Posts: 212

Threads: 42

Joined: May, 2018

Reputation: 0

Replied

Put a text Box at the top of your Exploit and make it non usable and do this

 public partial class Form1 : Form
    {
        ExploitAPI api = new ExploitAPI();
        public Form1()
        {
            InitializeComponent();
        }
        // Sets the interpret options and boolean option
        int mouseX = 0, mouseY = 0;
        bool mouseDown;

then click on Events scroll down to mouse and double click MouseDown


then type this

mouseDown = true;

then go back to events, then to mouse then double click mouseMove then type

            if (mouseDown)
            {
                mouseX = MousePosition.X - 40;
                mouseY = MousePosition.Y - 40;

                this.SetDesktopLocation(mouseX, mouseY);
            }
        }

then go back  to events and Mouse and double click on MouseUp then type

mouseDown = false;
  • 0

Added

Here are some images

https://imgur.com/a/Jt3w5sa
  • 0

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )