How To Mahe Eraser In Paint Application Using .net

Oct 10, 2010

[code].....

View 2 Replies


ADVERTISEMENT

Chatting Application - Paint - White Board Having Pencil And And Eraser Using JQuery

Jul 18, 2011

i am working on chatting application in which i developed a white board having pencil and and eraser using JQuery. Now i want to show this board to the online users accessing this page. What would be the best approach to so?

View 1 Replies

Make An Eraser Or A Clear Method In A Paint Brush Program?

Apr 15, 2012

i am making a program that can paint something.the painting code is easy to do, but i cannot find out how can i make the clearing of what i have drew.in this code u can see that i made it on the mouse click/down and while moving it it will draw a line.

private shouldpaint as boolean = false
Private Sub Form1_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseDown

[code]......

View 6 Replies

Application (.exe) Eraser / Blocker / Killer Using Timer Control

Oct 20, 2011

my dream project is to create a vb.net program that will able to input applications and then run it and erase it after a given month/day/time.it will allow you to add applications that you can erase after a period of time or do u have applications that able you to input applications then block/erase in period of time?

View 3 Replies

Save As BMP / JPG Or PNG In Paint Application?

Jul 4, 2009

I've used this example to create a paint application in vb express 2008, however the example can only open and save .pic files! How can I make it so that my application can open and save a commonly used image type, such as bmp, jpeg or png? I would imagine it can't be that hard, just saving what has been drawn in the picturebox into an image file, or loading an image into the picturebox.

I have tried to make a load event by using some simple code I've made:
If OpenFileDialog1.ShowDialog() = DialogResult.OK Then
PictureBox1.Image = Image.FromFile(OpenFileDialog1.FileName)
If Not (PictureBox1.Image Is Nothing) Then
m_Picture = Nothing
PictureBox1.Invalidate()
[Code] .....

When I simply delete this section of code, pictures open fine however of course then I cannot draw, which defeats the purpose of my application. So how can I open and save images with my paint app?

View 1 Replies

Create A Paint Program With All The Functions Of Microsoft Paint?

Sep 20, 2009

How to create a Paint program with all the functions of Microsoft Paint?

View 5 Replies

Create A Paint Application In VB Express 2008?

Jun 22, 2009

Create a paint application in VB Express 2008?

View 16 Replies

Inserting Paint Application Inside A Form?

Jun 22, 2010

I am currently working on a small drawing application and I wanted to know if it was possible to insert a paint application inside a form,like vertically dividing the form into two. On one side you have some literature and on the other side you have the application.This paint application just mimics the same Microsoft paint whereby you have an open and save option

View 2 Replies

Paint Application Writing Very Slow - Needs To Be Quicker

Jun 29, 2009

I found some code online for a vb paint application and I modified it for my use, which is a signature application. It uses a tablet connected to the pc to write the signature on the screen and then save it as a bitmap for later retrieval.The only issue i am having right now is that if you write on the tablet too fast, the signature gets broken up alot, any way to quicken the paint process in the code so that I can get a smoother signature?

Here is my code:
Imports System
Imports System.Collections
Imports System.Data
Imports System.IO
Imports System.Xml.Serialization
[Code] .....

View 1 Replies

Including The Functionalities Of Microsoft Paint Or Any Other Paint Pr?

Feb 9, 2011

How can microsoft paint(or any other painting software) be included in a VB.net project? I need to used its functionalities to maipulate jpg and movie file. Is there any ways this can be done on VB.net (or Visual Studio).

View 2 Replies

Paint Background Grey When Application Begins With Splash Screen?

Apr 9, 2012

I am trying to paint the Computer Screen grey for the duration that the splash screen and the next popup screen (both of the dimensions lesser than the Computer Monitor's)run, the background is always grey. [code]...

View 2 Replies

Add Wav File To Box Going To Paint / Bmp?

Dec 15, 2011

Not sure how to do this, eveytime I try to load the the file, it says it won't read wav files.

View 2 Replies

How To Paint On Top Of All Controls

Feb 17, 2009

I'm trying to achieve "disabled" affect of my form when running some process. I thought the best way to implement this was to somehow paint an overlay on top of the whole form with some gradient light gray color. But it seems like using the Form Paint event paints under all child controls. Is there a way to achieve this effect? I think I have seen somewhere else where some sort of snapshot is taken of the whole form and converted to grayscale but I need the form to be sizeable still.

View 3 Replies

A Scribble Tool In VB Paint App?

Feb 15, 2010

A scribble tool in VB paint app?

View 3 Replies

Forcing A Paint Event?

Oct 3, 2009

The only way I know to force a paint event in my pictureboxes is to do a 'Picturebox1.invalidate'. I read that this isn't the best way to do it though, so what's the best way to make my picture boxes repaint?

View 8 Replies

Form Paint Event In .net?

Sep 10, 2009

Weird issue: I have application that I fire some code in the Form_Paint event for the main form, it works fine on my machine, but on other machines is not working at all.

I tried to debug the code on the other machine, and Form_Paint event is not triggered at all!

View 3 Replies

How To Make A Paint Program In VB

May 21, 2009

find a simple tutorial that show me step by step how to make a paint program in visual basic.i want to:

- draw lines
- paint circles and rectangles
- change colors
- text
- erase
- and save my painting
- upload an image

View 4 Replies

Memory Leak In On Paint?

Dec 16, 2009

I created a simple application to display the current Date/time on a Form (see below). When the application runs, the amount of memory used continues to grow. I don't see any obvious problems. I am running Visual Studio 2008 on Vista Business OS.

[Code]...

View 16 Replies

Multithreading Using A Paint Event

Nov 28, 2009

I was wondering how i would go about threading a paint event. I know the basic multithreading but i cant figure out how i would go about applying this on a paint event. This is the way i know how to go about multithreading.

[Code]...

View 2 Replies

Open Paint And Paste?

Jun 11, 2012

How would you open a program like ms paint and paste in automatilcy what you have on a specific part of your form.

View 4 Replies

Paint An Image At A Certain Angle?

Apr 20, 2011

how would i paint an image onto a form according to the mouse position? i have a sprite and i want the front of the sprite to always face the mouse cursor.

View 1 Replies

Paint And Zoom On A Picture?

Dec 7, 2011

Ive been hacking away at this portion of a project for some time and I have a Picbox in a panel, I can, Draw on the image no problem, I can pan and then draw on the image, no problem. How ever when I zoom in out out on the image I can no longer draw on the zoomed image. How ever if I try and draw then zoom again, the lines will show up, but in the wrong places

[Code]...

View 9 Replies

Paint Event Goes Behind Objects?

Mar 27, 2011

so im making a projectile motione simulator for physics project got it all working and im drawing the path of the object with this code

e.Graphics.DrawRectangle(Pens.Red, 25 + xcord(counter1), 600 - ycord(counter1), 1, 1)

however it will draw it behind objects for example if i have a groupbox it will draw(i assume its still drawing at leaste) behind the group box and i cant see it

View 7 Replies

Paint Scrollbar On A Datagridview?

Mar 15, 2010

I have seached through the net to find a solution to customize the scrollbars on a datagridview. I found some stuff, but this seem to be not very easy.

View 1 Replies

Pass Values To A Paint Sub?

Aug 2, 2011

I have been updating a program that was made in VB5. It contains several lines of code that are drawing lines and arcs, for example:

Arc(picCameraImage.hdc, sngOldX - sngCircRadius, sngOldY - sngCircRadius, sngOldX + sngCircRadius, sngOldY + sngCircRadius, sngOldX, sngOldY, sngOldX, sngOldY)

I have figured out, or think to have figured out, that the new way of doing arcs and lines does not require the HDC, so that problem is solved. The problem I am having now is that with the new way, every example I have found created a sub that does the drawings, like:

Public Sub PictureBox1_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles PictureBox1.Paint
Dim radius As Integer = 20
Dim diameter As Integer = radius * 2

[code]....

Is there anyway to pass values to this sub? I have to draw several arcs and lines and the values for them are different everytime. I would like to create a sub that would be used in every spot the old program used the old arc command and pass the needed values through it.

View 3 Replies

Resize Bitmap Like In MS Paint?

Dec 6, 2009

I need to resize a bmp like the resize works in MS Paint - that is with no antialiasing

Anyone know how to do this in c# or vb.net ?

View 6 Replies

Update A Paint Event?

Dec 29, 2010

[url]... I managed to figure out how to paint a bitmap on a form. With some slight modification, I managed to make it so that the position of the bitmap can change based on key strokes.However, for some reason, it only does this once. It can't be that the xPosition and yPosition aren't responding since I rigged two labels to tell me their values and they are changing. So how can I make the bitmap respond.[code]...

View 1 Replies

VB App Pasting A Picture Into Paint?

Aug 29, 2010

I am making a screenshot saver/viewer and I want to be able to click on the PictureBox1 when it has an image inside it, and have it open up "mspaint.exe" and paste the contents of the PictureBox1 Image into Paint. How can I do this? [code]

View 5 Replies

VS 2005 MonthCalendar Paint?

Feb 24, 2010

I have a MonthCalendar control on a panel and it is invisible; when the user clicks on a button I make the panel visible which is fine but the calendar control selected date is highlighted half on one date and half on the other.

Why is this happening? If I simply show the control it does this.

View 2 Replies

[2008] MDI Paint Flicker (Imp)?

Feb 5, 2009

Whenever I load or close child forms or other form (for that matter) then there is flickering in my MDI form. The flickering maybe because the form may be getting painted with gradient or so. Now this flickering is really noticable and I need to solve this. I am pasting the code that I am using to paint my MDI form. If you guys think the code is in efficient then let me know. Or if there is any fix or other way to go about it then I would like to know.

CODE - written inside my MDI form.

Public Class MdiContainer
Inherits Control
Private WithEvents MdiPane As Control

[code]....

View 4 Replies







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