Click here to Skip to main content
15,881,744 members
Home / Discussions / Visual Basic
   

Visual Basic

 
Generaluse vb.net to develop web based application Pin
shee_dee8610-Apr-08 22:50
shee_dee8610-Apr-08 22:50 
GeneralRe: use vb.net to develop web based application Pin
Christian Graus11-Apr-08 1:45
protectorChristian Graus11-Apr-08 1:45 
GeneralRe: use vb.net to develop web based application Pin
shee_dee8613-Apr-08 15:19
shee_dee8613-Apr-08 15:19 
GeneralRe: use vb.net to develop web based application Pin
Christian Graus13-Apr-08 15:57
protectorChristian Graus13-Apr-08 15:57 
GeneralArray of objects in an array of objects Pin
Mycroft Holmes10-Apr-08 22:26
professionalMycroft Holmes10-Apr-08 22:26 
GeneralRe: Array of objects in an array of objects Pin
Christian Graus11-Apr-08 1:45
protectorChristian Graus11-Apr-08 1:45 
GeneralRe: Array of objects in an array of objects - resolved Pin
Mycroft Holmes11-Apr-08 14:39
professionalMycroft Holmes11-Apr-08 14:39 
QuestionSending Extended ASCII values from serial port Pin
kranthikiran.a10-Apr-08 21:13
kranthikiran.a10-Apr-08 21:13 
Hello Guys Im new to VB.NET.I want to send Extended ASCII values through serial port.The values i want to send from serial port are 0A5 0F0 0A6(in decimal 165 240 166)in hexa decimal with 10 milli seconds delay among every byte.I m really struggling to send this.But when i saw this data through hyperterminal i m getting "?"
charecters and some times junk values.Kindly please help me.I m really thankful to u.
code i have written is

Private Sub ReadVI_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ReadVI.Click
Start(0) = 165
VI(0) = 240
Endd(0) = 166
If SerialPort.IsOpen = True Then
Delay = CInt(txtDelayinms.Text)
rtbDisplay.SelectionColor = Color.Blue
rtbDisplay.AppendText(vbCrLf & "Reading Phase Voltages & Currents :")
rtbDisplay.ScrollToCaret()
SerialPort.Encoding = Encoding.ASCII
SerialPort.Write(Start, 0, 1)
'SerialPort.Write(Convert.ToChar(165))
SerialPort.BaseStream.Flush()
Thread.Sleep(Delay)
SerialPort.Write(VI, Offset, Count)
'SerialPort.Write(Convert.ToChar(240))
SerialPort.BaseStream.Flush()
Thread.Sleep(Delay)
SerialPort.Write(Endd, Offset, Count)
'SerialPort.Write(Convert.ToChar(166))
SerialPort.BaseStream.Flush()
Thread.Sleep(Delay)
Else
MsgBox("Connection Not Established", MsgBoxStyle.Critical, "Message")
End If
End Sub
GeneralRe: Sending Extended ASCII values from serial port Pin
Rajesh Anuhya10-Apr-08 21:48
professionalRajesh Anuhya10-Apr-08 21:48 
QuestionCrystal Report from SP ask Login Password Pin
bharat khandelwal10-Apr-08 19:53
bharat khandelwal10-Apr-08 19:53 
QuestionHow I can check cookies are enable or disable? Pin
Ashish Kumar Vyas10-Apr-08 19:23
Ashish Kumar Vyas10-Apr-08 19:23 
AnswerRe: How I can check cookies are enable or disable? Pin
Christian Graus10-Apr-08 20:03
protectorChristian Graus10-Apr-08 20:03 
GeneralVB.NET form location Pin
Joe Surls10-Apr-08 16:54
Joe Surls10-Apr-08 16:54 
GeneralRe: VB.NET form location Pin
Christian Graus10-Apr-08 17:40
protectorChristian Graus10-Apr-08 17:40 
GeneralRe: VB.NET form location Pin
Joe Surls10-Apr-08 17:52
Joe Surls10-Apr-08 17:52 
GeneralRe: VB.NET form location Pin
Herl the Pearl10-Apr-08 23:41
Herl the Pearl10-Apr-08 23:41 
Generalweb based application Pin
shee_dee8610-Apr-08 15:58
shee_dee8610-Apr-08 15:58 
GeneralRe: web based application Pin
LloydA11110-Apr-08 17:08
LloydA11110-Apr-08 17:08 
GeneralRe: web based application Pin
Christian Graus10-Apr-08 17:30
protectorChristian Graus10-Apr-08 17:30 
GeneralVS 2005 VB - MS ACCESS 2007 - Crystal Report XI R2 "Error: Logon failed.." Please help!! [modified] Pin
vbDigger'z10-Apr-08 14:33
vbDigger'z10-Apr-08 14:33 
GeneralID3v2 tag size not sync byte Pin
clusto10-Apr-08 11:35
clusto10-Apr-08 11:35 
GeneralText Box and String Manipulation Pin
Debi 10-Apr-08 10:39
Debi 10-Apr-08 10:39 
GeneralRe: Text Box and String Manipulation Pin
Dave Kreskowiak10-Apr-08 12:37
mveDave Kreskowiak10-Apr-08 12:37 
GeneralRe: Text Box and String Manipulation Pin
Luc Pattyn10-Apr-08 12:44
sitebuilderLuc Pattyn10-Apr-08 12:44 
GeneralRefreshing the program Pin
mykingdomforanewusername10-Apr-08 7:45
mykingdomforanewusername10-Apr-08 7:45 

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.