Graphing And Rotating An Array Using VB10?
Apr 16, 2012
I had an assignment that I had done, which has been turned in, I was able to get it to graph, but it when it reaches the right side of the screen it drops off, when it is is adjusted using the velleman controls it jumps back up, hw would I fix this.
Here are the instructon for the assignment:
Write a program tat rads two analog inputs from a velleman board and plots the values on a rotating graph. The number of value plotted horizontally should be specified in a text box. Label the graphs vertical values in at least three places. Print the current voltage reading for each input in it's own lable. The graph should auto scale to fille the graph vertically and horizontally.
The two things that I couldn't get to work is the graph drops off the chart and I was unable to place the vertical values in three places.
Here is my code:
'Date: April 10, 2012
'Progammer: Cathy Hjelm
'Progam: wk8-1
[Code].....
View 3 Replies
ADVERTISEMENT
May 15, 2011
I have two methods in a class for placing and rotating an array of objects(Pieces) on a Board.pieces have a bounding rectangle and a property called center that is the center point of the rectangle(piece).what i want is to rotate all the pieces in clockwise or counterclockwise direction ,depending on the mouse direction,when the mousebutton is down on any of the pieces other than the center piece and the mouse moves.can anyone modify my code below to achieve this or post some new code that does this. using the rotatepiece() method below in a timerevent with a buttondown event to start the timerrotates all the pieces in clockwise or counterclockwise direction.
Shared PosArray(18) As PointF
Shared Increment As Double
'place pieces in rows [order 3-4-5-4-3]
[code]....
View 4 Replies
Aug 26, 2009
I am trying to write a thread safe application that contains 3 threads : -
1 - Data acquisition and decoding
2- Data graphing
3 - FFT and filtering
Thread 1 is collecting bytes from the serial port and converting them int integers (so taking two bytes) after is has captured 64 Bytes and converted into 32 integers, it then needs to pass the array to the graphing thread.
The graphing thread then plots the data and waits for more data.
Thread 3 also waits until thread one has collected 2023 integers and takes these and performs some FFT calculations (which take time).
My question is how do i share the arrays between the three threads without deadlocking the program? as the serial thread will be flying around reasonable fast (1000 bytes per second) so it will synclock onto the shared buffers for most of the time.
Originally i was going to use two synchronised queues, so when thread 1 has collected 32 bytes it queues the data into the graph queue, and once it has collected 2023 it queues the data into the FFT queue.
Then thread 2 and 3 can simple dequeue the data.
However using queues has the overhead of casting the data in and out, and as i know the data type i was planning on using two arrays :-
Dim GraphArray() as ushort
Dim FFTArray() as ushort
Then Thread 1 adds data to each thread, and thread 2 and 3 simple wait until the correct amount of data is available before removing the data. my question is there an array type that allows me to remove x amount of data from an array?
Because i cannot do this easily with the ararys defined as above (GraphArray, FFTArray), as i was planning on making them 1mByte and allowing thread 1 to fill them Knowing they should never overflow and then let thread 2 and 3 remove x amout of bytes at a time unless there is a better way of doing it
View 13 Replies
Dec 3, 2010
I currently have an app that records several temperatures then logs them to a csv file every minute. I am thinking about adding some sort of graphing capability. Which direction should I look to accomplish this? I did a few searches but for some reason it wasnt pulling anything realavent up. Eventually I would want to have it autoscale based on max and min temps, as well as export the graph to a GIF to JPG. Need to figure out the plain graph first...
View 3 Replies
Mar 7, 2010
Does VB.net have anything built in for graphing functions? Linear, quadratic, cubic, log, and absolute value functions would be my main needs. I would want to display the functions on a graph whose x- and y-axes both go from -10 to +10, with grid lines.
View 1 Replies
Oct 6, 2011
I am trying to create a graph that changes every second and just shows a 3 second history. In my head it would make sense to tie it into the T variable (Time in seconds), so I have form1 outputting T to a text box on form2 and then everytime that textbox changes it graphs the new chart.
The reason I am doing the step ladder approach is because I wanted the numbers to appear under the points as they travel. does this make any sense at all, or am I completely off base?
[Code]...
View 1 Replies
Sep 28, 2010
I recently aqquired VB 2010 Express but have limited programming experience.I am looking for sample code and/or literature which will show me how to plot a Y=f(X) curve - for example code which will plot a straight line, a parabola, etc.I need it as a template from which I can learn about how to build such a graphing program and then tailor one to my needs.
View 3 Replies
Jun 9, 2009
I have a program that is supposed to display a line chart of some values Im reading in from an XML sheet. The function that reads the data into arrays works fine. When I try to graph the values, all I get is a flat line.
View 15 Replies
Nov 24, 2010
I have a graph that shows the balance of any number of individuals' accounts over time. The data is taken from a SQL datatable that contains the Individual's ID, Date&Time, and Account Balance.
The account balances of different individuals are not necessarily recorded at the same times. So for person1 I may have:
11/24/10 10:32:43 am - $150
11/24/10 1:47:13 pm - $180
11/24/10 5:15:34 pm - $140
[Code].....
So I want to graph the total between these two individuals, but the 'x-value' of their data points don't match up, so I can't simply add up the 'y-values' of corresponding points.
If I wanted to plot points showing the total between accounts, what should I do to achieve this? I would like this to work for not only 2, but any number of individuals.
The first thing I've decided is that I need to set an interval at which the total will be collected: every 10 min, every 1 hour, etc.
If I supply a date/time value as a parameter, how would I retrieve the most recent balance entry from each individual?
View 1 Replies
Feb 6, 2011
I am working on a programing project for my college class. The program is working fine except when it graphs the data on the panel it flickers and doesn't always do it smoothly. I'm sure there are more efficent ways of doing this, but this is what my class specifically wants. Also, it must run on the timer otherwise I would have made it calculate without delay. Here is the
Program
Public Class Form1
Dim n As Double
Dim myGraphics As System.Drawing.Graphics
[code]....
View 3 Replies
Apr 23, 2009
I am trying to allow the user to rotate a jpeg and I know that you can do it pixel by pixel but WIA 2.0 is supposed to have that functionality built into it... When I try to set the filter, exactly like they do in the example.
[Code]...
View 4 Replies
Jun 2, 2010
Anyone got any ideas on how i would go about fading in/out a textbox? Because only forms have opacity properties i was thinking of something like setting the background color to transparent and setting the forecolor of the text to the same as the background color. Then using a timer i could slowly change it to black, etc.
View 7 Replies
Aug 30, 2010
Is the Horizonatal scroll bar an available tool in VB10. If so where is it?
View 5 Replies
Dec 1, 2011
I am writing a program for my intro to programming class. we have to make a bar chart using asterisks to show the bar items. he said we have to use nested loops. that i understand, but i can't figure out how to add the asterisks into the string without causing them to all be on separate lines.
View 3 Replies
Jun 24, 2012
I want to Replace a file with another in vb 10.
1)when Anyone click a button it will open a open directory.then it have to replace the file they choose with mine.
2)i need the code
Dim as new openfiledialog
View 5 Replies
Apr 8, 2010
i am going to create one system which is related to test skill and it is in VB.Net and access database it has a question and four answer. both are coming from database,my problem is how do i change answer sequence everytime.whenever user tried for the test, answer sequence should be different.
View 14 Replies
May 23, 2010
So far:
PictureBox1.Image.RotateFlip(RotateFlipType.Rotate90FlipNone)
but this only turns at 90, 180, and 270 degree angles, also allowing flipping, but isn't exactly what I am after. I am trying to make the picture spin randomly at a variety of angles, but even if I can only get 45 degrees is better than just having 90 degree ones.
However I have only been able to find the above example in my searches.
I am trying to solve the issue that I posted about in the game programming forum about the animated dice. It seems that this is a very difficult thing to achieve, so I am going at this in an obscure way. My idea behind this is to have a timer set the images in a picture box according to random counters (which I have working). Then I plan on making the image rotate along with the timer (which is where I am at now). Then I plan on having the picture box move across the screen along with the timer (bouncing off the sides)...I think that this might be a bit better when trying to achieve an "authentic rolling dice" without actually having to do everything in 3d.
View 1 Replies
May 9, 2011
I'd like to rotate only one of the shapes in an animation, but the rotatetransform method applies this rotation to the whole view. I have several shapes which I want to remain stationary, and just one that should be rotated. I've been trying to use containers but so far this hasn't helped. This is visual basic on XP, using .net gdi+, system.drawing. I'm using translatetransform to establish a rotation center.
Private Sub ellipse()
myBuffer.Graphics.Clear(Color.White)
myBuffer.Graphics.TranslateTransform(200, 400)
If plus_clicked Then
[code]....
View 1 Replies
Jul 1, 2010
how do i change AxShockwaveFlash1 To ShockwaveFlash1 in vb10
View 1 Replies
Apr 15, 2012
is there a library for the matrix like the library of the complex numbers for example?
View 2 Replies
Jul 7, 2009
Can we display pictures in a cubical box and make it rotating on screen using vb express 2008?
View 1 Replies
Jun 8, 2011
I want to make a small logo in the upper corner of a Form rotate.
I've seen on some forums that they have small avatars dancing and such, so I imagine it would be posible to make a tiny image rotate by it self up in the corner in a Form.
Does anyone know how to do this? Link to tutorial, codesnippets etc..
Ps. The goal is to make it smooth. Not turn 4 x 90 degrees.
View 6 Replies
Jun 8, 2011
How to make a small image rotating
View 1 Replies
Jun 18, 2009
I'd like to be able to graphically represent a position in a 3D graph and be able to rotate the grid to match a certain perspective. I've looked for tutorials online, but they all mention how to import or create common file types. I don't want or need to do this. I just need to know where to begin. I have the DirectX SDK, but I'm not sure where to start with it and need some direction.
View 1 Replies
Nov 25, 2010
I'm trying to use mockling with VB10(VS2010) to improve my unittesting. I have a C# lamda expression example but I don't know how to implement this in a VB lamda expression? v => v.Load += null The full Moq to raise the load event would be view.Raise(v => v.Load += null, EventArgs.Empty) .Net Developer
View 1 Replies
Apr 22, 2011
i have a game in which i move my character (the picturebox) using the keys W, S, A, D....how do i rotate the image inside the picturebox to where it always follows the cursor?
View 1 Replies
May 21, 2012
The title basically says it all. What are the main differences between .NET 4.0 and .NET 4.5 and is it worth upgrading to .NET 4.5?Jordan St. Godard |Microsoft® Community Contributor 2011
double twoCents = .02;Console.WriteLine("$" + twoCents.ToString());
View 9 Replies
Dec 6, 2011
I have just opened VB10 for the first time and it converted my VB8 program beautifully, except that all of the screens are not showing any data !
My reference to the MS Access database file is as follows :-
"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:MoneyMoney.mdb"
Do I need to change any of this syntax or is there some other reason why VB10 won't show anything ?
View 19 Replies
May 27, 2011
How can I set the width of a form in inches (or cm) instead of pixels?
I want to print the form, so it needs to always be the same dimensions (4" by 6"). I saw some examples for previous versions of VB, but nothing that works in VB10.
View 3 Replies
Nov 30, 2010
I recently finished a class that we're using to tie Access to some WCF Services. Of course this means that the .Net classes (and all of their properties) need to be visible to COM. Given that I'm using VB10 and the Contact class has about 20 properties I went ahead and used auto-implementing properties.Much to my surprise, the properties were not accessible from within VBA in Access. I tried marking the properties as ComVisible (which I didn't have to do in the past with standard properties) and it still didn't work. After changing the auto properties to standard properties everything worked.
Became
Public Property FirstName As String
Get
[code].....
View 1 Replies