Jump to content
Xtreme .Net Talk

bellportal

Members
  • Posts

    5
  • Joined

  • Last visited

Everything posted by bellportal

  1. What are kernel handlers?
  2. Oh. It is for a pass-protected screensaver...
  3. Sorry, the users are logging on to our domain 'DOMAIN'. I want to be able to find out their logon group... Mike
  4. I am writing a programme with two different modules for my school: One is the teacher's/staff section and one is the student's. All our users are split into windows groups either DOMAIN\Staff or DOMAIN\Pupils. How can I use VB.NET to determine which of these groups the currently logged-on user belongs to? Mike
  5. Hi, I have migrated from Win ME into Win XP (therefore VS 6 to VS.NET 2003 Pro.) and need some help. I only have knowledge in VB and nothing else - please help! For a screensaver programme in VS 6, I had the following: Public Const SPI_SCREENSAVERRUNNING = 97 Public Declare Function SystemParametersInfo Lib "user32" Alias "SystemParametersInfoA" (ByVal uAction As Long, ByVal uParam As Long, ByRef lpvParam As Any, ByVal fuWinIni As Long) As Long '------------------------------------------------------- 'ENABLE/DISABLE CODE '------------------------------------------------------- 'ENABLE: 'Call SystemParametersInfo(SPI_SCREENSAVERRUNNING, True, lPrev, 0) 'DISABLE: 'Call SystemParametersInfo(SPI_SCREENSAVERRUNNING, False, lPrev, 0) In Win ME, the enable and disable code worked fine - keys like CTRL+ALT+DEL were blocked out, however, in XP, the code doesn't work! What do I need to change? Mike
×
×
  • Create New...