VS 2008 : Open External .exe In Same Window?
Jun 28, 20091. Open external .exe in same window as application
2. Embedd a .exe in a VB application.
The .exe was not made in VB.
1. Open external .exe in same window as application
2. Embedd a .exe in a VB application.
The .exe was not made in VB.
We have an existing VB.net application. Upon an event, we need to open a browser window. I'm able to open the browser window like this:
System.Diagnostics.Process.Start("http://s3web01/suggestions?item=" + strItem + "&co=" + strOrder)
Upon another event, we need to refresh the browser window with different parameters for strItem and strOrder.
If I call the same code above, it opens a new tab in the browser window. Is there any way to refresh the same browser window that was previously opened?
how can i allow resizing of window that doesnt allow resizing,.
View 2 Repliesas title says.... ive been searching it for a long time and i couldnt find it
View 1 RepliesWhen I run project splashscreen is popup and then Logon window is run. But unfortunately when Logon window is run the splashscreen still open like maximized window and I cannot see Logon window. How to fix that problem?
View 1 Repliesi have an external form, and it has a label, which his name is: Static62 how do i read the label into my vb.net program?
View 10 RepliesI am using this code to open an Outlook 2007 application.
Dim psInfo As New System.Diagnostics.ProcessStartInfo("C:ProgramDataMicrosoftWindowsStart MenuProgramsMicrosoft OfficeMicrosoft Office Outlook 2007.lnk")
psInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Minimized
[code].....
I have a pdf that I want to be able to open when a button is clicked within the application that I have built in Visual Studio 2008 in .Net.
View 2 Repliesif you guys have used office 2003 or better( i am sure all) then you would have seen that when the help window open it causes the active windows say of MS WORD to change accordingly so that this help windows fits with it along the right side and this functionality i want to implement in my VB windows application and have no idea how to do it Also i have seen this feature in GOOGLE DESKTOP GADGETS...
i want to implement that when my application opens which ever is the active window( of any application) snaps to the left and allows my application to fir in the right hand side i am developing my application in VS 2005 using Visual Basic.
when i use the "anything.show" command, it will always open in a new window... How can i make it open in the same window?
View 11 RepliesI have both the VB and C# versions of Visual Studio 2008 Express. When I run a console application in either version, instead of the console opening in an old DOS style command window like it does in VS 2005, it actually blacks out both monitors attached to my computer and treats the entire screen real estate as the console.Anyone know how to get the app to run in a small command-type window when I run it? It's like the console is running Full Screen. If I set a break point, switch from the IDE t the console and then hit Alt+Enter it switches to the small window that I want, but I still can't figure out how to make the app start with the console that way.I could post a screenshot but it would look like a big black square...no window, no frame, just the inky blackness of frustration.
View 2 RepliesHow to open a window in the program, by clicking a button open a window, like a settings window or so...
View 11 RepliesI am trying to pass query string from one page to popup window as follow:
Dim popupScript As String = "window.open('cFinder.aspx?cName=" & c_TextBox.Text & "','', 'width=420,height=200,menubar=no,scrollbars=yes');"
If (Not Page.ClientScript.IsStartupScriptRegistered("popup")) Then
[code].....
I have create a project with one main form window and also i have to use a number of other forms as well. now i want to open these other forms inside the main window and not outside. I'm using Visual Studio .NET 2010 as developing environment.
View 1 RepliesI am trying to make a window manager and I am wanting to know how to change states (SW_HIDE, SW_SHOW) of an external window such as a firefox browser or explorer window.
View 1 Replieshow can I make start my external application "DXSETUP.exe" at center screen position using this code?
Private Sub Panel3_MouseClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Panel3.MouseClick
Try
Me.Hide()
Threading.Thread.Sleep(2000)
[code]....
I'm using createwindowex to create a button on an external window. I can use Spy++ to see all of the messages the button is sending to the parent window. The problem I'm having is catching these messages from the parent window.I've been trying a lot of different methods, and just when I think one is working, something still isn't quite right. Right now, I am using a hook dll made with c#, and it seems to be working somewhat. It seems like it is a lot more than should be needed for what I'm doing.I originally thought I could just use wndproc to catch all of the messages, but I found that it doesn't catch external windows messages(unless i'm doing something wrong).Is there anyone that can point me in the right direction to create a button on an external window, then catch the messages when it is clicked.
View 2 RepliesI need to program an application which acts like a passwordfiller.
Describtion: When i open up internet explorer a popup comes up requesting my username and password and i need a way to set my application near the popup and fill it in.
Here is what i need:
- Get Window hwnd (using find window api) *Ok
- Get Window state *Ok
- Get window Position *Help
- Get Window Length and Width *Help
- Focus on the window *Help
- Sendkeys *Ok
I have an application right now that starts a process, then opens a file associated with that process (system.diagnostics.process.start("WM.exe")), however, the way they save, there is a window within a window. It's like in photoshop cs3 when you have many windows within the big window of the application. Right now I use an api call to findwindow which is the application itself, but within that I need to find the subwindow, of which I know the apptitle, and then I need to set its windowstate to maximized. Does anyone know how this can be done? I think there's a way to hook a handle, but how does one also maximize?
View 1 RepliesSo i want to start an application with my vb.net app and it should start as a hidden process, meaning no window and nothing in the task bar, only in the task manager ofcourse.
This is what i do
Dim fov As New Process
If CheckBox2.Checked = True Then
RichTextBox1.Text = RichTextBox1.Text & vbCrLf & "* - Launching"
fov.StartInfo.FileName = ("test.exe")
[Code]...
This does not work.. I have also tried the "fov.StartInfo.CreateNoWindow = True" command which does not work either. I can live with a solution that would start the window minimized instead of totally hidden.
if I use Spy++ and pass it Finder over the controls of every desktop window I can see the Handle of each of these controls.
what Api / procedure is used to make this job?
Private Sub LinkClicked(ByVal sender As Object, ByVal e As EventArgs)
Dim link As HtmlElement = WebBrowser1.Document.ActiveElement
Dim url As String = link.GetAttribute("href")
[code]...
Okay so here's the question how do I get the links that open in a new window to open in my main webbrowser control. The above code does some, but it's not fool proof.
I had been looking for a way to move and resize an external window from my application and I came across this method: [Code] now this does not work, after looking around I many threads about how api calls in .net are different.
View 6 RepliesIm making an application that is keeping an eye on an external application that does not have an API. I'm interested in getting notified when the external application changes its main window title. My idea is to somehow register a hook that will notify my application.
View 2 RepliesKnown the external window size, it Hwnd and the x/y coordinates of the button to press, I am trying this code, like seen on the web[code]\...
View 4 RepliesI was offered this interesting scenario by a visitor of my site and have been trying a few approaches, but not seeming to get it quite right. I have a Form with a WebBrowser control (or an AxWebBrowser if that works too) and on the page loaded in the browser, is a link that uses javascript to open a new popup window.This popup window I am unable to take "ownership" of and it launches in a new instance of the user's default browser (IE for this scenario). I need to then interact with that javascript popup window which now is not part of my application. If I needed to set a value of an input box on that form, how would I accomplish that if I can't "interact" with the form?
View 1 RepliesI have an interesting issue, I'm trying to automate a data retrieval process.Currently the user goes out to a secure web site and inputs his/her username and password and then selects the ok button, they then proceed to the location where the data is located at and do a copy and paste. I have thought about using the SendKey method from VBA but everything I see says it's not reliable.I believe I have the section after the sending of the login/password completed. For the life of me I can't figure out how to automatically input the username and password and then select the "OK" button. Before anyone asks, no can't view the source code so I can't get the ID field, there is no way for me to view the source code at all I have tried multiple different options all with no luck.
View 3 RepliesHow can i stop it from showing external cmd window.this is my code
HTML
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Dim mac As New Process
[code]....
it calls a vbs script i wrote which was converted to 1.exe file.when i press the button it calls it and send keysin external window i don't want this external cmd window to show was trying to get this command to work with fail?
.UseShellExecute = False
Start("Program.exe")
This does not work
Nor thisSystem.Diagnostics.Process.Start("Program.exe")
Only this works...but I can't use the Drive path..cannot hardcode it.
System.Diagnostics.Process.Start("C:Program FilesX-ProgramProgram.exe")
So how do I start an outside Exe file from within vb net without hardcoding the path.
Vb net 2008
Is it possible to get an external application like Windows Live Messenger inside a MDI Container in my application?
View 4 Replies