Create an account

Very important

  • To access the important data of the forums, you must be active in each forum and especially in the leaks and database leaks section, send data and after sending the data and activity, data and important content will be opened and visible for you.
  • You will only see chat messages from people who are at or below your level.
  • More than 500,000 database leaks and millions of account leaks are waiting for you, so access and view with more activity.
  • Many important data are inactive and inaccessible for you, so open them with activity. (This will be done automatically)


Thread Rating:
  • 690 Vote(s) - 3.56 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Few useful codes that people may like (stop Alt-F4, start up process start)

#1
hey no matter what forum you go to i always see threads like How to add to start up or how to disable alt-f4 or even how to make a program run so here they are

disable ALT-f4
--------------------------------------------------------------------------------------------------------------
If e.KeyData = Keys.Alt + Keys.F4 Then
MessageBox.Show("Error 33589", "Security Unable to close", MessageBoxButtons.OK, MessageBoxIcon.Exclamation)
e.Handled = True
End If

--------------------------------------------------------------------------------------------------------------

add to start up folder
----------------------------------------------------------------------------------------------------------

Dim startup
startup = Environment.GetFolderPath(Environment.SpecialFolder.Startup)
System.IO.File.Copy(Application.ExecutablePath, startup & "\YourProgram.exe")

----------------------------------------------------------------------------------------------------------

add to current user start up
----------------------------------------------------------------------------------------------------------
Dim filename As String
Dim filepath As Object
Dim registrykey As Object

filename = "Program_name"
filepath = Path.GetFullPath(filename)
registrykey = CreateObject("wscript.shell")

registrykey.regwrite("HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\run\Program_name", filepath)
----------------------------------------------------------------------------------------------------------

program start (easily edited)
----------------------------------------------------------------------------------------------------------

'if a button
process.start("chrome")

'or type and start

if textbox1.text = "Google chrome" then
process.start("Chrome")
end if
----------------------------------------------------------------------------------------------------------

Reply



Forum Jump:


Users browsing this thread:
1 Guest(s)

©0Day  2016 - 2023 | All Rights Reserved.  Made with    for the community. Connected through