How can i Disable the Left and right Windows key in vb.net??.. my program is on fullscreen and i dont want to interrupt my users with the startup menu when they accedentaly pressed the windows key while they are using my program..
I am working on a game, it is for toddlers, they click too many times and apps are adding (running) in the memory, I need that to stop, so they can click just once and then the app is uploaded and running.
I have an application in Visual Basic Express 2008 that just has a Windows Media Player control on a blank form. In order to prevent the user from double clicking which would result in the media player full screening, I want to disable both right and left mouse clicks on the form and Windows Media Player control. Any suggestions?
how i can disable completely mouse and keyboard input on a WebBrowser object using Visual Basic 2008 i have this code:
Dim CarImp As New DirectoryInfo("C:VSEPRN") If CarImp.Exists =
[code]....
i generate a small HTML file on a hard disk, put the AxWebBrowser2 object navigate to the file, all works fine, but i need to diable all user interface on that object. If the user clicks on object, the page reloads completely and i need to avoid that behavior.
I've noticed a weird problem with VB6 apps (runtime) on the RTM of Windows 7 (replicated it on RC and Beta1 as well).Some standard controls such as the combobox and menu bar suddently do not support right to left properly.In addition, I have VBAME.DLL The VB6 program also can not property of a control change to rtl(right to left)
i'm working on an application that consists of a server running on my pc and an android application,basically i can control my pc's mouse with my anroid phone, as well as volume control, i need to implement a few other things for example, i would like to send the equivalent command for pressing the windows key and the tab key, does anyone know how to accomplish this?
My problem is that when i am using a form with maximize property who covers all the screen including start menu and status bar but whenever windows key is pressed start menu and status bar showed. so tell me how can i disable left and right windows key of keyboard.
I am trying to disable windows start menu key and Control+Esc and Alt-Tab for a Quiz project.Where user cannot press Startmenu.I was successful in disabling Ctrl+Alt+Del and Ctrl+Shift+Esc.OS is XP.
This semester I have task to build an internet kiosk software. But, I face difficulty to start it. I don't know how to disable and enable windows key, ctrl+alt+del key, and the alt+tab key. Is there anyone know how to do that??? I'm using vb.net 2008.
I have been searching everywhere for code that will disable the Alt + Tab key press, I am making a Lock PC program as a little project but I cannot find any way of disabling them.
How to disable Ctrl-Alt-Del in Windows 7 when the application loads? I'm looking for an example that disables Ctrl+Alt+Del when the app starts, and enables the combination again once it finishes.I found an example that disables the combination on Windows XP, however it doesn't seem to work on Windows 7. Why? Is it not allowed on Windows 7 to disable Ctrl-Alt-Del?Also, I'd like to know how to run an application as admin on Windows 7?
Disable aero in visual basic HowTo: How to programatically disable the Windows Aero theme for standalone ArcGIS applications
C# - Enable / Disable DWM Composition (Aero)
Any of you whiz bang kids know how to accomplish this with VB6? (I realize this is not a VB6 forum but just curious if any of you VB.NET programmers know how to translate this into VB6 Basically, this code ported to VB6
[DllImport("dwmapi.dll", PreserveSig = false)] public static extern int DwmEnableComposition(bool fEnable); static void Main(string[] args)
How to disable all combination key of windows, I managed to disable taskmanager and altf4, however failed to find disable all windows keys, alt esc. alt space and etc. I don't have any API background.
I am trying to figure out how to make a .SubString get the characters from right to left not left to right.Say if a user enters 123456789 in text box 1 and I use textbox1.text.SubString(0,2) it will display 12. But, I want it to get 89.I do not want it to get 98, but 89. I tried textbox.text.substring (0, -2) but that just gives an error.So if Gold is entered it gets ld
I got a panel that i am adding labels to. I have autoscroll enabled on it so when they fill the viewable space it scrolls. but i need to put the labels to the left unviewable space(when left scroll is already at 0) The label is placed but i dont get the scroll bars and i cant force it to scroll to a - value.
Is this even possible? Same thing with UP.
Or is the Scroll only limited to Bottom and Right?
I have an application than disables the screen saver temporarily in order to run a slide show. I use this to turn it on or off:
i = SystemParametersInfo(SPI_SETSCREENSAVEACTIVE, active, Nothing, SPIF_SENDWININICHANGE)
This works fine in XP. In Windows 7, it disables the screen saver properly. However, when it is enabled again, at the normal time for the screen saver to come on, the system asks for a password instead of showing the screen saver.From this time on until the screen saver settings are adjusted in the control panel, the password screen is displayed in place of the screen saver.Is there something else I should be doing for Windows 7? I understand that SPI_GETSCREENSAVEACTIVE is not supported in Windows 7, but SPI_SETSCREENSAVEACTIVE is supposed to be.
how can I disable the start menu! Or completely shut down the entire "explorer" in Windows Windows Mobile 6.1, so that users can not go out of my program.I have try [URL], but then Windows Mobile 6.1 hang.
what the code would be to have a low level keyboard hook to disable a key from all windows and applications while the program is loaded? in this case the key is
Quote:
But only wile a radio button is selected called rb1 anyone got an idea of what the code would be ?
also it would also be good if when a seccond radio button is selected called rb2 that the key gets replaced with the key / text in textbox1 however just the 1st bit would do nicely for me
How you execute the disable function of automount through mountvol in windows XP? The mountvol for XP is different from windows 7 where win7 has the mountvol /n. how to do that?
I am facing one issue in my VB.net application. In my application I want to disable the close button in all my windows. I am doing this by following code. But the real issue is while I am minimized and maximized the window the close button is getting enabled to the end user. How to permanently disable the Close window.
Public Class CloseButton Private Declare Function GetSystemMenu Lib "user32" (ByVal hwnd As Integer, ByVal revert As Integer) As Integer