[2008] X And Y Inside Form Only?

Feb 28, 2009

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 Replies


ADVERTISEMENT

VS 2008 Opacity/Invisibility Of A Form Inside A MDI Form?

Oct 11, 2009

I 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].....

View 20 Replies

VS 2008 Place A Form Inside Of A Form?

Jul 29, 2009

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 Replies

VS 2008 - Controls Put Inside Form But Don't Appear When Debug

Jul 8, 2009

I have a problem. Controls is put inside form but don't appear when debug? I don't know what happened but. I put a Checkbox control and a button control named Button 3 on the my existing form. But when I debug the application. The Checkbox and Button 3 controls did not appear in the form? I try to put a message box which will be activate when Button 3 is clicked. I put a breakpoint there and I got this message. Breakpoint cannot be hit?

View 1 Replies

VS 2008 : Closing Form Inside The Thread?

Sep 4, 2009

1. I am closing the form which started the thread inside the thread. There are no errors , but Is it safe ?

2. The thread starts at click of a button . If same button is clicked again , the thread is aborted. Should the thread be made Background or foreground ? it is working either way.

my code :

Private Sub BtnOk_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnOk.Click
m_Thread = New System.Threading.Thread(AddressOf MyFunction)
m_Thread.IsBackground = True

[code]....

View 3 Replies

VS 2008 : Open A Folder Inside A Form?

Feb 5, 2010

Is it possible to open a folder inside a form?

View 11 Replies

[2008] Running A Game Inside Form?

Dec 19, 2008

I have a FPS game i built using FPS creator that works fine but i want to run it inside my form. Like so for example:

View 2 Replies

[VB 2008] Moveable Window Inside A Form?

Jun 4, 2009

but is there a WINDOW that is moveable..... and can be minimized inside the form....

View 3 Replies

VS 2008 Forms Inside Form, Snap To All Edges?

Sep 9, 2010

I have multiple forms within a form, typically up to 16, and I want these "inside" forms to snap all edges between eachother or the parent form edges, when a form is resized or moved, and edge comes within x pixels of any other edge.How should I approach this? What I can think of is to raise an event on the form that is moved/resized which calls a parent form handler method that loops through all the forms, check the edges and then keeps fixing (repositioning) the active form if any of its edges is close to any other form edge

View 3 Replies

Form In A Form - Manipulate The App's Properties Place Inside Child Form?

Dec 23, 2008

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]...

View 8 Replies

VS 2008 SplitContainer - Display Another Form Inside The Other Part Of The SplitContainer Which Is Panel

Nov 10, 2009

I am having a problem figuring out one thing with my program. It's about SplitContainer. To elaborate, I put a SplitContainer on a form. It divided my form into two parts, which I wanted. On the left side panel there are buttons, and when I click on a button I would want to display another form inside the other part of the SplitContainer which is Panel2.

View 17 Replies

Progress Bar In Status Bar To Move When Load Any Child Form Inside The MDIParent Form

Sep 16, 2009

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 Replies

Navigate The WebBrowser In Form 1 By Clicking The Links Inside The Richtext Box In Form 2?

Apr 14, 2009

There'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 Replies

VS 2010 Display Pdf File Inside A Form That Gets Some Values From Form Controls?

Sep 27, 2010

Inside 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 Replies

C# - Display A Form Inside Another Form Like Visual Studio

Jan 19, 2011

How 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 Replies

Load A Form After A Different Form Was Click Inside The MDIParent?

Jun 22, 2010

In 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 Replies

Minimize Child Form Inside Of Parent Mdi Form

Nov 15, 2011

how 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 Replies

Load Another Form, Centered Inside The Other Form?

Sep 1, 2010

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]....

View 7 Replies

Open Form Inside Other Form?

Mar 5, 2010

open form inside other form

View 3 Replies

Run .exe Inside The Form?

Oct 23, 2010

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?

View 12 Replies

Inside Of Form Dimensions

May 18, 2009

I'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 Replies

Put Application Inside Form?

Dec 12, 2010

How i can Put any Application inside my form to run when i open my form

View 7 Replies

Put The Control Inside Of A Form?

Aug 7, 2011

I'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.

View 5 Replies

Call A Form From A String Inside A Dll?

Mar 6, 2012

I 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].....

View 2 Replies

Check If A Picturebox Is Inside A Form?

Oct 28, 2010

how to check if a picturebox is inside a form?

View 7 Replies

Determine Form Inside Desktop?

Dec 29, 2009

How to determine whether form is it inside the desktop?

View 3 Replies

Difference Between Dim And Private Inside A .net Form?

Mar 23, 2011

difference between the Dim and Private inside a form class?

View 3 Replies

Exe File Inside The Form Panel

Jun 6, 2011

I 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]...

View 1 Replies

Have A Quickwin Application Inside Of A Form

Nov 8, 2011

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?

View 2 Replies

Mouse Position Inside The Form?

Aug 2, 2009

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...

View 8 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved