Put Application Inside Form?
Dec 12, 2010How i can Put any Application inside my form to run when i open my form
View 7 RepliesHow i can Put any Application inside my form to run when i open my form
View 7 RepliesI 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 am currently working on a small drawing application and I wanted to know if it was possible to insert a paint application inside a form,like vertically dividing the form into two. On one side you have some literature and on the other side you have the application.This paint application just mimics the same Microsoft paint whereby you have an open and save option
View 2 RepliesI need to open some external applications such as notepad.exe inside the VB.NET MDI form, and also I need to make sure that there is exactly only one copy of this running always.[code]....
View 1 RepliesI have to develop an application/tool, in which one part of the form should contain web browser.(i have used web browser component ) and other is a application like visual studio. when i press enter. i should fit inside the second half of the form. the code which i have used simple shoots up an application and it runs a separate one.
[Code]...
im new to coding (started coding last month) so im a little stuck on how to do this, im making some emulation programs to learn coding with, and a part of it is to point the app to a .iso/.bin file and scan the data inside of the iso/bin to check if a file exists.[code]My issue is i cant find any class examples, or any information etc on how to code it so my application can see the data inside of the iso/bin instead of just see'ing the iso/bin file, so that i can then check the data inside the iso to see if the file exists etc.Im a novice still at coding so making a new class myself to look inside the iso/bin is to complex for me.
View 1 RepliesThe 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 previously asked this question on this forum but I'm not sure how to do this so that's why I create a new thread! this won't be a problem.
I have a form (check the img) where I have 2 panels inside of it. I have 2 labels in the first panel and in the second panel I have a custom control.
What I want to do: Detect when the mouse enters and leaves the form.I currently try to detect with the Form1_Enter event but that doesn't work since the objects in the form are positioned in such a way that the mouse never reaches the "Form" and thus only passes over the objects.
I could do something like Sub DetectEntrance() Handles Form1.Enter, Label1.Enter, Label2.Enter and such...
But that wouldn't work when detecting the mouse leaving the form. Because then the leave-sub/function would be activated as fast as the mouse leaves one of the objects and not the form itself.
Then I thought of using the Bounds.IntersectsWith function to see if the mouse is outside of the bounds but I'm not sure how to use it.
[Code]...
I'm looking for a way to create 2 submit buttons in an email, using vb.net?
View 1 RepliesHow I can run an application from inside the vb ?
View 2 RepliesI 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 Repliesi'm working on a Java app wich uses the CMD.i want to control the app completely though a forms application and so i created a invisible CMD console that starts and runs,the only problem i keep getting. is that after startup and further commands send to the CMD window doesnt work. not commands are received.heres my code
the basic functions
vb.net
Private WithEvents MyProcess As Process
Private Delegate Sub AppendOutputTextDelegate(ByVal text As String)
Private Sub MyProcess_ErrorDataReceived(ByVal sender As Object, ByVal e As System.Diagnostics.DataReceivedEventArgs) Handles MyProcess.ErrorDataReceived
AppendOutputText(vbCrLf & "Error: " & e.Data)
End Sub
Private Sub MyProcess_OutputDataReceived(ByVal sender As Object, ByVal e As System.Diagnostics.DataReceivedEventArgs) Handles MyProcess.OutputDataReceived
AppendOutputText(vbCrLf & e.Data)
End Sub
Private Sub AppendOutputText(ByVal text As String)
If outputtextbox.InvokeRequired Then
Dim myDelegate As New AppendOutputTextDelegate(AddressOf AppendOutputText)
Me.Invoke(myDelegate, text)
Else
outputtextbox.AppendText(text)
End If
End Sub
the startup that works.
VB.net
MyProcess = New Process
With MyProcess.StartInfo[code].......
i sometimes replace the textboxx2.text with a custom command like "exit".so when i press the button after entering exit for example nothing happens.but when the app starts it does gets the first 2 commands. so why is it failing at the buttons.
I need to run my console program which is made in vb.net where I will use my windows forms to run the console app?I have done this but it doesn't work.[code]I've tried to add as Existing Item or Project but it doesn't work..
View 3 Repliesi am developing a vb.net application my question is how can i access a folder inside my application ?? for example i created a folder Myfold where i store some .doc files and i want to read them from my code.
View 1 RepliesIs there any way to embed chrome inside .NET application?
At the moment I am using Internet Explorer in my VB applications[code]...
i was wondering if i could access a folder inside the Resources folder of the application?
i would make it to eliminate the use of the debug directory in storing files and to use the clickonce deployment.
Trying to send email from inside my application. I have traced everything in the program and everything appears fine. Connection is made to my smtp server (shown in log files) but the message is never sent.
Private Sub sendAsEmailButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles sendAsEmailButton.Click
Dim form As New EmailData()
form.ShowDialog()
[Code] .....
I have made a form that exports to xml and refer's to a xsl sheet to open into html format. Now what I want to do is build this program with these xml and xsl files in it. I also want the user to push submit and the xml inside the build opens up.
I understand the Diagnostics.Process.Start but for some reason its not referring to my xsl file its just loading all the values in order. My question to yall is how do i set a path inside my application for the xsl and xml to refer to each other.
Is it a dll i need to compile if so any guidance their. Im a beginner and am still learning.
I am trying to run a python script inside a vb.net application, which means executing the code inside vb.net instead of runing it external. The problem is:
I am using MsScriptControl and set the language to "python", I tried to run it and get the error "A script engine for the specified language can not be created". My research has told me i need these keys in my registry. The problem is I cant find them so how to I make them. Or even better a full solution to my problem.
As you can see from the picture there are two .ico files in Icons folder inside of the application. My question is simple - how to access those?
View 4 Replies[code].....
View 3 RepliesProcess.Start("<pathname>") works fine. But I need to open the file inside my application alone. Is that possible? If so How??
View 1 Replies