Interface And Graphics :: Make The Contents Of A Form Expand Or Retract In Response To Moving Its Borders By Grabbing Them With The Mouse?

Jan 27, 2011

I have been trying to discover how to make the contents of a form expand or retract in response to moving its borders by grabbing them with the mouse, or by use of the 'Maximise' or 'Restore Down' controls.The explanation in �Help� concerning TableLayoutPanel, Panel, Anchor and Auto size doesn�t help much, especially as it I can�t get it to work.

View 7 Replies


ADVERTISEMENT

Interface And Graphics :: Moving A Form Without Borders?

Aug 24, 2008

I've got a form with no borders, and I am wondering how a user would be able to move this form around. I would like it to be moved the same way a form would move by left-clicking and holding the top border. I know that's a little vague, so if you need any more info feel free to ask...

View 1 Replies

Irregular Shaped Form With No Borders Moving Across The Screen Until From Within The Loop The Form Closes?

May 26, 2012

I tried it every way I can think off, but nothing can stop it .

View 7 Replies

Interface And Graphics :: Mouse Control - Move The Mouse To A Given Pixel Position (x, Y) And Cause A Click

Oct 6, 2008

Apologies as this has probably been answered a million different times a million different ways already. I'm trying to control the mouse. I wish to move the mouse to a given pixel position (x, y) and cause a click. I don't want this to be limited within a form, as I want to control another application. I'm using VB 2005.

View 4 Replies

Interface And Graphics :: Design - Make A Form Transparent

Nov 18, 2010

i make a Form transparant where i dont want form background. So say like i got a round form and i can transparant the white background of the round even possible?

View 6 Replies

Interface And Graphics :: Moving Buttons And Background Images?

Oct 7, 2009

My app allows the user to set a new button on a tabpage, move it and resize it. They will do this over a background image so the buttons line up with images in the background.Without the background image, the buttons move smoothly and quickly. With the image turned on, the buttons want to move sloooowly and they drag. I made up this code just to show the basic function of what I am trying to accomplish.

Code:
Public Class Form1
Public finalshape As Region

[code].....

View 2 Replies

Interface And Graphics :: Picturebox Moving With Constant Speed

Nov 13, 2008

I'm making my first 2D game, and I've created an object inherited from a picturebox, to use as a little man. I've tried to make it move using a timer, but I'm not satisfied with the result. Sometimes the speed seems to change for no reason.

View 5 Replies

Interface And Graphics :: Check Which Mouse Button Clicked?

Mar 18, 2011

I can tell when the user clicks on my picturebox. Can I tell which mouse button was used? Left or right?

View 1 Replies

Interface And Graphics :: How To Simulate Mouse Button Click

Aug 13, 2008

I need to visually moves the cursor using keyboard keys.
1) I need to get the mouse to where the button is
2) Simulate the mouse movement to the button from whereever it is
3) and simulate a button click.
Only after I select a button I can start drawing on my form. I have a code here, when I hold the Ctrl key and press the arrow keys, the mouse will start drawing straight lines. But what happen when I need to use controls like buttons, comboboxes etc.?

View 1 Replies

Interface And Graphics :: Displaying Images On Mouse Hover In Different Window?

Jan 28, 2009

I am starting to develop a card game client for a CCG a friend of mine and I are creating.

I have 2 forms Client.vb and Hand.vb linked with a module.vb

In essence when the app starts up I see the client. I can then click the "Hand" button and the Hand Window is shown as well.

What my goal is is to have it so that when i hover over the card (picturebox) in my hand form that it displays a larger image of that card in the preview box (Another picture box) In Client.vb

I have everything working except when i actually mouse over the image in the hand form it creates an error:

Error:A first chance exception of type 'System.NullReferenceException' occurred in CCG 2.0.exe

The code in the mouse hover event:

Code:
F1.PictureBox2.Image = F2.PictureBox1.Image

Im Almost certain im going about this the wrong way but I cant seem to figure out any other way...

PS.I have attached an image to demonstrate what Im trying to do...

View 3 Replies

Interface And Graphics :: Use A Graphical User Interface That Contains A Drag And Drop Form?

Oct 19, 2008

I'm working on a design project where I have to use a Graphical User Interface that contains a drag and drop form. It consists of having a window dropped on a wall. Both of them are images to scale. I would like to know what kind of code I would have to use to show the x and y coordinates of one of the points of my window when dragged so when I drop it, I'm dropping in it on the desired coordinate of the wall.

View 2 Replies

VB 2008 - Image Keeps Moving Out The Borders And Disappear

Apr 23, 2011

I have created a new project in visual basic and imported a photo in now i want to make the image move inside and I did that the problem is that the image keeps moving out the borders and disappear I want to make it stop how I should do that?

[Code]...

View 2 Replies

VS 2008 - Moving Variable Contents From One Form To Other

Apr 20, 2012

I want to move a viriable content from one form to the other . and like wise. Lets see now here is the startup form.
Public Class startup
ok as you can see am making a public shared variable to get the name from the textbox and put it in the var, thats easy already done , now the problem I can't get it to be moved to the other form. (Below the 1st code is the code I use to get the outcome from form1 to form2).

Public Shared playername As String
Private Sub startup_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
End Sub
Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
[Code] .....

View 1 Replies

Make Controls Fully Fit On Form When Expand?

Jul 18, 2010

When i run my program and then click on the 2nd btn on the top-right corner to expand to fit my screen, i find that my control are not auto align to the expand. It also has the same problem when i run my program on other monitor of different size. Is there a way to make the controls auto align?

View 16 Replies

VS 2008 Make The UI Expand When Changing Size Of Form?

May 4, 2011

Most applications will expand all components if the user change the size of the forms

View 2 Replies

Interface And Graphics :: Best Way To Make A 'tile Selector' Box?

Jan 16, 2011

So now I will try to make something more complex, still playing around with this graphics thing.I want a picturebox to display a tileset (a bunch of 32x32 tiles normally used for creating game levels etc), the picturebox is inside a container (which has autoscroll ON). The picturebox is larger than the container, so the container will make scrollbars automatically.Now, I need to be able to choose a tile or multiple tiles (if I click & drag the mouse)Basically I want to draw a 32x32 "red" box over each selected tile (so the user knows what tiles are selected).So first of all, I need to know when the mouse clicks the picture. Good. It works.Now, I need to know which 32x32 tile was clicked. Well, I think I can calculate that just fine.BUT, what if the user drags the mouse while clicking on a tile? I want to support multiple tiles selected, but I am clueless about tracking what tiles were chosen.If we solve that problem, I would have another curiosity: You know the "red boxes" that tell you which tiles are selected? What would happen if I dragged the scroll bar? I need the redboxes to move along with the picture, and hide if they go to an invisible area.

View 6 Replies

Interface And Graphics :: How To Make Picturebox Transparent

Aug 23, 2009

i am making a program with graphics and im using a picturebox for a button. The image inside picturebox is transparent .gif. The problem is that i don't know how to make picturebox transparent. I searched the internet but all exaples didn't work. Does someone know how to fix this problem?

View 4 Replies

Interface And Graphics :: Make A Thumbnail From An Image?

Jul 11, 2004

I am trying to incorporate in my vbdotnet application a form in which I would like to make a thumbnail from an image. So what I have is two picture boxes, one with the source image and the other with the destination image, I would like to crop the image from picture box 1 and display it on picture box 2, but the way I wan to crop it is not giving the coordinates of the selected area box but to simulate a selection area box in which the mouse can move the box and select the area of the picture to be cropped. This selection area box would give me the coordinates i need in order to proceed the cropping. The problem is I don't know how to create this selection area box. It is like doing the cropping on a graphic design software like Macromedia Fireworks, Adobe photoshop, even paint.

View 5 Replies

Interface And Graphics :: Create An Object And Make It Visible?

Dec 28, 2009

I tried to create a lineshape and make it visible when a timer ticks. Also tried to set everything that would matter when creating it(border colors and thickness etc)

But still, I got no results.

Code:
Dim line = New Microsoft.VisualBasic.PowerPacks.LineShape(CX, CY, ccx, ccy)
line.Parent = New Microsoft.VisualBasic.PowerPacks.ShapeContainer()
line.Enabled = True

[Code]....

View 1 Replies

Interface And Graphics :: How Do You Make A GUI Program That Is Not A Square/rectangle

Jan 31, 2010

I can't seem to make a GUI in the shape a circle...

something other than square/rectangle.

View 1 Replies

Interface And Graphics :: How To Make A Color From Agrb With 3 Alphas

Jun 16, 2010

I have a red, green, and blue color that I am making with this method:

Code:
Dim Red1 As Color = Color.FromArgb(75, Color.Red)
and a brighter red:

[code].....

Any recommendations? I like the fact that 255,255,255 is white. Is there a way to create color by combining three colors that were made from argb? I may just have to make my 20 different colors set and then refer to them.

View 4 Replies

Interface And Graphics :: Make A Class For A Custom Button?

Jan 2, 2012

i want to make a class for a custom button for which the user of the class can choose his own images for Normal, mouse over and mouse down state.

View 5 Replies

Interface And Graphics :: Make A New Button For Each .exe File In A Directory?

Dec 12, 2008

im making a program that needs to make a new button for each .exe file in a directory? Kinda similar to PortableApps program that will recognize each program in the directory.

View 3 Replies

Interface And Graphics :: Adding A A Form As A Child Form To A Third Part Window

Mar 24, 2011

As Autodesk is going to discontinue VBA for their Inventor product in the near future I have been looking at other ways to run VB.NET in Inventor. To date it doesn't look like VSTA will be the replacement. Automation from an External VB.NET app is certainly possible, but leaves something to be desired for speed and integration. Compiled Add Ins are the Cadillac of choice but can be a royal pain to debug and develop. Autodesk now provides a lightweight VB.NET script interface called iLogic. It's main purpose is to allow extreme customization of Solid Modeling parts. The code actually resides inside the Part Model file.

[Code]...

View 7 Replies

Interface And Graphics :: Make Image Grey And Rectangle Area Colour

Jan 26, 2011

I am using the following code to place a rectangle around a form / form control, however what I want to do is make my screen grey and only the form / form control area be displayed in colour.

Code:

I have googled for ages trying to find something on this, but with no luck.

To illistrate this better they are using the same functionality in snagit 10, please see below link to a page that has a video link showing this (23 sec into video)[url]

View 4 Replies

Interface And Graphics :: Add A Scrollbar To Form?

Aug 12, 2009

How can I add a scrollbar to my form I tried the auto scrollbar option but is not working ??

How can I validate the user inpute inside a textbox to check that he type the desired word?? for Example validate if the user typed the word ( Bob)?

View 2 Replies

Interface And Graphics :: Maximizing Form And Everything In It?

Aug 20, 2009

how to maximize my form window and for example my list view, tool strip container etc etc, maximize with the form window. I would just create the form to my monitor 1440x900 but this will be used on several computers all with different monitor size. What I'm looking for is a quick easy way of doing instead of setting each one up separately.

View 1 Replies

Interface And Graphics :: Add A Dynamic Contextmenustrip To Form

Oct 14, 2009

How would you add a Dynamic Contextmenustrip to your form and how would you add the items to the contextmenustrip. Also when adding the items to the menustrip is it possible to give them names and text dynamically if so how?

View 5 Replies

Interface And Graphics :: Change The Theme Of The Form?

Jun 22, 2010

know that there is library which can change the theme of the form but i do not

View 1 Replies

Interface And Graphics :: Displaying Forms In Another Form?

Nov 17, 2011

I'm looking for a tool that will allow me to display, and change forms, inside my original form.

View 5 Replies







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