Run .exe Inside The Form?
Oct 23, 2010I need to dome something like this.
[URL]
I need to run, for example, firefox.exe inside my own form.? I am using Visual Basic 2010. Can you please post the source code for that?
I need to dome something like this.
[URL]
I need to run, for example, firefox.exe inside my own form.? I am using Visual Basic 2010. Can you please post the source code for that?
The following code does create a form within a form and does place NotePad inside the child form. You have to manually start NotePad prior to execution (I work on that later) but the code does workŠ My problem is now I want to manipulate the properties of notepad i.e. focus, size, location, etc. but I cannot figure out how to reference notepad and its properties.
[Code]...
i am asking about using the progress bar into the status bar to move when i load any child form inside the MDIParent form.
View 1 RepliesThere's a richtext box in Form 2 and a WebBrowser in Form 1. The richtext box contains several hyperlink. How can I navigate the WebBrowser in Form 1 by clicking the links inside the richtext box in Form 2.
View 4 RepliesInside a form, I would like to display a pdf file which is already available in my resources (template file "untitled"). In this pdf file, I have some fields which get their values from some texboxes in another form. My aim is, when the user triggers the button to call this form, it should insert the values inside the pdf file and display the output pdf inside the form.I have written the code to an extend but could not finish it myself after my many trials... Now here are the two things I cannot manage:I can use a directory to read the template pdf "untitled1.pdf". But my aim is to use the file inside my resources. can save the output file in a directory but this is not I want to do. I want to display the output pdf.
View 1 RepliesHow does Visual Studio and other similar programs display a form in their IDE? Is it possible to achieve the same or a similar effect using C# or VB.NET?
View 3 RepliesIn MDIParent, in my formload in MDIParent, one form is load. And i want the form when i click a button, there is another form will be loaded INSIDE the MDIParent?
View 4 Replieshow to minimize child form inside of parent mdi form in vb.net? I change the property of "IsMdiContainer" to "True". but when i minimize parent mdi form, it is not minimize the child form.
View 2 RepliesI have a MDI form containing 2 other forms that I first created via GUI and than manually added to the MDI form.Form1 = MDI formForm2 = Form containing a WMP and buttonForm3 = Form containing a butoon. This form's opacity is set to 50%, to make it semi invisible.My MDI Form looks like this
Public Class Form1
Dim f As New Form2
Dim g As New Form3
[code].....
I have the main Form, Form1, and when I press a button, I want it to load another form, centered inside the other form The best example I have is something like Photoshop. When a popup box comes up, it is centered by the main window.
[Code]....
I would like to place a form inside of a form, how would I do that?It would be like photoshop, where the tools form is inside the main form, or the filter form is inside the main form.
View 9 Repliesopen form inside other form
View 3 RepliesI'm trying to figure out the size of the inside of a formLike the size of a form minus the borders.The code would be something like, [code]
View 2 RepliesHow i can Put any Application inside my form to run when i open my form
View 7 RepliesI'm using the VS 2010-Net 4.I have develop an usercontrol that is compiled on one DLL and when I reference this DLL in other applications the usercontrol doesn't look like it was desined. It looks all wrong.
In the same project of the usercontrol if I put the control inside of a form there looks the way it supose to but in other projects as reference doesn't.
I'm using a printcreen function where I use X and Y to set where the screenshot will be taked. But the problem is that it uses the X and Y from the entrie screen. I only want it to use it inside the form.E.g the 0, 0 shouldn't be the in the top left corner of the screen, it should be the top left corner of the form.
View 8 RepliesI need to call a form from a string inside a dll. I write the following code. The form was shows but the control on the form was not diplayed.
Private Sub tv_main_AfterSelect(sender As System.Object, e As System.Windows.Forms.TreeViewEventArgs) Handles tv_main.AfterSelect
Dim strQuery As String
[Code].....
how to check if a picturebox is inside a form?
View 7 RepliesHow to determine whether form is it inside the desktop?
View 3 Repliesdifference between the Dim and Private inside a form class?
View 3 RepliesI have a form called Form1. wherein Form1 has a split panel container. on the right side of Form1 is a web browser window. the right side are the buttons. one button there is calling another form. but there's a problem on this Form called Form2. I have google earth EXE and it's component files together with the same folder of the project. The Form2 will call the googleearth.exe file now... I know the program syntax
[Code]...
I have a program that when executed from a command prompt, opens a qwin window and in that window has a command like window that displays the status of my software as it runs its mathimatical equations.
If I use a GUI to act as my command window for the execution of my software, can I have another form that has the qwin in it?
I know that you can use this code for the position.x of the mouse:
System.Windows.Forms.Cursor.Position.X
but how will i detect the position.x of the mouse inside the form? i mean counting 0,0 from the edge of the form not the screen...
So i have a "game", and the login screen for the game is built into a panel. When you click the load button the panel shows up inside the form, and you are able to type in your username and password. what i am trying to do is make it so the user is able to drag that login panel anywhere inside the game form; just to make it a bit more advanced then just a fixed spot.
View 5 RepliesHow do i open, for example .exe file, when i click the button, but not in new window, in my VB form? I have no idea how to do that .
View 12 Repliesi want to know how I could run a Csharp form from a VB project by pressing on a button.
View 6 RepliesI have created what amounts to a progressbar which is launched using a backgroundworker. So all is well the main UI/process is doing its thing and the progressbar is ticking away. What I would like to do is update some text that is in the progressbar. So when the main UI/process finishes one of its tasks I want to update a message in the progressbar. NOT have the progressbar update the main UI/process but rather have the main UI update the progressbar.
View 7 RepliesI have an application (hyperterminal) that I have loaded inside of a form. I know how to use it when the application is open outside of the form but how do I use appactivate to interact with it inside the form?
View 4 RepliesI have a user control in vb.net application.and i have a form in vb 6.
so in my vb.net applciation to this user control i need to mention the vb 6 form as its parent.
Means when i run a vb6 application i should see this user control as a part of that form.
I would like a method that opens a form which has a textbox. The user then types into the text ox and click the button "OK". The method then performs an action on the userinput before returning the manipulated value to the program.
View 1 Replies