Draw Rectangular Outside The Form?

Oct 21, 2010

I would like to draw a rectangular outside the form using mouse position but so far, I only found out how to draw rectangular inside the form.

View 12 Replies


ADVERTISEMENT

Draw Rectangular On Panel In (Windows)?

Apr 14, 2009

This is code i am applying for Draw a Rectangular on Form..same logic i applied for Panel it's not work..

[Code]...

View 2 Replies

Smooth Form Edges Of A No-rectangular Form

Mar 26, 2012

How do I make the edges of a non rectangular form in vb.net (2010) to be smooth. I have used regions and transparency key to create the form cut out but the edges

View 2 Replies

Making A Non-rectangular UI

Apr 15, 2009

I'm making a non-rectangular UI and I've tried different approaches but still can't get the results I want. The following codes are for the user to move the form around.

[Code]....

View 10 Replies

Display A Rectangular Array?

Aug 2, 2011

I'm trying to do a tic-tac-toe console application for practice. I created a case statement for the user to pick which square they want to fill in. [code]...

View 1 Replies

Take A Screenshot Of The Rectangular Area?

Jun 15, 2009

I'm currently using the following code to take a screenshot of my desktop:

Dim r As Rectangle = Screen.PrimaryScreen.WorkingArea
Dim bmp As New Bitmap(r.Width, r.Height)
Dim g As Graphics = Graphics.FromImage(bmp)

[code].....

I'd like some direction in taking a screenshot of just a specific area. The area I need is where the rectangle encapsulates. If 've played around with it for a while tyring to figure out how to just take a screenshot of the rectangular area, but can't seem to figure it out.

View 2 Replies

VS 2010 Rectangular Array?

Dec 9, 2010

In a rectangular array which is correct or considered standard? dim array(row,column) as..or dim array(column,row) as. Not sure it actually matters outside of how it looks in your head.

View 4 Replies

Coordinate Of Mouse Move Not Same As Rectangular

Mar 31, 2011

Private Sub PictureBox1_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles PictureBox1.MouseMove
Label5.Text = "X:" & e.X
Label6.Text = "Y:" & e.Y
End Sub
Dim objectrect As Rectangle = rects(0)
Dim object_x As Integer = objectrect.X
Dim object_y As Integer = objectrect.Y
Label7.Text = object_x
Label8.Text = object_y
I discovered that these labels are not the same, the mouse move is more accurate. My mouse is currently pointing at the upper left corner of rectangular.

View 5 Replies

Declaring Jagged Or Rectangular Array

Sep 21, 2010

I'm working on a reporting section of code for an inventory app I'm making for my office.I call a text file, read every line into an array then populate information pages with what has been pulled from the text file.For reporting, I want to read every text file in the directory, reading each one into a multidimensional array.Thus I can call and report on each item, i.e.ItemArray(i,2) would be all systems with Windows 2008 EE..I have code that lists all files in the desired directory and counts each file, so I eventually get counts of how deep I need the first level of the jagged array to be. but not until after code execution. Basically how can I write each array of data to the jagged array.[code]But I get a null reference exception. "Use the new keyword to create an object instance".

View 8 Replies

Initialize Rectangular Str-array In VB2010?

Sep 16, 2011

I need some constant arrays to be ported like this one:

[3] - first dimension
[2] - dimensions in each first dimension
[3] size of string array is needed in the language i'm porting from, y - 0, o - 1, \0 - 2 = 3 new RevTable[3][2][3] =

[Code]...

View 3 Replies

.net - Draw Image To Form?

Nov 11, 2011

I'm trying to draw a 400x400 px image to a 400x400 form that I made. What I'm doing is:

Graphics.DrawImage Method (Image, 0, 0, 400, 400) 0, 0, 400, 400, ...

But when I run the form, the image seems to stretch slightly upon the y-axis, the x-axis seems to be working correctly.

This was what I was doing before (stretching the old smaller images to fit the size)

... (Image, 0, 0, 264, 231) 0, 0, 400, 400, ...

or something like that. Now that I'm trying to do it the correct way, I can't seem to get it to work properly.

Edit: I wonder if using a simpler verson of Graphics.DrawImage would work?

View 1 Replies

Cannot Draw On A Form Past 291, 266?

Feb 14, 2011

I have an "application" that consists of a form Form1, with the following code behind it:

Public Class Form1
Dim xDown As Integer, yDown As Integer
Dim g As Graphics = Me.CreateGraphics
Dim p As Pen = New Pen(Color.Black, 1)
Dim r As New Rectangle

[Code]...

View 7 Replies

Draw A Line In VB Form?

Jun 21, 2010

How can I do the same thing with other shaped like rectangle?

I know that I need x,y,widht,height but it still don't do my rec.

View 1 Replies

Draw A Line On A Form?

Jul 16, 2009

in vb.net i would like to draw a regular line on a form. is there a control to do this?

View 2 Replies

Draw Image Outside My Form?

Oct 28, 2009

Can i draw a image outside my form?

View 3 Replies

Draw Line Outside Form With VB?

Oct 10, 2010

I want to move cursor with visual basic and it seems I found way how to do that. It is possible even click with Visual Basic whereever on screen. But I cannot check out where on the screen the click was done and so I want to draw two short crossing lines on that point as marker where Visual Basic clicked on screen. If it is possible to move cursor to that position and show it then it is as good as drawing marker.

View 4 Replies

Draw My Own Shapes On A Form?

Dec 4, 2009

Can I draw my own shapes (such as a filled circle, square, etc.) on a form?Can it be done from code as well as from the designer?Can I use events such as onClick() on the shapes?

View 3 Replies

Draw Rectangle Outside Of Form?

Jun 6, 2011

Draw rectangle outside of form?[url]...

View 1 Replies

Draw Something When A Form Is Loaded?

May 1, 2012

I want to draw a histogram when Form2 is loaded, I load Form2 using button of Form1 It didnt work, Form2 is loaded, but no image...i dont know why here's the code

Private Sub Form2_Paint(ByVal sender As System.Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles MyBase.Paint
Dim img As Graphics = PictureBox1.CreateGraphics

[Code]....

View 5 Replies

How To Draw A Control Outside Of Its Form

Dec 7, 2010

On Form1 we have: TextBox1 TreeView1 - holds list of customers, is located near the bottom of the form, not visible from the start. Now, when I start typing text in TextBox1 (i need to filter customers), TreeView1 appears and suggest for example 30 customers matching the searched text. I want the program to show the treeview and draw it also outside of the Form1 boundaries.

View 7 Replies

How To Draw On Form From Within Class

Jun 18, 2012

I am basically teaching my students about OO programming and want them to be able to see the outcomes to methods visually. I want to draw shapes on a form but cant for the life of me get it to work - no errors but no actual shapes are being drawn. So I have created a method called drawFace which is run when a new instance of the object is created. This method has the following code in it
Form1.CreateGraphics.DrawEllipse(Pens.Black, 100, 100, 100, 50)

It doesn't cause any errors, but it doesn't seem to do anything. Also tried adding a picture box to the stage and ammending the code as such
Form1.PictureBox1.CreateGraphics.DrawEllipse(Pens.Black, 100, 100, 100, 50)
But still no joy.

View 4 Replies

Check For Object Location Around Rectangular Area?

Oct 12, 2011

I have a form that allows me to drag and drop pictures but I want it to check if the object is in the correct location

*curpic = the current picture that has been selected
If curpic.location.X > bx1.Location.X And curpic.location.Y > bx1.Location.Y Then
If curpic.location.X < bx1.Location.X + bx1.Width And curpic.location.Y < bx1.Location.Y +

[code].....

View 2 Replies

Forms :: Ossible To Make A Picturebox That Is Not Rectangular?

Jun 1, 2010

Is it possible to make a picturebox that is not rectangular? Such as a circle?

View 1 Replies

Moving Picture Boxes In A Rectangular Shape?

Jun 15, 2010

I'm trying to make a program where three race cars move around a track. with randomizers and timers, I only want to do one lap. My "cars" are pictureboxes. so the starting line's location is (400, 150). Here's the coding for the inside car:

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
TimerRight.Enabled = Not TimerRight.Enabled

[code].....

View 1 Replies

Rectangular Arrays Of Fixed Size At Runtime

Apr 20, 2011

In languages like C++ and Java, it is possible to declare an array of an arbitrary size and then give it a specific size later in the code.

[Code]....

View 1 Replies

VS 2008 Create Rectangular Array From List?

May 25, 2011

i read data from a textfile into a one dimensional array (string()) and refer to that later on to build a new list with just the lines i want. using chartData as New List (of String) I can load the List collection just fine. Now, I want to send the output to a table so I can bind it to a datagrid. using Split and AddRange breaks the one dimensional data up into new rows but I want this sort of thing:

"Row0 Cell0"->"Row0 Cell1 "->"Row0 Cell3";<line break>
"Row1 Cell0""Row1 Cell1"Row1 Cell3;<line break>

Note I provided for characters that can be used in a split function (-> and vbTab), which works, but the split in the List gives me a one dimensional array.

View 5 Replies

VS 2010 - Creating Rectangular Shape In Excel

Aug 16, 2011

The VBA Code is
ActiveSheet.Shapes.AddShape(msoShapeRectangle, 105.75, 54.75, 114, 65.25).Select
ActiveSheet.Shapes.AddShape(msoShapeOval, 441, 57, 117.75, 90.75).Select
For VB.Net, I tried looking the prefix for "msoShapeRectangle" or "msoShapeOval" in
Microsoft.Office.Core.MsoShapeType. But couldn't find it.

View 2 Replies

Creating A Sports Draw Form?

Sep 20, 2009

i am trying to create a form that allows me to add teams and the scores and then be able to re-open and view them. i have created a form that will create the team names and save it to a file but i have no idea how to create one that will show the scores with the corresponding teams. i am using visual basic express 2008.

View 2 Replies

Draw A 'wave Form' In A Panel?

Apr 5, 2010

I need to draw a'wave form' in a panel inVB.net, the wave form will be updated once every one second. the problem is the screen blinking whenever it is updated. how can I solve this problem? the paint event code as below.

[code]...

View 4 Replies

Draw A Circle In The Form With One Button In .net?

Jun 21, 2010

This code is to draw a circle in the form with one button in vb.net. Dim g as system.drawing.graphics

g=me.creategraphics
dim p as new system.drawing.pent(system.drawing.color.Blueviolet)
g.drawellipse(p,150,100,30,60)
end sub

this is not working it is showing the error in the declaration of p any one can help me out to rectify this error

View 1 Replies







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