How To Do Magnification Part

Apr 17, 2010

I'm making a magnification program that has a form that follows the mouse around but I can't figure out how to do the magnification part. I thought of using a picture box and somehow get the image that would be behind of the form and just zooming in on it a bit.

View 1 Replies


ADVERTISEMENT

VS 2010 - Image Magnification Centered On Clicked Point

Mar 5, 2012

I have a routine where I click on an image in picturebox1. When the user clicks I need picturebox 2 to show a section of the image in picturebox1 centered on the users click but zoomed in. I have the following function which is doing exactly what I want it to do (except properly zoom in.) I have been able to achieve something that appears to be a zoom but it no longer centers on the clicked point.

Public Function magnify(ByVal position As Point, ByVal main_pic As PictureBox)
vert2.Clear()
horz2.Clear()
Dim img As New Bitmap(pic_magnify.Width, pic_magnify.Height)
Dim gr As Graphics = Graphics.FromImage(img)
[Code] .....

View 1 Replies

Multi Form / Part Application Need To Make Part Protable For Transfer

Feb 22, 2011

im making an application in vb.net (duh!) anyway i have created and coded the whole project and it performs exactly as i want it to (i dont need code help). my problem lies with the fact that my project is 2-3 parts

1.a setup form that gathers inital data about the enviroment stores this data encrypted in a config file. after inital setup this form is not displayed again. but needs to be run on both computers

2. the second form is the real application form im in the process of turning this part in to a background service anyway this form is the one that establishes the connection between two nodes it works correctly

3. the config files

anyway here is my problem i want to make this application distributional with just one file the (.exe) and have this .exe make everything else happen. it runs the setup form and creates the first config file which it does then it needs to produce a copy of just the second form and the config file to transfer to workstation #2 that will run independtly without the whole application which i cant make happen then it needs to turn both workstations application on by only starting one on either computer and invoke the other computer to start its corrosponding app also no idea how to make this happen any ideas or suggestions as to where to look to try to find my answers.im thinking i might need to make two seperate applications (a setup app, and the running app) and include them both in a project and use the setup.exe to to package them together this is a little side project that im making for my self to use to make programming a little easier so i plan on giving it out to some fellow students to test and tell me what they think so im not really worried about ease of use or complicated procedures yet but if it turns out to work and actually be of use to anyone else i would be willing to rewrite it to distribute to the masses but for now i just want it to work for me.

View 4 Replies

Compare Only Day Part And Month Part?

Jan 12, 2012

my requirement is that i have to count occurrence of a certain date and between two months
suppose i have 10-jan-2012 now i have a date range 1-jan-2012 between 1-feb-2013 my requirement is that if i find 10-jan between 1-jan-2012 between 1-feb-2013 irrespective of year i know that 10-jan will come twice between 1-jan-2012 between 1-feb-2013 i am not understanding how to do this.i meanto say that i have to compare only day and month part of the date which will solve my problem

View 1 Replies

Read Text File - Read The Top Part First Then And Match The Line With Bottom Part

May 21, 2009

in my text file i have two part. Called bottom and top. So i need to read the Top part first then and match the line with bottom part. Its like this

[Code]...

View 5 Replies

Add "whole" Part Of A Number To "decimal" Part And Store In String Buf?

Sep 14, 2011

One number is represented with four hex values.First two hex parts are my "whole number" part, third and fouth hex numbers are my "decimal" part. I just wanted to store my complete number (whole and decimal) in an excel table.My problem is following when I am storing whole part and decimal part of my number separately, then it works fine am getting f.e. 3017 and 0,9445123 in my excel table, but when I am concatenate them, then I am getting following expression in my excel table f.e. 30,179,445,123 but I want 3017,9445123.

rx_str_buf(str_cnt) = CStr(Convert.ToInt64((Hex(rx_str_buf(Factor + 7)) & Hex(rx_str_buf(Factor + 8))), 16) +
(Convert.ToInt64((Hex(rx_str_buf(Factor + 9)) & Hex(rx_str_buf(Factor + 10))), 16) / 65536))

[code].....

View 12 Replies

Get Certain Part Of String

Jul 12, 2009

how do I get a bit of a string? Here is an example:

I have a string:

Hello, my name is James, and I was born on 10.5.1990

How can I get the last part of the string (10.5.1990)

note that the last part could vary in length and could be any other date (but in that format)

View 7 Replies

How To Cut Part Of String

Jun 15, 2012

How to cut part from this string..."abb.c.d+de.ee+f.xxx+qaa.+.,,s,"... where i know position by this: Result is always between "." (left side of result) and "+" (right side).I know number of "." from left side and number of "+" from right side, to delimit resulting string.Problem is right side, cause i need to count "+" from end.

Say...
from left side: begining is at 4th "."
( this is easy ), result is =

[code].....

View 3 Replies

How To Use A Thread Part

Mar 16, 2009

seeing i still am a bit of a noob to programming i was wondering if any one could help me out. Iam using the sendmessage to scroll a textbox and i was thinking it would be smart to do that in a other thread seeing the routine uses the thread.sleep methode to control the scroll rate.... but iam stuck at the "how to use a thread part". [code]

View 3 Replies

Put Part Of One Array Into Another?

Nov 20, 2010

I am trying to complete a program that creates an array of the states that begin with New from an array with all 50 states. The code below is what I have so far and cannot seem to figure out what I am missing.[code]...

View 2 Replies

Print A Specific Part?

Mar 6, 2012

I have a form and i want to print a specific part how do i specify that? I have a printdocument and a printpreview

View 3 Replies

Reading An XML File - Part III

Apr 27, 2009

The following code reads an XML file and selects the CREDIT_SCORE node with the lowest value. Works fine if there is always a CREDIT_SCORE node. However, I get runtime errors if a PLUS_BORROWER node does not always have a CREDIT_SCORE child node (especially the first PLUS_BORROWER). I added /CREDIT_SCORE to the end of the XPath (and removed scoreNode references) and now it always selects the minimum CREDIT_SCORE. But I do not get the PHONE_NBR.

First - getting the minimum CREDIT_SCORE in a single XPATH is my primary need. And adding the /CREDIT_SCORE to the XPATH accomplishes this.[code...]

View 3 Replies

.Net Form As Part Of Desktop?

Oct 1, 2011

I've spent a while searching around and I can't find a solution to this:I have a transparent, borderless form that displays a clock. I can load this just fine, but I want the clock to be part of the desktop, so it cannot take focus, is behind other applications, and is not hidden with Win+D (similar to applications like RainMeter).

I need the solution to work with VB.Net (I'm using 2010)

View 1 Replies

Asp.net - How To Get Date Part From Datetime

Apr 1, 2009

Duplicate: How to truncate a date in .net? I have datetime field containing '4/1/2009 8:00:00AM'. I want to get '4/1/2009' without the time.

View 7 Replies

Best Way To Implement A Certain Part Of Model

Feb 13, 2011

I am trying to figure out the best way to implement a certain part of my model.I have an entity named Customer which has CustomerLocations (1-*) which have SalesOrders (1-*) which have Invoices (1-*).I want to allow them to have multiple addresses (Billing and Shipping) per customer and per location. I want to store those values in the sales orders and invoices, not a foreign key, what if they delete one of their addresses later down the road.I have tried complex types, but then they can't have multiple, can they? And having an Address entity, customer --> address (1-*) is ok, but a bit clumsy. How would you have a collection of billing and shipping addresses.?

View 1 Replies

Cant Check The Very First Part The Array

Jan 28, 2009

I wrote this do while loop it is supposed to search through an array until it finds an account number that matches. but I have a problem I cant check the very first part the array when its subscript is 0 because of where i put increment x but if i move it to the end it won't work how can i fix this?

Public Sub AccountNumberSearch(ByVal a() As Account, ByVal accnum As Integer, ByVal numacc As Integer)
Dim x As Integer = 0

[Code].....

View 5 Replies

Checking PART Of Text?

Feb 27, 2009

I am trying to figure out if I have a textbox and user entered and another user wrote How can I have an IF statement to check if there's a bk= SOMEWHERE in the text and if there is then DO something.It has to search for bk= because everybody wont enter hello my name is bk= john, it will be diferent combinations like

[Code]...

View 3 Replies

Click Part Of Image?

Feb 27, 2010

Does anyone know How can I for example make if user clicks one one half of the picture box it will msgbox left side and vice versa?

View 2 Replies

Copy Part Of A List?

Sep 18, 2009

I have a data structure like this :- myvar.mylistdata where mylistdata is of type list (of list (othertype)).

I want to then move the elements of a specified sub list to another list of list var like tmpvar.mylistdata, so i have been trying code like this[code]...

View 5 Replies

Displaying Part Of A String?

Sep 7, 2009

I would like to display only part of string. I am able to do that as long as my string is constant, how the string is not constant. How would display only the last part of my string. The string will actually be displayed by using a browse button and selecting a file.

[Code]...

View 2 Replies

Extract Part Of A String?

Sep 16, 2010

I'd like to be able to store the word swimming, the 2 words either side are always the same but the text before and after that is different each time.

Basically I'd like to be able to grab a piece of text in between 2 strings.

View 6 Replies

Extract Part Of String?

Sep 23, 2011

I want to extract part of a string starting at a specific character, in this case the asterisc[code]...

View 4 Replies

Forms :: Get Part Of String?

Sep 5, 2010

I want to make a function that takes a string and then returns only a specific part of that string.

The string the function will take is a path to a file such as

D:FolderFolder2Untitled Document_1_2.tif

What i want the function to do is return the

Untitled Document_1

Portion of the supplied string.

View 6 Replies

Get Part Of Page (HttpWebRequest)?

Jun 2, 2009

Is there any way to download only a part of a web-page? What I have is a program that downloads periodically (every 5 sec) a web-page and displays some real time information. So I would like to minimize the bandwidth as much as posible.

I have seen that many download managers have the ability to resume a download, so they actually have the ability to start from somwhere in the midle. So can I do that with a single web-page and without messing with the sockets if posible?

View 4 Replies

How To Collapse Part Of Code In .net

Jun 9, 2011

how to collapse a part of code in vb.net?

View 4 Replies

How To Remove A Certain Part Of A String

Jun 2, 2009

how do I remove a certain part of a string, but I don't know what it will be, I only know that it will start with: [Code]

View 4 Replies

How To Remove A Part Of String

Jan 6, 2011

i have the folowing problem: i made a combobox on my form and in order to add items to it i use a normal textbox and a string in application settings, the textbox add's the item in both the combobox( with this code ComboBox1.Items.Add(TextBox1.Text) ) and the string in application settings with the folowing code:

[Code]....

View 6 Replies

How To Remove Part Of String

Apr 9, 2011

How can I remove all of the text to the right of the second to last / in a string.
Before = ftp://sylenttechnologies.com/text/test/another test/
After = ftp://sylenttechnologies.com/text/test/

View 5 Replies

Populate The Value Part Of The Listitem?

Feb 27, 2010

i have a dropdownlist that populates from the sql server database. populating the list is not a problem, but does anyone know how to populate the value part of the listitem.

<asp:dropdownlist id="colors">
<listitem value="1">black</listitem>
<listitem value="2">blue</listitem>

[Code]....

how do you populate the value=1,2,3,4,5 when you're populating from table in database?

View 2 Replies

Print Part Of Picturebox?

Feb 5, 2010

I have a picturbox, which I redraw everytime you move the image inside of it... (g.Drawpath...) So in fact my picture is like 10000x10000, but my picturebox only 1080 x 540. So you only see a specific part of it. Now I'm trying to print ONLY the part I see.

View 10 Replies







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