Make Shapes Like Vb6?

Dec 3, 2009

I wanna make shapes like vb6 but i don't have shapes like that. i need to make them an array.is there any component or something to use like shapes?

View 3 Replies


ADVERTISEMENT

Add Shapes/Controls In A Loop VB.NET

Jun 8, 2011

I've to show some PowerPacks.RectangleShape in a PowerPacks.ShapeContainer. A loop in my code add shapes to the container

(objshapecontainer.shapes.add(objshape), but at the end of the loop, only the last shape is displayed, in fact objshapecontainer.shapes.count doesn't exceed 1

View 1 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

Find And Replace Shapes

Oct 1, 2010

I have a macro that creates shapes in my documents. The following macro will delete all of them. How do I modify it so if they say NO it will go through the document and find each occurance of the shape and ask if you want to delete this one? [code]

View 2 Replies

Rotate Text In Shapes?

Feb 22, 2012

I am drawin three concentric circles, each with corresponding radial lines from the center to the side of each segment. I want to place text inside each segment and can do so with a horizontal text. I want to ROTATE the text to match the segment's angle and fit perfectly inside the segment, but when I use the Tramsform/Rotate options in VB 2010 the text is rotated but ends up in a unforeseeable place.

View 6 Replies

Using Loop To Draw Different Shapes

May 25, 2011

I want to use a loop to draw different types of shapes on a visual. I want to use the Random function sothat the number of each shape would be set randomly. For example, I want three triangles followed by two circles, followed by two triangles, etc. When you click the button again a different set of shapes would be rendered. I can draw shapes. What I need is how to use the loops and Random() to do this. I tried to use concatenation but it does not work with the Polygons.

View 15 Replies

.net - Creating Geometric Shapes As A Class?

Apr 17, 2011

how do I create a geometric shape as a class? Visual basic has a Rectangle class pre-defined object that I would like to use, but I need to use a rectangle class that can use decimals for the 4 points to set its location. I do not want to draw a shape on the form for graphical reasons but I want to use the shape for an algorithm, how can I create a class for a rectangle using decimals?

View 1 Replies

Add Shapes Dynamically To A Form / Container?

Mar 3, 2012

I need to dynamically add ovalshapes to a form. The application user would enter a number of shapes (variable), and other parameters for the shapes as location, color,etc. After this I need to display these shapes in the screen. Every sample I found shows a fix number of shape hardcode by the programmer.

View 4 Replies

Could Not Find Any Shapes Control In The Toolbox

Jan 4, 2011

Is there anything like shapes control of VB 6.0, in Vb.Net? I need to draw lines etc. at design time. But I could not find any shapes control in the toolbox.

View 2 Replies

Create Array Of Shapes In Excel?

Jun 3, 2010

I am writing my code in Visual Basic 2008. I am trying to store the shapes I have added to an Excel sheet in an array and get this error message.[code]...

View 4 Replies

Drag And Drop Shapes Around In Application?

Apr 28, 2012

I am using visual basic 2010 Express as asa windows forms application. How can I make it so people running my application can drag and drop or move shapes or rectangles around on a grid? Please help I have tried different ways but none are working so far.I am making a room/area designer appplication where users can drag funiture/items (shapes) around on a grid.

View 3 Replies

Draw Complex Shapes Onto A Form?

Mar 17, 2011

I have a control that looks similar to the following:

I need to add slightly round ends where all that extra end space is. I'm not sure how to add these. It should look similar to the round ends on this page.

View 1 Replies

Drawing On A Button - Draw Different Shapes On Them?

Aug 11, 2010

I'm creating new buttons at runtime that I need to draw on. I have 4 different and I need to draw different shapes on them. I've started with the "rectangle button" and I've approached this

[Code]...

View 3 Replies

Graphics - Displaying Various Shapes In PictureBox

Jun 22, 2010

I need to display various shapes in a picture box, and am trying to do so via a combobox that the user can select from. My problem is clearing a previous selection when a new selection is made.

Code to date is:
Public Class frmGraphics1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'Populate cboShape with shapes
cboShape.Items.Add("Select a shape")
[Code] .....

View 2 Replies

How To Create Different Type Of Shapes Of Forms

Mar 20, 2011

I want to create a Windows form application in VB.NET 2008, and I want to create a circle-shaped window. How can I do it?

View 4 Replies

IDE :: Draw Lines And Shapes On A Form?

Feb 15, 2006

The image editor toolbar is not active. I would like to draw lines and shapes on a form.

View 1 Replies

Moving GDI+ Shapes With Arrow Keys?

Mar 8, 2010

I am making a project using the GDI+ interface and have drawn the shapes but I need to move them using the arrow keys. Does anyone know how I would accomplish this?

View 3 Replies

Using Nested Loops For Drawing Shapes?

Oct 12, 2009

I am trying to write a program that using a nested do while loop and If/If Else statement to draw a shape, and also using a nested do until and If/ElseIf statement to draw another shape.

View 18 Replies

VS 2005 : Drawing Shapes In A 2d Image?

May 25, 2009

i am creating a winform program using vb where i am loading an image into a picture box. then in the mouse down event i am creating small circles which can act as points which will be displayed on the image. say creating five points around the eye of a bird. then i am having a button by clicking it , a polygon will be drawn on those selected circles x and y as edges. i am having no issues until this. when i am trying to add another polygon in the same picture by clicking around its leg or whatever and pushed the draw button there must be another polygon i.e. two separate polygons 1 on eye and 2 on leg. but there is only one polygon from eye to leg. so my questions are

1) how to close a polygon and draw another one in picture box

2) how to select a previously drawn polygon and delete it.

picturebox_mousedown
Private Sub PictureBox1_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles PictureBox1.MouseDown

[code].....

View 4 Replies

Drawing Shapes Onto A Pic Box And Saving The Modified Image?

Aug 25, 2009

The aim of my program is to load a picture into an pic box, then to be able to place multiple shapes on the picture in the pic box by clicking on the location where i want the shape. The type of shape will depend on the radio button which has been selected. Basically all i want is choice of X or O. (its not tic tac toe either At the end of it all i want to be able to save the image WITH the shapes on it, doesnt matter what format its in (gif, jpg, bmp) as long as it has color and i can see the original image with the shapes included.

I have made several attempts at this, and this is what i have so far. (I am brand new to VB and programming so i need all the help i can get) I have hit a wall with how far previous examples can get me.

[Code]...

View 18 Replies

Making Shapes In VB 2008 Express Edition

Oct 18, 2009

i have just begun to program so I am a complete beginner. but i cannot find out how to add a shape to my form. I am reading a book that is a guide to beginner programmers but it simply says to use the shape control, but I cannot find that. I am pretty sure that the author was using a different version of visual basic so I just need another way to insert a shape on my form. also, what are the units used in the version 0I am using.

View 8 Replies

Rectangle Shapes - Index Was Outside Bounds Of Array

Apr 4, 2012

I am trying to put all my rectangleshapes in an array so that it saves writing lots of code of collision for each rectangle. But I get the error "Index was outside the bounds of the array.".

Dim i As Integer
Dim shape(i) As Microsoft.VisualBasic.PowerPacks.RectangleShape
shape(i) = RectangleShape1
shape(i) = RectangleShape2
shape(i) = RectangleShape3
[Code] ......

View 14 Replies

Standard Shapes And Grey Colored Controls

May 26, 2009

I haven't actually mastered VB.NET programming yet but I am already tired of the standard shaped and grey colored controls. Is there no other way (Programs or by code) of designing better looking controls of other shapes like circles or any shape I want and to give cool color and effects just the ones used in Windows Media Player v.11?

View 2 Replies

VS 2005 : Working With Interop.Excel.Shapes?

Apr 16, 2009

I am working on a class that generates a report in Excel (any version).I need to perform a bit of ad-hoc labelling on a chart, for which I have created a textbox (i.e. Excel drawing object).I've managed to get as far as creating the textbox and setting it's text using Shape.TextFrame.Characters.Text. Ideally, I'd like to set the font characteristics as well, but I can't see how to do this. I can't seem to find much info about this anywhere, so hopefully someone's dealt with this before and can give me a few pointers.

View 1 Replies

Interface And Graphics :: Using Shapes In Visual Studios 2008?

Oct 25, 2009

I can't seem to find the shape tool in the toolbox? When I used VB6 there was one, so why isn't there one now? I just want to set up rows of circles so I can change the color from inside instead of using images and saying

Code:
YellowCircle.Visible = False
BlueCircle.Visible = True

Instead of doing that I want to do

Code:
Circle.BackColor = Blue

How do I draw a shape in VB.NET? Not during the program, before.

View 3 Replies

Resizing Image Or Crop Images Into Specific Shapes In Vb?

Jan 17, 2012

I am trying to do a code for my application that will crop a selected images into oval shape.

I tried to search for a reference on the internet there is only example on how to resize it. But is it possible to crop it into shapes?

View 1 Replies

VS 2008 How To Add Properties To Dynamically Created Oval Shapes

Jul 18, 2009

I had created another thread asking how to create OvalShapes during runtime... Ok, so I have that covered, but what I need to know how to add properties to these OvalShapes individually. The OvalShapes are stored in the List(Of OvalShapes) if I create a loop from 0 to the length of the list it modifies all the OvalShapes with the same propertiesWhat I�m trying to do is make like 5-10 balls collide, this is why I need these properties to be individual to each OvalShape.

View 2 Replies

VS 2010 Drawing Circles, Rectangles, Elongated Shapes?

Apr 20, 2012

I would like to draw a rectangle on a form, for example to mimic a steel beam that is 6 metres long.Within this rectangle, there may be 4 "openings" or circles that mimic a diameter of 600mm, so i need to draw 4 circles within the rectangle, to indicate a beam that has 4 openings. Other issues I need to cater for is that one of the circles may not be in the centre, it may be slightly raised.The user can change the length of the beam and the size of the openings so i'd like to refresh my drawing to keep in line with this.

View 3 Replies

Creating A Clock - Link The Current Time To Corrospond With The Shapes?

Apr 21, 2010

I am currently creating a clock like the "24" clock, i have made the numbers using the drawing tools within Visual Basic, i was just wondering how i can link the current time to corrospond with the shapes i have drawn?

View 3 Replies

Can Draw Various Shapes Such As Recetangle / Hexagon And Octagon In Visual Studio?

Sep 12, 2010

I'd like to draw variety of shapes to represent opreational space occupied of various rooms. I am interest to develop a web based application using visual studio and would like to use asp.net platform and the language I'll be using is VB.

View 3 Replies







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