VS 2008 - How To Jump To X / Y Coords On Picture

Sep 18, 2011

I have a vary big picture with a map on it but the picture is 4110, 4110 X Y. Any way to jump to an x y coords on the picture its all in a panel control.

View 7 Replies


ADVERTISEMENT

How To Program Picturebox So That Picture Does Not 'jump Out' Of Box

Nov 5, 2009

i got some problems in zooming the picture.i have 2 picturebox.picturebox1 is the orginal picture which i DO NOT want zooming picturebox2 is the one which i want to zoom..there are 2 buttons, button1 and button2.when i zoom, i donno how to program the picturebox so that the picture does not "jump out" of the box.[code]

View 5 Replies

Vb 2008 Click On Specific Window With Coords

Jul 7, 2011

i'm using Visual Basic 2008, and my question is following: Is here a way to make vb2008 app click on specific window with coordinates? for example i want to click on my notepad window ( for example on next coords: 20;150 )

View 1 Replies

VS 2008 - Changing Mouse Position Coords Based On Form?

Oct 18, 2011

Basically I want to move my mouse to the coords that is received based on the location of a certain coloured pixel. I can get the coords of the pixel but when using them on mouse position, the mouse position is based on the entire screen rather than the form. How could I change the position coords based on the form rather than the entire screen. E.G. If a certain coloured pixel is 2,2 in a form and I put that as the mouse position, it would go outside the form but I dont want that. I want it to hover of the pixel coords

This is my
Dim bmp As Bitmap = DirectCast(PictureBox1.Image, Bitmap)
For x As Integer = 0 To bmp.Width - 1
For y As Integer = 0 To bmp.Height - 1
If bmp.GetPixel(x, y) = (Color.FromArgb(108, 90, 60)) Then
Windows.Forms.Cursor.Position =
End If
Next
Next

View 2 Replies

VS 2008 Winamp Jump To File?

Jan 7, 2010

I found This code plays a file in winamp(tested) by a user-entered string/partial file name.but dont work

vb.net
'Public Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
Private Declare Auto Function FindWindow Lib "user32" (ByVal lpClassName As

[code].....

View 1 Replies

VS 2008 Make Bounds For A Character That Can Jump?

May 25, 2010

I am trying to make bounds for a character that can jump. I have made the character graphic into a rectangle and I have a square block in the game that the character must jump onto and I have set that as a rectangle.

How would I make it so when the character jumps onto the square block, he stays up there and then when he jumps down, and touches the ground, he stays on the ground. My current jump code is standardized; it does not detect changes in the Y-coordinate. What I have done in the jump for the character is I have made it so the Y-coordinate is increased by a certain amount and decreased by the same amount so the difference is equal to 0.

For example:

Character.LocationY += 8
Character.Location -= 8

View 2 Replies

How To Jump To Next Statement From For Or For Each (like Braces But In Vb) In Visual Studio 2008

Feb 17, 2010

Does anyone know the keyboard shortcut to jump from the start of a For / For Each (or If, While, etc.) block to the end of it in visual studio if you're using vb.net? I found the following which I thought would work but doesn't : Go to Matching Brace in Visual Studio?

Following the comment there I checked Tools/Options/Environment/Keyboard for the Edit.GotoBrace command which is mapped to Ctrl + å in Swedish.Vb.net doesn't use braces per se, but in the following example:

For Each Foo in Bar
Do lots of stuff
Next

I would have thought that the same command should jump me from the For Each to the "Next" but it doesn't do anything. Is there another command (or should that command work but something is broken locally?)

View 1 Replies

VS 2008 - How To Make Bubble Jump From Icon With Message

Mar 17, 2009

How can I make the icon of my program to be shown in the buttom of my screen on the right side, where icons of programs that are running are usually shown? And How can I make a "Bubble" jump from this icon with a messege?

View 3 Replies

VS 2008 Slight Jump In Graphics In The First Couple Of Seconds?

Aug 25, 2009

My application (MDI if that matters) has what appears to be a very quick jump/shift/jerk (lots of descriptions of it) in the first minute that the application is running. I have tried double buffering all the forms...

View 3 Replies

VS 2008 : Why Does CPU Usage Jump So High When A WebBrowser Control Is Navigating To A Page

Jul 26, 2009

Why does CPU usage jump so high when a WebBrowser control is navigating to a page?Is there a way to drop CPU usage?

View 17 Replies

Web Cam XY Coords Of Dot

Jul 22, 2010

I'm working on a project for personal use. I have a web Cam where I took out the lens and replaced it with Blue and Red Cellophane, to filter out light.

The web cam is fed into VB and an infrared (IR) light is shined into the web cam from different positions.

This produces a Black image with a bright white dot moving around.I would like to know if there is a way to get the Dots coordinates (or any other way to measure relative movement from the first dot).[code...]

Would it be viable to take snapshot of webcam's video and search with this engine? (I assume testing is the only way which I am about to try...)

View 1 Replies

X-y Coords Of MenuStrip Item?

Dec 20, 2010

I want to show a ContextMenuStrip beneath a MenuStrip item when that item is clicked. Stuff in the ContextMenuStrip changes dynamically. The ContextMenuStrip is used in a DataGridView. I don't want to duplicate the same items in the MenuStrip.

I can get the mouse coordinates OK, but I don't want that. I want to use the ContextMenuStrip show method referenced to a control. An item in the MenuStrip is not a control, but the entire MenuStrip is a control. If I can get the x-y position of the item in the MenuStrip I can show the ContextMenuStrip in the right place, and it will look just as if it was part of the MenuStrip. how to obtain the location of the MenuStrip item that's active.

View 1 Replies

XY Coords From Mouse Click?

Sep 20, 2010

I am working with a PictureBox and trying to click on the picture and OnClick i want to capture XY coord from the cursor.

I am using the following code

Private Sub PictureBox1_MouseClick(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles PictureBox1.MouseClick
Dim X As Long

[Code]....

The issue i have is that no matter where i click on the picturebox it returns a 0 for both the X and Y coordinates.

I read something somewhere about seting the Scale to Pixel but that doesnt seem to be working for me.

View 2 Replies

Polygon Area And Centriod Coords?

Jan 5, 2010

i dont know how to do this.i need to create a macro to use on microsoft excel to calculate the area of any polygon. my problem is similar to this one: [URL]..but de vb code is not working for me.in attach i send the excel page.i also have to calculate the coordenates of the "center of mass", Cx and Cy using diferents functions.

View 1 Replies

VS 2010 Getting X / Y Coords From Mouse And Clicking

Feb 10, 2011

I am trying to make a program so that u can click a button to save multiple spots on the screen of the x/y coords of the mouse and then after you choose them there will be a hotkey u can press that will automatically click on each of the x/y coords that were chosen earlier. I am not really good at this stuff but if someone could help me out that would be really awesome! =D

View 1 Replies

Tile Game: Converting Pixels To X/y Coords

May 5, 2009

So now I'm working on the map editor for my game. The map itself displays 32x32 pixels out from the upper and left bounds of the form. Each tile is also 32x32. So then i have two labels which display the corresponding coordinates divided by 32, this way it would show you x: 7, Y: 8, or whatever. The issue is that the map will be like 15x10, and when moving the mouse to the 15th row/column, it shows 15, but then moving to the 14th row, still shows 15. The rest of it works fine. Here is the code.

Private Sub FrmDesign_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseMove
If e.X < (subZone.Width * 32) + 32 And e.X > ((subZone.Width * 32) -

[Code]....

View 3 Replies

VS 2008 Error Argument 'picture' Must Be A Picture That Can Be Used As A Icon

May 22, 2009

I want to add a .ico to a notifyicon, but i get this message:Argument 'picture' must be a picture that can be used as a Icon?What is the problem? It is a .ico file..

View 8 Replies

VS 2008 THe JuMpIN CuRsOr - Make Cursor To Jump To The Next Textbox After Type The Digit

Jan 14, 2010

how can i make my cursor to jump to the next textbox after i type the digit

View 3 Replies

VS 2008 Navigating My Code - Flow Can Jump From Place To Place

Mar 11, 2010

Like I imagine everyone, I often have problems navigating my code because the flow can jump from place to place. For example, if my code calls routine1, and I then want to go to routine1's code, I know that I can click in the dropdown menu and it will take me to that sub. But wouldn't it be easier if I could somehow right click on the call to routine way and select something like 'take me there' which would transport me from the function making the call to the code for the function being called? Then it would be easy to hop from place to place.

View 1 Replies

VS 2008 Picture Not Found For Picture Box?

Oct 14, 2009

I am trying to load a pictue into a picture box by using code but it keeps saying it cannot find the picture. This is what I have

PictureBox1.ImageLocation = "E:100_2838"
PictureBox1.Load()

I go and find the picture on my computer right click on it and find its location and copy and paste it into the .imagelocation adding a and the picture name and every time it says picture cannot be found? I have tried loading it from C: or from my jump drive E:

View 4 Replies

Jump From One Form To Another?

Feb 26, 2009

How i can jump from one form to another form in same project in vb.net 2008

View 5 Replies

After Entry Jump To Next Control

Jun 28, 2011

I have a form with textboxes for entering data. One of the textboxes is for entering a value that is always one character. How can I make the cursor automatically jump to the next control when a character has been entered? I'm thinking the key press and release event and then set focus but is there a better way?

View 3 Replies

Jump 3 Lines In List?

May 6, 2012

I have written code to download a webpage HTML source code into a .txt file, once downloaded, the code I posted here adds all lines as strings into a list and is supposed to find an anchor point as a position reference and then jump down the list to the real keyword.

I have an anchor point in this list that is a constant that I will always "know of" but I need to jump down 3 lines below this anchor point to the real keyword I'm looking for that is always "unknown to me" since it's a variable.

My anchor point is the keyword Hair Color which both the words and the line they're on are unique in the entire source code. My target keyword is the variable Brown (in this case), that I can't target directly because neither it nor the line it's on are unique and will change from query to query. The HTML table source code like the one below is always structured the same but some pages may vary in layout depending on the keywords applicable on the webpage. The code structure below however is always a constant, you can always count on all the webpages that the keyword Hair Color is always the 3 line into the table row and its variable is always 3 lines below that. So even though the answer I'm looking for is always 3 lines below my anchor point, my anchor point will not always be on the same line of code in the source code.

HTML code in the .txt file:

<tr>
<td class="paramname">
<b>Hair Color</b>

[Code].....

I may not be using the code correctly, through my attempts I don't know how to do that jump.

how to "skip" or "jump" down lines in my list by predefinition like: "ok, I found my anchor point, now I'm supposed to jump down 3 lines and pass what ever I find there to a string!""ok, I found my anchor point, now I'm supposed to go to the second instance of the keyword Brown from here that I find and pass what ever I find there to a string!"

View 9 Replies

Jump To A Next Case Statement?

Jun 20, 2009

I am not sure what to do with the following. The code below reads from a massive list of phrases, checks for a certain conditions and if all succeed a) adds the output to the new_question list b) keeps the value of the variable incremental to "level_0".

If the fourth "if statement" fails, the code changes the value of the variable incremental to "level_1" and jumps to a second case statement. The problem is that for certain input the code fails form the "third if statement" and execution refuses to jump to "level_1" (bacause the fourth "if-statement" must fail as well). I tried moving the "incremental variable" between the third and the fourth "and if" but since the code reads from a list of phrases even if it returns true, execution jumps to level_1 (as some phrases fail from the third "if statement"). I hope I am making sense

[code]...

View 9 Replies

Making A Character Jump In VB?

Jun 13, 2009

I am trying to make a game where the character can jump, while stationary. How do I incorporate the constant of gravity into this situation?

View 1 Replies

Nested If Statements Jump Over Other Ifs

Feb 24, 2012

I am working in a proprietary language based on basic on a measuring machine. I delibritly set the first two checks to fail for testing purposes. The first set of ifs for size X works great. When the code is run and it gets to Size_Y, if the operator picks "no I don't want to remeasure" (returning a 7) the code jumps all the way to the last end if. I suspect I have improperly nested my Ifthens, but I can't see it.

[Code]...

View 2 Replies

Nested If Statements Jump Over Other Ifs?

Dec 22, 2009

I am working in a proprietary language based on basic on a measuring machine. I delibritly set the first two checks to fail for testing purposes. The first set of ifs for size X works great. When the code is run and it gets to Size_Y, if the operator picks "no I don't want to remeasure" (returning a 7) the code jumps all the way to the last end if. I suspect I have imped this

View 10 Replies

C# - Visual Studio Jump-to Shortcut

Dec 28, 2010

What it the Visual Studio shortcut to switch to recently edited line of code ? (useful after accidentally pressing Page Down for example). I saw my mother using it but couldn't spot what the combination was. Also couldn't find on internet.

View 5 Replies

Cursor Won't Jump To Next Textbox When Tab Pressed?

Mar 28, 2011

i am here with another problem also relating with tab .now i had 15 textboxes in my form ,when i press tab on form it simply jumps from 1st textbox to 9th textbox .

View 3 Replies

Jump Lists In Visual Basic?

Nov 28, 2009

I'd like to know how to make them in VB apps if possible."Victory is difficult to see beyond the devestation incurred in its pursuit."

View 2 Replies







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