Windows - Enable Control Of Another Application With User32
Sep 5, 2009
I was wondering if there was a function in user32 that could enable a hwnd control if it is disabled (grayed out) If I know the handle then can I do this? Also, if it is a menuitem, can it be done too?
View 1 Replies
ADVERTISEMENT
Jun 20, 2012
I have a small application I have developed to just put in some text into another applications input box, and it works perfectly!..... On windows 7. When I try to run the application the exact same way on windows xp the entire computer freezes for a little bit of time, then after it continues to run my application it doesn't insert any text to the applications textbox. I am not sure entierly what could cause this. Both are 32-bit and are running the same version of visual studio. Here is the code that I use. modApi.vb
[Code]...
View 8 Replies
Feb 1, 2010
I have a need to open 10+ Unix windows and run 5 or 6 commands on each window. I would like to set up a VB application with a menu so that I can select which Unix windows to open, and which commands each window needs to run. What VB 2008 commands (1)run otherapplications on the same PC; (2) set the focus to another window (3) allow a VB application to send acommand scriptthat will be used by the Unix window as if
View 1 Replies
May 22, 2012
The following screenshot was taken from a web based application developed using vb.net. Do we have similiar in windows application form? The program generates the rows from database and represent them in suitable controls such as combo box, text box or just label.
View 1 Replies
May 15, 2009
I created my user control for email validation in windows application(C# language).I am using it in the form, if the user leave that textbox it ll show message "E-Mail expected",if its correct value, then it ll be stored in another textbox. How can i retrieve values from the user control into textbox.
View 4 Replies
Dec 24, 2009
I am looking for a contol either listbox or listview to support my requirements. Basically how my application looks is:
[Code]....
Having said these things. I used to program in VC++6, VB6. But using those version now seems not realistic now as I lost touch. But if I have to use the latest 2008 versions, for which I do not have any experience seems scary. So, If you are reading this , and you have got some experience in these fields or using controls that support my requirement, can you please let me know which programming language or IDE and Control should I use to develop this application. PS: the image is made using mspaint and does not represent actual program.
View 1 Replies
Aug 4, 2010
I have a VB windows application and I need a way to control input output from this windows application to a batch file.The batch script is quite complex so converting to a VB console application is out of the question because it will too much time.An simplified example is this:I have this batch file test.bat(just for example)
@echo off
set /p choice=name : %choice%
echo Hello %choice%!
In this batch file the user input the name which is then stored in a variable and after the user press enter on the screen will appear Hello + user input.
1. Is it possible to enter the name in a textbox from the windows form and by pushing a send button pass the name to the batch application and then the batch file to continue the operation of displaying the Hello message?
2. After the batch file finishes the operations it will open another console windows (3) with status of the various operations that take place on the system(in my case connected users to a server)Is it possible to hide this child console windows that are generated after my main .bat application finished the operations of opening connections?Can this be done from the windows application or I need to modify the .bat script?
3. Is there a way to collect the console windows output in a textbox from the windows application?One idea that came to me was to redirect the console output to a textfile and then read the textfile in the VB application but I want to know if there is another way.
4. Is it possible to hide this batch file inside the windows application exe?
View 2 Replies
Aug 4, 2010
I have a VB windows application and I need a way to control input output from this windows application to a batch file.
The batch script is quite complex so converting to a VB console application is out of the question because it will too much time.[code]...
1. Is it possible to enter the name in a textbox from the windows form and by pushing a send button pass the name to the batch application and then the batch file to continue the operation of displaying the Hello message?
2. After the batch file finishes the operations it will open another console windows (3) with status of the various operations that take place on the system(in my case connected users to a server)
Is it possible to hide this child console windows that are generated after my main .bat application finished the operations of opening connections?
Can this be done from the windows application or I need to modify the .bat script?
3. Is there a way to collect the console windows output in a textbox from the windows application?
View 3 Replies
Dec 7, 2010
It's usual to see hoe to build a player with the AxWindowsMediaPlayer.
But in this occasion, I'm interested in control de Windows Media Player from Windows 7 with my own application.For example, I want to create a button that is able to pause or play the video that I'm watching with the WMP.
View 10 Replies
Oct 5, 2011
I have windows application in .net framework 4. I want to display PDF file in PDF Viewer Control. I tried to user AxInterop.AcroPDFLib.dll (provided by Adobe), but as my application runs on 64 bit, it gives exception at run time.
View 5 Replies
Dec 9, 2009
I have a vb windows application with 2 forms, where form2 is called from form1 using form2.showdialog()
I added a web browser control to form2, and I'm getting the following error at the point where form2 is called:
Current thread must be set to single thread apartment (STA) mode before OLE calls can be made. Ensure that your Main function has STAThreadAttribute marked on it.
I tried:
1) adding STAThread() to the form_load()
2) I added a module to my application, and created a sub main(), with the STAThread attribute applied to it
3) I marked the sub startup() with STAThread()
View 1 Replies
Jun 1, 2009
I am writing an application that puts a computer in hibernation mode (Application.SetSuspendState). I have noticed that there exists a specific option that needs to be enabled for the machine to hibernate correctly and that is found in Control Panel--> Power Options --> Hibernate Tab (if this option is not checked then the machine goes into stand by mode rather than hibernate) Is there a way to programmatically check the status of the "Enable Hibernation" check box and check/uncheck it?
View 2 Replies
Nov 18, 2011
I have tried to control another application to automate a process we do 100 times a day. It is simple enough, a few key strokes is all but I have been foiled in all attempts
View 1 Replies
May 30, 2012
I study automation engeering!I am in the last year of my studies and i choose for the final project <<Smart house Design And Controlling>>.I would like to create a application on windows to present the plan of the house and control it I decide to use the Visual Basic Express!If someone can help me on this project.
View 1 Replies
Jun 6, 2010
I am upgrading my application from vb6 to vb.net.I used to populate my data in datalist control in vb6 forms. I am not finding it in vb.net windows form application. Which one control is the equivalent to it?
How can i list my data in that control?
just like: I had a table with data like id, name
I want the name should be the displayed column and id the bound column? how can i do that
View 1 Replies
Jan 11, 2010
I am writing a windows form application, where I want to have a WebBrowser control, and in that control, I want to show a Google map programmatically generated (I mean, not just specify a URL to the browser).
View 1 Replies
Apr 8, 2010
I keep getting a error message that says my windows script host is disabled.
View 5 Replies
Nov 14, 2011
I've search the net in order to create a custom control but nothing I find is worth looking at, The main thing I want to do is create a skinengin via DLL and import it in my vb 2010 then using or creating some sort of skin builder where I can create a full setting file which contains all the details of the customization regarding the Form(Look, Feel and the controls such as a menu), I have used Iriskin and multiple apps doing this for me and when a user installs my application they still recieve a message about buying the registered DLL file, I would like to create it completely from scratch.
View 2 Replies
Jan 18, 2010
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.
View 2 Replies
Jun 16, 2011
In my Windows Form's application, I enable and start a Windows Form's Timer for a state machine which interacts with various User Controls. In one part of the state machine where an external device is being rebooted, I need to disable the User Interface (a User Control's UI) for the time it takes the device to reboot. The problem exists in that once I use System.Threading.Sleep, the timer that fires the State Machine stops and never restarts. I even re-enabled the Timer and re-started it after the Sleep command but to no avail. Is this expected operation or should a Windows Form's Timer be able to restart after a Sleep?
Snippet of code from a step in the state machine below:
Cursor.Current = Cursors.WaitCursor
MainForm.Enabled = False
System.Threading.Thread.Sleep(8000)
MainForm.Enabled = True
Cursor.Current = Cursors.Default
MainForm.t1.Enabled = True
MainForm.t1.Start()
View 4 Replies
Oct 4, 2011
Im using a listview item in visual basic to display items. How to enable the Windows Default Hot-Track in listview??
View 3 Replies
Jan 18, 2010
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.
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.
View 3 Replies
Feb 14, 2010
I have 2 button in ASP.net, when i pressed button1 my div innerhtml changed to some value. and when I press the button2 my datagrid will display in the same div.
how can i display the datagrid inside the div at runtime.
View 1 Replies
May 5, 2009
how to enable flash for the web browser control? (Visual Basic 2008 Express) I have it installed on my computer, but the program isn't tapping into it for some reason..... I'd really like to know, as this is probably the only major undesirable my browser still has...
View 11 Replies
May 30, 2010
I moved this from the debugger thread as I got no responses.This may be a better area.I have a problem enabling a Scrollbar on a custom control I have created.The custom control has one component,the scrollbar and an area that I draw upon from an internal datasource.Think something like a textbox.In certain instances,I want the scrollbar to be enabled. The Custom Control's job is to do this when the situtation is appropriate.I have a very simple piece of code here:
If <logic conditions> Then
DataScroll_vscrollbar.Enabled = False
Else[code].....
This code is in my OnPaint routine (along with a bunch of other drawing related stuff).Essentially I've determined that there is more stuff to display than the area of the control and need to turn on the scrollbar to give the user of the control the ability to see later stuff.With the exception of this funny behavior, the control is doing exactly what I want.I step through this and have a watch set.I can step through the set to True, but the Enabled value doesn't change.Even the EnabledChanged event fires (Doesn't on the set to False because it's already False), but the Enabled value is still False.I don't know why.Now here is the really interesting part and may give somebody an idea about what's happening: I can change the Enabled value via the debugger (via the Watch) to True.The EventChanged will fire, and from that point on I can set the Enabled value to either True or False and back again with no problems.
I even did some really crazy testing to see if perhaps the debugger just wasn't showing something.
did something like:
Dim idiot as boolean = false
if <logic> then
idiot = true[code]....
I have set the values to Minimum and Maximum, but the problem remains.
View 5 Replies
Oct 30, 2011
I have a RichText control on my form. In the control when running, the tab key does not do anything. I would like to enable it and set the size of the tab. How can I do this?
View 1 Replies
Aug 11, 2010
I'm trying to enable the screensaver from within my application I found this code on the internet:
Declare Auto Function SendMessage Lib "user32.dll" (ByVal hWnd As IntPtr, ByVal Msg As UInt32, ByVal wParam As UInt32, ByVal lParam As UInt32) As Int32
Const WM_SYSCOMMAND As UInt32 = &h212
[Code]....
But it's giving me an error "Expression expected" on the three Const lines right at the & character.
View 1 Replies
Oct 23, 2009
this is probably pretty simple, but I've noticed that when trying to start the Windows Media Player (AxWMPLib), it takes the "player.url = path", and only then does the player's Play-button get activated. Thing is, I want to play sound files taken from the URL of a column in a database. And when clicking on that row, the mediaplayer should update, making it's play-button clickable.
View 1 Replies
Jun 7, 2011
I want to enable the 'ReaderMode' for paning/scrolling my control in .Net. Closest thing I found was this Win API function .url....However, I'm not sure how to call this one, in the documentation it says, This function is not declared in any public header. To use it, you must access it as ordinal 383 from Comctl32.dll.I've never called a function that didn't have a name before, can anyone describe how to do this in VB.Net?
View 1 Replies
Aug 19, 2010
I am trying to enable/disable a date time picker control based upon the selected value of a combo box. The combo box is linked to a dataset here:
>Start Code
'Load Disposition Combo
cmDisposition.DataSource = dsFFDIlu.Tables(0)
[code]....
I am getting the error:
Invalid Cast Exception : Operator '=' is not defined for type 'DataRowView' and type 'Integer'.
The dataset 'DIID" field is obviously an integer.
View 11 Replies