Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Windows XP Crew v. Quick Help

  • 01-12-2006 7:12pm
    #1
    Registered Users, Registered Users 2 Posts: 7,065 ✭✭✭


    Is there anyway to set up a hotkey to do something like Hide/UnHide hidden folders......i hate having to do it the normal way


    lazy as **** ftl


Comments

  • Moderators, Music Moderators Posts: 23,363 Mod ✭✭✭✭feylya


    Why not just leave them unhidden?


  • Registered Users, Registered Users 2 Posts: 7,065 ✭✭✭Fighting Irish


    feylya wrote:
    Why not just leave them unhidden?

    Thanks for your help, much appreciated :rolleyes:


  • Moderators, Music Moderators Posts: 23,363 Mod ✭✭✭✭feylya


    No, I am actually asking you. Why do you hide them again?


  • Moderators, Education Moderators, Music Moderators Posts: 10,686 Mod ✭✭✭✭melekalikimaka


    my sarcasm senses are going off that chart :p


  • Registered Users, Registered Users 2 Posts: 7,065 ✭✭✭Fighting Irish


    feylya wrote:
    No, I am actually asking you. Why do you hide them again?

    Cos i don't want anyone to see the pics of your ma ;)


    Na seriously though, has anyone got a clue if its possible to set up a hotkey on the keyboard to do this?


  • Advertisement
  • Moderators, Music Moderators Posts: 23,363 Mod ✭✭✭✭feylya


    Set objFSO = CreateObject("Scripting.FileSystemObject")
    Set objFolder = objFSO.GetFolder("C:\WHATEVER")
    If objFolder.Attributes AND 2 Then
     objFolder.Attributes = 0
    End If
    If objFolder.Attributes AND 0 Then
     objFolder.Attributes = 2
    End If
    

    Save that as a .vbs file then setup a hot key to the file. Should work.


  • Registered Users, Registered Users 2 Posts: 7,065 ✭✭✭Fighting Irish


    feylya wrote:
    Set objFSO = CreateObject("Scripting.FileSystemObject")
    Set objFolder = objFSO.GetFolder("C:\WHATEVER")
    If objFolder.Attributes AND 2 Then
     objFolder.Attributes = 0
    End If
    If objFolder.Attributes AND 0 Then
     objFolder.Attributes = 2
    End If
    

    Save that as a .vbs file then setup a hot key to the file. Should work.

    :eek: seriously?

    Nice i hope this works, thanks mate


  • Moderators, Music Moderators Posts: 23,363 Mod ✭✭✭✭feylya


    Probably OTT but it's the only thing that I can think of that would enable and disable hidden. Haven't tested it but it's based from a Microsoft example.


  • Registered Users, Registered Users 2 Posts: 7,065 ✭✭✭Fighting Irish


    feylya wrote:
    Set objFSO = CreateObject("Scripting.FileSystemObject")
    Set objFolder = objFSO.GetFolder("C:\WHATEVER")
    If objFolder.Attributes AND 2 Then
     objFolder.Attributes = 0
    End If
    If objFolder.Attributes AND 0 Then
     objFolder.Attributes = 2
    End If
    

    Save that as a .vbs file then setup a hot key to the file. Should work.

    ?

    :o Dunno how to even set up a hotkey


  • Moderators, Music Moderators Posts: 23,363 Mod ✭✭✭✭feylya


    Create a shortcut to the file, right click, properties, shortcut tab, click in the key field and press your desired shortcut.


  • Advertisement
  • Registered Users, Registered Users 2 Posts: 7,065 ✭✭✭Fighting Irish


    I don't think its working


  • Moderators, Music Moderators Posts: 23,363 Mod ✭✭✭✭feylya


    ****, I just realised it's only for one folder. Gimme a minute and I'll see what I can do.


  • Registered Users, Registered Users 2 Posts: 7,065 ✭✭✭Fighting Irish


    Anyone else have any suggestions?


  • Closed Accounts Posts: 20,346 ✭✭✭✭KdjaCL


    Create a macro.



    kdjac


  • Registered Users, Registered Users 2 Posts: 7,065 ✭✭✭Fighting Irish


    KdjaCL wrote:
    Create a macro.



    kdjac


    Details? :o


Advertisement