Add A New Floating Rectangle With An Image?

Mar 16, 2012

i want to add a new floating rectangle with an image inside it to my form when i click on a button control and then use a timer control to move it in a straight line across the Form. the problems I'm having are:

1) Drawing and filling the RectangleF on the screen.

2) Animating/moving it from X1,Y1 to X2,Y2

3) Triggering the Drawing and movement with a Button Control

View 6 Replies


ADVERTISEMENT

VS 2010 Floating Splash Screen Image?

Jan 31, 2011

I have an image on a transparent background. This is my "splash screen" for my project. I want it to basically show up in the middle of the screen for 5 seconds and then load my frmMain Form.

Here's the image: (removed)

I can't seem to get the gray form's background off it.

View 7 Replies

Ake Image Under Rectangle To Be Clear And Outside Area Translucent?

Mar 27, 2011

I am currently working on image cropping software. Any idea how to make image under rectangle to be clear and outside area translucent?

View 5 Replies

Resize Image [jpg, Png] Through Rectangle API With Mouse Move?

Jan 21, 2011

I using vb6.0.I want to load a image into a picture box and resize it in runtime through mouse.Image type is jpg or png.my logic is,

1. load image[jpg or png ] into picture box and draw a rectangle using rectangle API, according to image size.

2. resize rectangle through mouse and according to the size of rectangle change size of image.

View 3 Replies

Draw Rectangle On Image Where Color Pixel Is Black?

Mar 17, 2011

I want to draw a rectangle on image where color pixel of image is black

View 1 Replies

Rectangle Drawn On Picturebox Gets Erased When Scroll Image?

Apr 1, 2010

rectangle drawn on picturebox gets erased when i scroll image.i.e

i have made application for image cropping. on mouse down and mouse up event, an rectangle is drawn on picturebox using graphics.

1) now the problem is that when scroll image rectangle drawn on picturebox gets erased.

2)now i want resize this rectangle as per user's interest

how to resize the rectangle and drag the rectangle on picture box.

View 5 Replies

VS 2010 Paint Rectangle Image Distorts When Scrolling?

Oct 12, 2011

I have a tabcontrol that I am trying to paint the background with a gradient rectangle. It looks great when the tab loads, but when I scroll, the background distorts. below is the

Private Sub tabcontrol_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles PanelDataSheet.Paint
'Creating a new Rectangle as similar width and height of the datasheettab
Dim oRAngle As Rectangle = New Rectangle(0, 0, PanelDataSheet.Width, PanelDataSheet.Height)

[code]....

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

List(of Rectangle), Rectangle.offset(x,y) Doesn't Work?

Jul 26, 2010

i've got a little problem with List(on T) variables.

[code]...

It works perfectly fine. Does anyone know what the problem is?

View 2 Replies

Identify Subtriangle Within A Rectangle Given A Coordinate In That Rectangle?

Feb 22, 2010

Given a rectangle of width w and height h. and a coordinate x,y in that rectangle I would like to identify which triangle I am within.

i.e. the function should take parameters(x,y) and return a,b,c,d or a zero based number representing that triangle index i.e. (0=A,1=B,2=C,3=D) if they are in that order.

I think this would be something like >= the formula of the red line and >= the formula of the green line?

I'd like to implement this in VB.NET

View 3 Replies

Draw Rectangle Divided To Four Rectangle?

Dec 3, 2011

This code is to draw rectangle. How can I draw rectangle divided to four rectangle or more

e.Graphics.DrawRectangle(Pens.Coral, 50, 200, 30, 40)

View 11 Replies

Drawing Rectangle Inside Another Rectangle?

Jul 26, 2009

I'M creating a kind of photo viewer, and I cannot figure out how to orient the scroll buttons with the photos I want to draw because they all are different sizes.This is really hard to explain so please ask questions if you don't understand.I'M thinking if i could draw every photo on a single rectangle and then the scroll bars will position that rectangle up or down. but is there a way to make a rectangle inside another one so it only shows inside that rectangle?

View 10 Replies

Getting The Floating Function Keys?

Jan 10, 2010

I use IrfanView for screen capture.After activating it (making it ready) it is necessary to use Ctrl & F11 to invoke the actual screen capture selector.how I may achieve a "Floating Key" which would act in the same way as the Ctrl & F11 combination?

View 4 Replies

Forms :: Make A Floating Toolbar

Jan 7, 2010

How can I make a floating toolbar (like the font toolbar that appears when highlighting text in Word 2007)?

I would like it to appear at a given point when mouse is clicked.

View 2 Replies

Make Floating Mini Toolbar?

Jan 7, 2010

How can I make a floating toolbar (like the font toolbar that appears when highlighting text in Word 2007)?

I would like it to appear at a given point when mouse is clicked.

View 9 Replies

Read 6 Bytes Floating From A File

Mar 5, 2011

I have an old fashion Database with several random access files and I need to import the data to a new Sql Server dababase the data. There are tables with 6 Bytes floating numbers fields and we have no Number data type with that length in VB. I tried and tried and... and can't find. I found this code in the ERP folder, is AlphaBasic. It use an envoirement namend A-shell from Microsabio .

[Code]...

View 1 Replies

C# - Understanding Floating Point Limitations In Calculations

Jan 12, 2011

How to determine when floating point limitations will cause errors in your calculations. For example the following code.
CalculateTotalTax = function (TaxRate, TaxFreePrice) {
return ((parseFloat(TaxFreePrice) / 100) * parseFloat(TaxRate)).toFixed(4);
};

I have been unable to input any two values that have caused for me an incorrect result for this method. If I remove the toFixed(4) I can infact see where the calculations start to lose accuracy (somewhere around the 6th decimal place). Having said that though, my understanding of floats is that even small numbers can sometimes fail to be represented or have I misunderstood and can 4 decimal places (for example) always be represented accurately.

MSDN explains floats as such... This means they cannot hold an exact representation of any quantity that is not a binary fraction (of the form k / (2 ^ n) where k and n are integers). Now I assume this applies to all floats (inlcuding those used in javascript). How can one determine if any specific method will be vulnerable to errors in floating point operations, at what precision will those errors materialize and what inputs will be required to produce those errors?

View 5 Replies

Implementing Floating Toolbar In Desktop Form?

Mar 30, 2009

How to implement a floating toolbar in the desktop form that can be placed anywhere in the form and also tell me if this can be called by other form other than actual form implementing it to display to the user for some common purpose.

View 5 Replies

C# - Arbitrary Precison Floating Types In .net : Finding Library That Allows That?

Oct 21, 2009

I need to do maths on both floats and integers with much bigger accuracies and magnitudes than offered both by int/float/double in .net. I recall there was something like that for c/c++.

View 2 Replies

Floating Point - Displaying A Decimal With A Given Maximum Length?

Apr 28, 2010

I am writing a custom totaling method for a grid view. I am totaling fairly large numbers so I'd like to use a decimal to get the total. The problem is I need to control the maximum length of the total number. To solve this problem I started using float but it doesn't seem to support large enough numbers, I get this in the totals column(1.551538E+07). So is there some formating string I can use in .ToString() to guarentee that I never get more then X characters in the total field? Keep in mind I'm totaling integers and decimals.

View 2 Replies

.net - Floating Point Result Discrepancy Between Two Seemingly Identical Statements

Sep 14, 2011

I've got the following Visual Basic code:

Dim L16, L23, L45, t As Double
Dim LBase, LAdjacent, LOpposite As Double
L16 = 20

[Code].....

Both equations should be equivalent: I've simply replaced L16 with LBase, L23 with LAdjacent and L45 with LOpposite. Yet the first equation outputs 3586 while the second outputs 3587.

View 1 Replies

Regular Expression (RegEx) To Replace Floating-point Numbers In XML?

Aug 22, 2011

I'm using Visual Basic 2010 Express to edit an XML file. I want to replace items that have (typically) non-zero floating point numbers with a single zero.

View 4 Replies

VS 2008 Floating Toolbar - Display That Container (containing Toolstrip) In Form

Mar 30, 2009

I've two forms Form1 and Form2, I want to add container(*) in form2 having toolstrip(Toolbar) and later want to display that container(containing toolstrip) in Form1, that enable the user to use toolstrip to execute needed actions written in form2.

[Code]...

View 1 Replies

Convert Single Precision Floating Point Numbers To IEEE 754 Hex And Back?

Aug 12, 2009

Private Function SingleToIEEE754Hex(ByVal pValue As Single) As String

[Code]...

View 1 Replies

Interface And Graphics :: Drawing Objects To Picturebox With Floating Point Numbers?

Jul 17, 2009

If I try to draw a circle by using e.g.

Code:
e.Graphics.DrawEllipse(Pens.Red, 50.133, 100.321, 0.1, 0.1)

I will get an error message. I tried something like

Code:
Public ObjectPoint As PointF
Dim cpoint As New PointF()
cpoint.ObjectPoint = New PointF(startX, startY)
e.Graphics.DrawEllipse(Pens.Blue, cpoint.ObjectPoint, 0.4, 0.4)

but it didn't work for the location and the circle size. How to draw a circle(and rectangle) by using floating point numbers?

View 6 Replies

Why Do Simple Math Operations On Floating Point Return Unexpected (inaccurate) Results In .Net And Python

Oct 20, 2009

x = 4.2 - 0.1
vb.net gives 4.1000000000000005
python gives 4.1000000000000005
Excel gives 4.1
Google calc gives 4.1

What is the reason this happens?

View 4 Replies

Office Automation :: Excel Program Leaves EXCEL.EXE Floating After Completion

Feb 24, 2012

I am writing a program that loops through all of the sheets in an Excel workbook and saves each sheet as its own workbook. It turned out to be a bit trickier than I expected, since the Sheet.Copy method creates a strange object (see here for the MSDN discussion that I believe is relevant: [URL]. Anyway, I found a Stack Overflow post [URL] that got me to where I am, which is essentially complete, outside of one hanging EXCEL.EXE process that is left after the program completes, which I believe is a result of the sheet.copy method creating a new workbook (potentially a new application as well?). The other thing I run into, which I believe is related to this, is that even though I have my application set to visibility off, when I run the program, excel still opens up and is visible going through the steps.

Here is my code:

Code:
Imports System.Data
Imports System.IO
Imports Microsoft.Office.Interop

[CODE]...

Now I think the problem comes from the end of the loop, where I try to close the export file and the new worksheet it creates:

Code:
'close excel and release com objects
System.Runtime.InteropServices.Marshal.ReleaseComObject(exportsheet)
exportsheet = Nothing
xlApp1.Workbooks(fileNames(counter - 1)).Close(False)

I can't figure out what to do to release the `ComObject` for the new worksheet that is created. I have been trying all sorts of things, but it always throws a COM error when I do it and if I try to define it as nothing (like I do with exportsheet) is says that it is read only by default, so I can't do it. It seems like it should be something as simple as: System.Runtime.InteropServices.Marshal.ReleaseComObject(xlApp1.Workboo ks(fileNames(counter - 1))) But that is not the case. I have tried a few variants of this and I am thinking it has to do with the MSDN link above, but I can't quite sort out what to do. So the code works for my purposes, outside of leaving one EXCEL.EXE after it is done. As far as a test file, I am just using an Excel file with 3 sheets and I put some information on each and change the sheet name, so it is easy to see if it is working or not.

View 1 Replies

Make Part That Drops Down Semi-transparent Or Completely Transparent Resembling Floating Text?

Oct 27, 2010

[code] how to make the part that drops down semi-transparent or completely transparent resembling floating text. So that I can see the form underneath.

View 1 Replies

"invalid Floating Point Operation" Error

May 3, 2010

I think this should be a very basic question. Anyways, when trying to run the script:

[Code]...

I get an "invalid floating point operation" error, and the line "c = Log(a+1.0)/(b/2.0)" gets highlighted. Then, without making any changes whatsoever, I run the script again, and it works perfectly, outputting the value 0.2773... How can I fix this, so that it works right the first time?

View 1 Replies

.net - Excel Program Leaves EXCEL.EXE Floating After Completion

Feb 24, 2012

I am writing a program that loops through all of the sheets in an Excel workbook and saves each sheet as its own workbook. It turned out to be a bit trickier than I expected, since the Sheet.Copy method creates a strange object (see here for the MSDN discussion that I believe is relevant: [URL]

Anyway, I found another Stack Overflow post that got me to where I am, which is essentially complete, outside of one hanging EXCEL.EXE process that is left after the program completes (check the update for one more issue that came up, but I think they are related).

Here is my code:

Imports System.Data
Imports System.IO
Imports Microsoft.Office.Interop
Imports Office = Microsoft.Office.Core

[Code]......

Final Update: On the off chance that some poor soul ran into the same issue I was running into, the first update should solve it, but it is also important to note that the excel.exe will hang until you close the application. I am report automation code as a windows form application (so coworkers can give the file location and such) and there is going to be an excel.exe process running until you close the pop up window from the program. Maybe garbage collect does not run until you close the application window or it just hangs on to an instance of excel.exe for some other reason.

View 3 Replies







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