Click here to Skip to main content
15,892,746 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionDiasble form titlebar move Pin
JonnieR5-Apr-09 10:30
JonnieR5-Apr-09 10:30 
AnswerRe: Diasble form titlebar move Pin
0x3c05-Apr-09 10:41
0x3c05-Apr-09 10:41 
AnswerSQL Server Management Pin
dlo_morea4-Apr-09 15:20
dlo_morea4-Apr-09 15:20 
GeneralRe: SQL Server Management Pin
Christian Graus4-Apr-09 16:09
protectorChristian Graus4-Apr-09 16:09 
GeneralRe: SQL Server Management Pin
Jon_Boy6-Apr-09 9:46
Jon_Boy6-Apr-09 9:46 
QuestionHDN_TRACK (SysHeader32 ) notification doesn't send by 1 pixel step Pin
VBAdvisor4-Apr-09 14:45
VBAdvisor4-Apr-09 14:45 
AnswerRe: HDN_TRACK (SysHeader32 ) notification doesn't send by 1 pixel step Pin
VBAdvisor5-Apr-09 16:05
VBAdvisor5-Apr-09 16:05 
QuestionIs there anny way to turn off webbrowser navigation sound??? Pin
FeRtoll4-Apr-09 9:23
FeRtoll4-Apr-09 9:23 
i spent 2 days, 48 hours on this to disable the sound but there is nooooooooooo fu***** solution i am crazy anymore!! Mad | :mad:
i to do with registry and than refresh explorer [NOTHING]
i tried rename file before navigation start and rename after [NOTHING]
i tried move and delete file [NOTHING]
i tried to delete all strings in registry with "Windows XP Start.wav" [NOTHING]
i tried even this:
<br />
Imports System<br />
Imports Microsoft.Win32<br />
Imports System.Runtime.InteropServices<br />
<br />
Module [aclickdisabler]<br />
    Dim HisSoundO, HisSoundM As String<br />
<br />
<br />
<br />
    Private Sub readKey()<br />
        On Error Resume Next<br />
        Dim oReg As RegistryKey<br />
        Dim tmpS As String<br />
        oReg = Registry.CurrentUser.OpenSubKey("AppEvents\\Schemes\\Apps\\Explorer\\Navigating\\.Current")<br />
        tmpS = oReg.GetValue("", "").ToString '%SystemRoot%\media\Windows XP Start.wav<br />
        oReg.Close()<br />
<br />
        If tmpS = "" Then<br />
        Else<br />
            If tmpS.Contains(":\") Then<br />
            Else<br />
                tmpS = "C:\WINDOWS\Media\" + tmpS<br />
            End If<br />
            HisSoundO = tmpS<br />
            HisSoundM = System.IO.Path.GetDirectoryName(HisSoundO) & "\" & System.IO.Path.GetFileNameWithoutExtension(HisSoundO) & ".blocked"<br />
        End If<br />
        <br />
    End Sub<br />
<br />
    Public Sub ED_Navigate_Sound(ByVal Enabled As Boolean)<br />
        'On Error Resume Next<br />
<br />
        Dim oReg As RegistryKey<br />
        oReg = Registry.CurrentUser.OpenSubKey("AppEvents\\Schemes\\Apps\\Explorer\\Navigating\\.Default", True)<br />
        oReg.SetValue("", "C:\Windows\f***in_non_exsisting_file.wav")<br />
        oReg.Close()<br />
<br />
        readKey()<br />
<br />
        'MsgBox(HisSoundO + "-" + HisSoundM)<br />
        If Enabled = True Then<br />
            System.IO.File.Move(HisSoundM, HisSoundO)<br />
            'My.Computer.FileSystem.RenameFile(HisSoundM, HisSoundO)<br />
            'Dim oReg As RegistryKey<br />
            'oReg = Registry.CurrentUser.OpenSubKey("AppEvents\\Schemes\\Apps\\Explorer\\Navigating\\.Current", True)<br />
            'oReg.SetValue("", HisSound, RegistryValueKind.ExpandString)<br />
            'oReg.Close()<br />
        ElseIf Enabled = False Then<br />
            System.IO.File.Move(HisSoundO, HisSoundM)<br />
            'Kill(HisSoundO)<br />
            'My.Computer.FileSystem.RenameFile(HisSoundO, HisSoundM)<br />
            'Dim oReg As RegistryKey<br />
            'oReg = Registry.CurrentUser.OpenSubKey("AppEvents\\Schemes\\Apps\\Explorer\\Navigating\\.Current", True)<br />
            'oReg.SetValue("", "", RegistryValueKind.ExpandString)<br />
            'oReg.Close()<br />
        End If<br />
<br />
    End Sub<br />
<br />
End Module [NOTHING]<br />

i tried all buth it allways plays f***in default navigation "čing čing" Frown | :( waaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa Dead | X|

anyone knows a solution? Confused | :confused: WTF | :WTF:

FeRtoll Software.net
------------
E-Mail me
WebPage

AnswerRe: Is there anny way to turn off webbrowser navigation sound??? Pin
FeRtoll4-Apr-09 9:41
FeRtoll4-Apr-09 9:41 
AnswerRe: Is there anny way to turn off webbrowser navigation sound??? Pin
FeRtoll4-Apr-09 9:56
FeRtoll4-Apr-09 9:56 
AnswerRe: Is there anny way to turn off webbrowser navigation sound??? Pin
FeRtoll8-Apr-09 10:39
FeRtoll8-Apr-09 10:39 
QuestionWindows Explorer menus Pin
JR2124-Apr-09 4:46
JR2124-Apr-09 4:46 
AnswerRe: Windows Explorer menus Pin
LloydA1114-Apr-09 12:43
LloydA1114-Apr-09 12:43 
GeneralRe: Windows Explorer menus Pin
JR2124-Apr-09 20:47
JR2124-Apr-09 20:47 
QuestionVBA Modeless form that modifies code module is lost after call completion? Pin
DonQuiyote4-Apr-09 4:13
DonQuiyote4-Apr-09 4:13 
QuestionHow to show the changes Updated by other user on network Pin
ejaz_pk3-Apr-09 22:17
ejaz_pk3-Apr-09 22:17 
AnswerRe: How to show the changes Updated by other user on network Pin
Eddy Vluggen4-Apr-09 0:13
professionalEddy Vluggen4-Apr-09 0:13 
QuestionMicrosoft Access Database Backup by vb 6.0 Pin
ejaz_pk3-Apr-09 22:11
ejaz_pk3-Apr-09 22:11 
AnswerRe: Microsoft Access Database Backup by vb 6.0 Pin
Eddy Vluggen4-Apr-09 0:02
professionalEddy Vluggen4-Apr-09 0:02 
AnswerRe: Microsoft Access Database Backup by vb 6.0 Pin
Anubhava Dimri6-Apr-09 20:41
Anubhava Dimri6-Apr-09 20:41 
Questionhow to connect mysql DB ? Pin
JC.KaNNaN3-Apr-09 20:50
JC.KaNNaN3-Apr-09 20:50 
AnswerRe: how to connect mysql DB ? Pin
Christian Graus3-Apr-09 23:17
protectorChristian Graus3-Apr-09 23:17 
GeneralRe: how to connect mysql DB ? Pin
akhilonly0075-Apr-09 22:36
akhilonly0075-Apr-09 22:36 
Questionhow to print same page itself (without going report page) ? Pin
JC.KaNNaN3-Apr-09 20:44
JC.KaNNaN3-Apr-09 20:44 
AnswerRe: how to print same page itself (without going report page) ? Pin
Anubhava Dimri3-Apr-09 22:07
Anubhava Dimri3-Apr-09 22:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.