SISTEMA INICIAR COM O WINDOWS

JONATHANSTECKER 16/09/2010 14:14:28
#353127
Como fazer meu sistema iniciar com o Windows?
Gostaria de por essa opção como configuração.
JWCELYO 16/09/2010 14:26:02
#353131
Resposta escolhida
veja código abaixo caro JONATHANSTECKER,

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
GetRegistro()
End Sub

Private Sub Registro(ByVal Path As String)
Dim regKey As RegistryKey
regKey = Registry.CurrentUser.OpenSubKey([Ô]Software\Microsoft\Windows\CurrentVersion\Run[Ô], True)
regKey.SetValue([Ô]seuapp[Ô], Path)
End Sub

Private Sub GetRegistro()
Dim path As String
Dim regKey As RegistryKey
regKey = Registry.CurrentUser.OpenSubKey([Ô]Software\Microsoft\Windows\CurrentVersion\Run[Ô], True)
Path = regKey.GetValue([Ô]seuapp[Ô])

If Path = Application.StartupPath & [Ô]\[Ô] & My.Application.Info.AssemblyName Then

Else
Registro(Application.StartupPath & [Ô]\[Ô] & My.Application.Info.AssemblyName)
End If
End Sub
JONATHANSTECKER 16/09/2010 14:52:51
#353133
JWCELYO,

E para retirar esse registro?

Private Sub Inicializar(ByVal Valor As Boolean)
If Valor Then
GetRegistro()
Else

End If
End Sub
JWCELYO 16/09/2010 15:26:12
#353135
então JONATHANSTECKER do jeito que ele esta ai sempre que sua aplicação iniciar verifica se seu executável esta realmente no registro se não estive colocar de de novo registro.
JONATHANSTECKER 16/09/2010 15:57:06
#353139
Perfeito!
Tópico encerrado , respostas não são mais permitidas