VS 2008 Picture Transformations?
Jun 21, 2010is there a control which allows me t amke slideshows of some kind?Like one image flowing into an other after a period of time (like the desktop backgrounds of Windows 7).
View 2 Repliesis there a control which allows me t amke slideshows of some kind?Like one image flowing into an other after a period of time (like the desktop backgrounds of Windows 7).
View 2 RepliesI am using VS2010, and I understand that when I publish a web application, the Web.config I am using is transformed based on the build settings.i.e. When I choose Debug, it uses my development SQL server, and when I choose Release, it uses my production SQL server.What I want to know is: Can I, using only the built in Visual Studio Development Server, select "Release" from the Configuration drop-down, and then the green "Continue" arrow (F5), and run using the transformed Web.config settings?
View 1 RepliesQuestion: I need to draw pictures as below in C#/VB.NET Draw ishihara-transformations (circles in circle without intersection)?
Note that my problem is NOT drawing circles in C#.
My problems is drawing them without much whitespace and without intersection.
My thought would be using "Orbits" and then draw the circles with center on the "orbit" lines. (with some orbit lines for bigger and some only for smaller circles)
In VB2005 GDI+, it's not too difficult to get zooming and panning working together, or rotating and panning. But I am finding it very difficult to get all three functions working in coordinatioin. The code below is the nearest I have reached so far. It's a working example on a standard Windows Form, but please supply your own image. The user can drag the image with the left mouse button, and toggle wheel zooming or rotating by tapping the space bar. Both zooming and rotating work. But the stationary centre of zooming or rotating (marked by a red cross in the example) remains relative to the image.
View 1 RepliesI 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 RepliesI 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:
1- how I can put picture in tool strip and put it convert to split button without the picture go invisible when i click on it
2- how can I make tabs in the forms
3- I want to put pictures in the form in the same place For Example when the user check the radio button or when the user choose the name in the combo box a specific picture should be display?
I am making a program that collects data from the user and then it prints it in a RTB. I can succesfully do this but I want to add a picture in the beggining of the RTB and I don't know to do it. I have the picture in the resources of the project.
View 4 Replieshow to display picture using the Application.startup path? i want to locate the picture in my bin folder inside my debug folder as i selected the name of the candidate in the combo box.
View 2 RepliesImports Word = Microsoft.Office.Interop.Word
Public Class Form1
Private Sub Form1_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load
Dim a As String = My.Resources.picture
[code]....
I wont this in table.cell (3), from listbox2
i want to get a cord of a map from a pricture on vb 2008
//FAKECODE
mouseinside picturebox sub()
label1.text = picturebox.grid.x & ", " pictureboxgrid.y
I have a rom file that I want to display data from The strings I have already retrieved and displayed the problem now is the image. I have read all the bytes for the part of the file that contains all the data I require EN_Title_Icon which is 2112 bytes. The image data is offset 32 byes in EN_Title_Icon and is 512 bytes, How do I loop the bytes and put them as pixels in the picturebox or a bitmap? And can i use the pallet data that is the 32 bytes after the image data? Here is some info on the image
[Code]...
I have my application to where you can load up an image and draw on it with the mouse left down and drag.Only problem is, if the form becomes the inactive one or is minimized/maximized the drawings go away until I scroll the image in the form (I put the redraw functionality in the picturebox.Paint event).How can I make the lines I draw stay permanently? I've put picturebox1.refresh in the minimizedchanged/maximizechanged and form.activated events and still nothing..Even tried the picturebox's resize event and nothing?
View 18 RepliesHow would i get the X and Y of the desktop and place it on a picture box
lets say my screen is 500 x 500(EXAMPLE)
I want my application to get the full (500 x 500) X and Y and an image of the desktop
Then place the X and Y To the picture box. Like this. Now the cords match when mouse is at lets say 100,100 on the picture. It will be 100, 100 on desktop.
1. is it possible to have a picture in a picturebox and then drag it to another so it gets placed there? if so, how? 2. can you assign a picture a name? because if i move it a cant use a code like this: picturebox1... = whatever. if so, how?
if i want to check for 2 variables thats right, do i use "textbox1.text & textbox2.text = 8" or "textbox1.text && textbox2.text"?
I added 100 picture control on form and that name as picturebox1, picturebox2 ......,,, picturebox100
than how make this possible..
[code...]
any technique to add controls in array (which allow vb6)?
how I can scan a image I loaded in my picture box for a certain pixel (say red)
View 4 RepliesWhat i wanted to do is tell the Tool to display me a picture from the Web so lets say this is the Picture:
[URL]
I want that to load in to the Picturebox how does that work ?
I have VS 2008 and use VB, not C#/C++ or whatever else. I'm trying to make a battleship game, and I've decided to use the only method I can think of to control the grid. A 2D boolean array for position marking. I have the array set up, and the grid set up in the design form, but I can't figure out with all my research how to link them together. I'm writing this program to shake off the rust before school starts again, and for fun. I took VB in school last year, a half year class, so I have a foundation, now I'm self-educating myself above and beyond the class. I've searched for a way to use a picture box array to use the coordinates of the ship to .Visible=True the picture boxes. I've been working on this for 2 days straight with no results. I just need a little nudge in the right direction. The exception I've been getting with my latest concoction of code is NullReferenceException was Unhandled. I think its referring to the fact that I have no idea how to link the picture boxes into the array. Here's my code, and I'll comment where the exception is thrown:
Private Sub cmdStart_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdStart.Click
'label for GoTo statements is Tryline:
[Code].....
I have this code in my system which I use to retrieving images from a database by formatted blob. But some database records don't have pictures ([BLOB - 0 B]). list code for me to place an error picture in picture box1 when a picture is not available.
Dim bytes() as byte
bytes = (objdr("picture"))
Dim memStream as New MemoryStream(bytes)
PictureBox1.image = Drawing.Image.FromStream(memStream)
I'm using Microsoft Visual Basic 2008
How I can by clicking a button on my app. open a picture in a picturebox with MS Office Picture Manager?
View 8 Replieshow I can by clicking a button on my app. open a picture in a picturebox with MS Office Picture Manager?
View 1 Replieshow to drag and drop a picture box that it loaded over another picture box..
View 11 RepliesIn a form I have two picture box and I want to drag the picture from the picturebox to a blank picture box and have that picture pasted there, how do I do that? I'm using VB.net 2003.
View 3 RepliesI need to display a arrow picture over another picture. But i cant able to make arrow picture transparent other than the arrow. Always it is in rectangle format(Picture box). I tried the picture box color to transparent, But that doesn't worked. A separate user control for displaying transparent image will be appreciated.
View 2 RepliesI have an app that downloads a picture into a picture box. The picture changes on the web page but not in the picturebox.
How can I refresh the picture box with something like this?
How do I add an image to a Picturebox that is on a website?
such as
PictureBox1.Image = http://mywebsite.com/images/Logo.jpg
Is there an easy way to do this?
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 Repliesi have written a code bit for Pan operation for an image in Picture box. the code bit is as follows: Public Function PANImage(ByVal img As System.Drawing.Bitmap, ByVal PAN_X As Integer, ByVal PAN_Y As Integer) As System.Drawing.Image
[Code]...
I will be detecting the mouse co-ordinates and based on the difference between the co-ordinates from the point of left mouse button click, i will be panning the image. Now the problem is though the image gets Panned, the original image in the Picturebox (PBImage) is not getting cleared.
Now i have a webbrowser that opens a site i want to extract the pictures from the opened site into the pictureboxes but i don't want to load these pictures again from the net?
View 1 Replies