VS 2005 Zoom Magnifier Window?

Oct 25, 2009

How would i go about making a zoom magnifier window, similar to the one in Snag it?The main form would have a picturebox with a image loaded, a second smaller form would act a as magnifying window, magnifying the image from form1 and refreshing to reflect the new location of the cursor when it is moved across form 1.

Would i need to take a screen shot of a area around the cursor then load it into the second form and refresh the screen shot every time the cursor moves or is there a procedure already to do this?

View 20 Replies


ADVERTISEMENT

Draw A Zoom Window Rectangle?

May 20, 2010

I have drawn a diagram of lines on a panel using the g.DrawLine command. I want to be able to zoom in to the diagram and define the zoom area by two cursor picks. I get the coordinates of the picks and draw a rectangle using g.DrawRectangle. This works fine but as I move the cursor around, the rectangle becomes solid black (with all the DrawRectangle commands). In VB6 I used a rectangular shape on top of my diagram but you cannot do this in VB2008. I need something like drawing in XOR mode. Somehow as I move the cursor I need to undraw the old rectangle and draw the new rectangle.

View 11 Replies

Zoom Video In Window Media Player?

Jul 13, 2009

I want to make window application in which I want zoom in and zoom out functionality.I mean I want to change size of video running inside window media player.I have tried but did not suceed.

Private Sub Form2_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
xWindowsMediaPlayer1.URL = "C:\Documents and Settings\Node2\Desktop\video\bear.wmv"

[code].....

View 1 Replies

Make A Magnifier Using Program 2008?

Aug 27, 2011

How I can make a magnifier using vb 2008?

View 9 Replies

Zoom In/zoom Out Screen Display/output?

Apr 4, 2009

How can I zoom in/zoom out screen display? This is to be used for people having eyesight problem. I want to control the screen resolution by percent and not to any fixed size provided in control panel/display settings.I have to control the output of the main display and zoom in/zoom out by percent, according to user's eyesight matching

View 3 Replies

[2008] Zoom In And Zoom Out Document In Webbrowser?

Aug 26, 2008

Is there a way to zoom in and zoom out document in webbrowser?

View 1 Replies

VS 2008 Zoom In / Zoom Out Option?

Oct 30, 2009

I created a Zoom in and Zoom out function for my application and it works great. I would just like your opion on my code, because I am wondering if it can be done a bit neater and more effective.

ts = ToolStrip
cms = ContextMenuStrip
vb.net
If Me.Font.Size < 30 Then

[Code]...

Me.form.font changes the font of all the controls except toolstrips, contextmenu's and menustrips.

Any idea's if this can be done any neater or how you can make menustrip etc.. use the font of the form?

Edit:This is the Zoom In version btw. The Zoom out is identical except it uses - instead of + when declaring the newFontSize.

View 1 Replies

VS 2005 Setwindowpos For Top Most Window Making Window Size Zero?

Oct 5, 2011

I have the following function that should make the window always on top of other applications.

Private Declare Function SetWindowPos Lib "user32" _
(ByVal handle As Long, ByVal hWndInsertAfter As Long, ByVal x As Long, ByVal y As Long, _
ByVal cx As Long, ByVal cy As Long, ByVal wFlags As Long) As Long

[Code]....

The problem is that it reduces the window size so that you can only see the title bar and min/max/close buttons. Also, even that does not stay on top of other windows.

I have used this function before on a windows 7 machine (instead of xp which this one is on) and it worked fine.

View 4 Replies

Add Functionality Of Zoom In And Zoom Out?

Oct 13, 2010

vb.net how to add functionality of zoom in and zoom out

in AxWebBrowser in vb.net using buttons .

I am able to do it using ctrl + mousewheel but how to do it programatically.....

If I open an excel file in the axwebbrowser then this functionality will work or not ..

View 3 Replies

Zoom In And Zoom Out A Richtextbox ?

Jul 19, 2011

how to zoom in and zoom out a richtextbox in vb.net.

View 4 Replies

Zoom In And Zoom Out PictureBox

Apr 7, 2011

i have map of a State, i need to let the user to Zoom in amd Zoom out and show some buttons on the Picture if we zoomin or zoomout the buttons also will be moved according to the location like google map how to achive this?

View 9 Replies

Store PDF File Into Sql Server 2005 And Display In A Picture Box On VB 2005 Window Form?

Mar 13, 2009

I am using memorystream to get and store images into sqlserver 2005 table image field. This process is working and I am able to display image in picture box. I need to be able to store PDF files into the same field and be able to display in a picture box.

View 2 Replies

VS 2005 Debugging In Immediate Window

Mar 8, 2011

Trying to debug a Windows application, in the Immediate Window, if I type the following:?UBound( I see a tooltip showing the syntax of UBound, but when I complete the statement as ?UBound(CBa) where CBa is the name of an array, I get the response: Name 'UBound' is not declared. Strangely enough, the UBound function is referenced in the code prior to the breakpoint, and works correctly. Why can't I use it in the Immediate Window? I have the same problem with the Len function, it says it's not declared.

View 6 Replies

VS 2005 How To Take Picture Of Window

Mar 25, 2009

I have a Window Form app that I would like to take a picture of the complete main window. After that, I want to be able to somehow hide the actual window, and replace it with this snapshot, at which point I want to be able to move the picture around the screen, like rotating, etc.

View 1 Replies

VS 2005 Screenshot Of Everything But Window?

Jan 9, 2010

I'm making some Aero-style transparent forms (signature), and they work just fine. However, to get a screenshot of the area behind the form using Graphics. CopyFromScreen(), the form has to be less than 100% Opacity, so CopyFromScreen doesn't include the window in the picture. This also means that when you have more than one open, they see through each other.

View 11 Replies

VS 2005 Enable Only Active Window?

Apr 22, 2010

Say I have a mdi child form open. The user should either click the buttons 'ok' or 'cancel' to access any other forms in the application.

View 2 Replies

VS 2005 Find The Right Terminal Window?

Apr 26, 2010

we use a terminal emulator called facetwin to run our main unix based applicationswe want to attach a small document scanner and magnetic strip reader to the system this runs oncurrently we have a magnetic reader that emulates a keyboard so it sends keystrokes back to the unix app. however the new scanner does not.i can get around this by having the unix app send a special command that facetwin understands so it tells the local windows machine to run my vb application that controls the small document scannermy vb app then sendkey's back the relevant info.this is all great and works fine, yet i have a problemthere are 3copies of facetwin running at anyone time all are logged in as the same user but maybe processing diferent things.

View 2 Replies

VS 2005 How To Draw On Another Process Window

Sep 3, 2009

i am trying to write a code who find a window and draw line or string on it but nothing found yet,the process can aslo be a game so did it required to use 'Direct3dx' i try something like this but not woking...

[Code]...

View 2 Replies

VS 2005 Window Bring To Front

Oct 24, 2009

So I have this code to make a "windows taskbar". When you click on an item, it's supposed to bring that window to the front. The only problem is that's not happening. When I use Debug.WriteLine, it has the right window title, except it doesn't come to the front. What's wrong? There is no EntryPointNotFoundException or anything, it just doesn't bring the window to the front.

[Code].....

View 8 Replies

Putting 2005 Directly Onto Window 7 Vs Virtual XP

Dec 12, 2009

I recently put my Visual Basic 2005 onto Virtual XP ( which is a part of Windows 7). Should I put it directly onto Windows 7?

View 1 Replies

VS 2005 Take And Save Screenshots Of The Current Window?

Oct 28, 2009

how to take and save screenshots of the current window or whole screen which ever is simpler.

View 9 Replies

VS 2005 HTTP POST From Window App To A Webpage?

Aug 3, 2009

how can i do a HTTP POST in my window application to a web page?

View 6 Replies

VS 2005 What Command Is It To Get Window Position Coordinates

Jul 7, 2009

If TextBox1.Text has atleast one number 0 or 1 or 2 or 0 (it may have text too, with numbers) then End If Also what command is it to get window position coordinates and what winpos[x] and winpos[y] are. All I found was setwindowpos

View 2 Replies

Watch Window In Visual BASIC 2005?

Oct 23, 2009

I am trying to add a watch window in Visual Basic 2005 (version 8.005)

When I select "Debug" and then "Windows" from the menu, no "Watch" option shows up.

I am new to VB 2005.

View 2 Replies

Add Data In A Window Form To A Sql Database In Program 2005?

May 7, 2012

How can you add data in a window form to a sql database in visual studio 2005?[code]...

View 1 Replies

VS 2005 - Creating New Application (Solution Explorer Window)

Mar 16, 2011

I seem to have some finger trouble creating a new application, here is what I am trying to do: I am trying to create a new solution and under the solution an exe (console project and a set up / deployment project. I have done this in the past and cannot see to do that any more.

Steps:
1. Create a new solution, the solution show in the solution explorer (with 0 projects)
2. Using "add" I create a console application (under the solution) and it shows a module etc. So far fine.
3. At this point the solution explorer windows only shows the console project and the solution itself (that used to show on the top) is gone. Now I am not able to add another project to my solution. I close my screen and then try to open the solution again. It comes up with the console project.

View 2 Replies

VS 2005 Resize Image To Match Window Dimensions?

Mar 27, 2010

I'm making a photo editor and the size of the image depends on the size of the window, like the Zoom mode in the BackgroundImageLayout property of a form. It works sometimes: when resized only a small amount, it does nothing, but when the image is resized more than that, it jumps to the right position.

vb.net
Private Function GetImageRect() As Rectangle
Dim r As New Rectangle()
If Me.ClientSize.Width > Me.ClientSize.Height Then

[Code]....

View 3 Replies

[2005] Opening Word Document In Window Form?

Feb 9, 2009

i need assistance that will help me open word document in window form. i will be glad if someone can furnish me with sample code .

View 1 Replies

[2005] Possible To Execute Any Code When Click On The X Of Window To Close It?

Feb 24, 2009

I want to know, is it possible to execute any code when I click on the X of window to close it. How?

View 3 Replies

VS 2005 - Process.Start() Browser Session & Specify Window Properties

Apr 3, 2009

I want to launch a browser session from a Windows App to load a specified file using system.diagnostics.process.start("http://www.abc.com/doc1.doc") but I'd also like to specify that there shouldn't be a toolbar etc. on the browser window. Is this possible?

View 6 Replies







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