Click here to Skip to main content
16,008,299 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: How create a client server windows application Pin
xstoneheartx31-Jan-07 23:44
xstoneheartx31-Jan-07 23:44 
QuestionHow to put Combobox in datagrid at runtime Pin
Member 374296531-Jan-07 6:34
Member 374296531-Jan-07 6:34 
QuestionMDI Form ToolStripMenu Pin
dpagka31-Jan-07 3:51
dpagka31-Jan-07 3:51 
AnswerRe: MDI Form ToolStripMenu Pin
shreekar1-Feb-07 0:11
shreekar1-Feb-07 0:11 
QuestionAny one can help me Pin
Ahmed El-Badry31-Jan-07 3:42
Ahmed El-Badry31-Jan-07 3:42 
AnswerRe: Useless subject Pin
Guffa31-Jan-07 6:07
Guffa31-Jan-07 6:07 
GeneralRe: Useless subject Pin
Ahmed El-Badry31-Jan-07 9:31
Ahmed El-Badry31-Jan-07 9:31 
QuestionHow do you adjust graph Axes? Pin
KojoAmuel31-Jan-07 3:05
KojoAmuel31-Jan-07 3:05 
I have been trying to adjust the X and Y axes on my graph so I can have a noticeable distinction between data point values.
The problem is my Y coordinate values range from 0.20 to 0.45, which displays almost a perfectly straight line across my graph.

Is there a way that I can set the Y axis to +1/-1 and the X axis to 0/+1025? Also is there a better way to center the data in the middle of the graph in order to better view the fluctuations?

Here is the portion of my code that prints the data to a panel on a form:

Dim xOne, yOne, xTwo, yTwo As Object
Dim penColor As New Pen(Color.Red, 0.01)
xTwo = 0
yTwo = 75 'center line in middle of graph

For I = 1 To 1024
xOne = I
yOne = Y - Voltage(I) + 75
WavGraph.CreateGraphics.DrawLine(penColor, xTwo, yTwo, xOne, yOne)
xTwo = xOne
yTwo = yOne
Next I





AnswerRe: How do you adjust graph Axes? Pin
CPallini31-Jan-07 7:47
mveCPallini31-Jan-07 7:47 
GeneralRe: How do you adjust graph Axes? Pin
KojoAmuel31-Jan-07 8:04
KojoAmuel31-Jan-07 8:04 
GeneralRe: How do you adjust graph Axes? Pin
CPallini31-Jan-07 9:02
mveCPallini31-Jan-07 9:02 
GeneralRe: How do you adjust graph Axes? Pin
KojoAmuel31-Jan-07 9:23
KojoAmuel31-Jan-07 9:23 
GeneralRe: How do you adjust graph Axes? Pin
CPallini31-Jan-07 11:03
mveCPallini31-Jan-07 11:03 
GeneralRe: How do you adjust graph Axes? Pin
KojoAmuel1-Feb-07 2:37
KojoAmuel1-Feb-07 2:37 
QuestionUrgent Free Hand Drawing - Modified Pin
TheApocalypse31-Jan-07 2:41
TheApocalypse31-Jan-07 2:41 
AnswerRe: Urgent Free Hand Drawing - Modified Pin
xstoneheartx31-Jan-07 6:36
xstoneheartx31-Jan-07 6:36 
AnswerRe: Urgent Free Hand Drawing - Modified Pin
Christian Graus31-Jan-07 8:49
protectorChristian Graus31-Jan-07 8:49 
QuestionWhat's wrong in my code? Pin
.NetRams31-Jan-07 1:32
.NetRams31-Jan-07 1:32 
AnswerRe: What's wrong in my code? Pin
Dave Sexton31-Jan-07 3:21
Dave Sexton31-Jan-07 3:21 
GeneralRe: What's wrong in my code? Pin
Guffa31-Jan-07 5:59
Guffa31-Jan-07 5:59 
AnswerRe: What's wrong in my code? Pin
Christian Graus31-Jan-07 9:19
protectorChristian Graus31-Jan-07 9:19 
GeneralRe: What's wrong in my code? Pin
.NetRams31-Jan-07 17:08
.NetRams31-Jan-07 17:08 
AnswerRe: What's wrong in my code? Pin
TwoFaced31-Jan-07 18:45
TwoFaced31-Jan-07 18:45 
Questionreal time graphics in VB.net from serial port Pin
2of10031-Jan-07 0:50
2of10031-Jan-07 0:50 
AnswerRe: real time graphics in VB.net from serial port Pin
Johan Hakkesteegt1-Feb-07 2:47
Johan Hakkesteegt1-Feb-07 2:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.