Reading Ports To A Buffer To Parse
Nov 15, 2009
I'm currently working on a little software for my GPS and i havent touched VB in about 10 years so I'm trying to figure this out from scratch again pretty much. Anyway, I have this code to get the information from the GPS and parse it, the only problem is that It isn't getting all the code at once and then parsing, it is getting bits and pieces and only getting the RIGHT code from time to time..
Private Sub timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) _
Handles timer1.Tick
[Code]....
View 6 Replies
ADVERTISEMENT
Oct 19, 2011
I would like to know if there is a way that I can read what a program sends to a device when connected to a comport.
I work with cell phones. I use a few programs like CDMA Workshop, QPST, QXDM, and Many more to communicate with these devices and program them as I need for each cellular carrier. We call this flashing or provisioning.
I would like to create my own program that I can have it send the commands and write to the device what I need to write.
Obviously I know exactly what I need to write to it but I have no idea what commands to use other than using the programs that already have those commands for me.
So for example when I click READ for the NAM on the program, the program automatically reads the name for me. I just want to know how do I read what commands are being sent. Is there a way to listen to the ports?
View 3 Replies
Aug 31, 2011
I have this htc evo phone of mine and I know there are programs that can read and write to the phone via com ports, well anyway is there a way to read and write to files on my phone via com ports, I know you can but how? Because the only thing I can do in comports in vb is ComPort1.Write() and ComPort1.Read so how do I navagate through the phone via comports and read a files contents. And write to it.
View 3 Replies
Jul 13, 2011
where I'm going wrong with my circular DirectSound Capture buffer here? If I just capture sound into a big non-circular buffer it works fine, but with a 1 second (44100 bytes) buffer and a 100ms timer to poll the read position it goes haywire. No error messages, just long blocks of zeros with short bursts of valid data. calculation of the number of bytes to read and/or the read position.
Here is the code. gBuffer is defined elsewhere as a big byte array. In this example I am just trying to copy the captured sound data from the small temporary byte array (tempBuffer) into the big gBuffer byte array. Obviously this must be done so that every byte is read and copied into the byte array with no gaps or duplication of values. Timer1 is set to 100mS:
Dim McaptureBuffer As CaptureBuffer
Dim MiLastReadPos As Integer
Dim MiBufferOffset As Integer
[Code].....
View 2 Replies
Feb 22, 2009
Does reading the serial port empty the buffer?
View 2 Replies
Mar 3, 2009
i need to read a large file stream binary my code is Dim sr As New IO.FileStream(srcFile,
[Code]..
View 10 Replies
Sep 29, 2009
I'm reading a file into a buffer using the Space function. Then I'm using blowfish dll's to encrypt it, and want to write the encrypted data to a txt file. (I realize you can use .NET cryptography classes, but I need to use these old blowfish dll's for this project.) Anyway, when when I encrypt the data in the buffer, I can see all encrypted data, but when I write it out to a file, I get a few lines of encrypted data and the rest of plain text.
HTML
' BLOCK_SIZE is a const which = 2048
sBlock = Space(BLOCK_SIZE)
Using sr As StreamReader = New StreamReader(FileToEncrypt)
sBlock = sr.ReadToEnd()
End Using[Code] ....
View 4 Replies
Apr 15, 2011
I am using the following code to parse a XML file of mine:
Code:
Dim xml As String = "<?xml version=""1.0"" encoding=""Windows-1252""?>" & _
"<theref:theref-msg xmlns:csr=""http://www.xxxxx.com/Schema/csr"" xmlns:theref=""http://www.xxxxx.com/Schema/theref"">" & _
[CODE]...
I get a value of "0" from xmlb when i should get a "1" if it found something. I can get the first half (<theref:header> to </theref:header>) using this command:
Code:
Dim xmlb = (From getXMLData In document.<theref:theref-msg>.<theref:header>).ToList()
View 8 Replies
Dec 15, 2011
[Code]...
This is my code for retrieving pictures, it was working before but then i accidentally deleted the table and i created it again with the same name and same fields. and now whenever i open the form with the picture, there was a message box error. it says Buffer cannot be null. Parameter name: buffer I don't know what i did wrong.
View 5 Replies
Jun 8, 2012
I just want to parse simple expressions like IIF(FVAL(PFC) = TRUE, (IIF((ORGVAL(BAS, "2012/12/31") + ORGVAL(DA)) < 6500, (FVAL(BAS) + FVAL(DA)) * 12%, 780)), 0)`After parsing this I should be able to know what functions contains what parameters.
[Code]...
I'm stuck with .Net Framework 2.0, so no Linq or lambda expression goodies for me. Also I want to include the code in my custom library and not just reference it. Can anyone point me to some good library or code.
I just need to parse and not evaluate the expression and find what tokens are in use. After finding the tokens I need to change the expression string before parsing, like if the function ORGVAL is used then the parameter passed has has to be prefixed by an underscore. Like ORGVAL(BAS) will transform to ORGVAL(_BAS). Some functions can have tow parameters like ORGVAL(BAS, "2012/12/31") and this will transform to ORGVAL(_BAS, "2012/12/31")
NOTE: IF THERE ARE OTHER WAYS OF DOING IT PLEASE LET ME KNOW. I WOULD LOVE TO AVOID A PARSER AND LEXER.
View 3 Replies
Jul 21, 2008
I'm working on a project and would like to know how i can add the list of avabilable serial ports to the combobox[code]...
View 5 Replies
Feb 21, 2012
Anyone here has an idea where I can get the ports name listed in my PC? [code]I could get COM26 and etc. if any, but that's not what I want. Instead of retrieving COM26, I want USB-SERIAL CH340 or USB-SERIAL CH340 (COM26). How could I do that?
View 3 Replies
Apr 10, 2012
I will explain first what kind of program we are talking about: The program that I made works togehter with my PIC Microcontroller to control 2 stepper motors. One for the rotating motion and the second for a tilting motion. With this system I want to make a airplaine pointing and tracking system.
[Code]...
View 1 Replies
Apr 17, 2010
To Double Buffer or not to Double Buffer this is the Question!I have a form with Protected Overrides Sub OnPaint that sets forms background to a gradient fill ,on top of that is a transparent richtext box.
Ok. now here`s the problem ,If i enable forms double buffering the transparent Rtb doesn't flicker when forms resized. but the forms drop shadow does flicker! ,its a boarderless form using CS_DROPSHADOW to draw the drop shadow Now if i disable double buffering the forms drop shadow doesn`t flicker but the transparent Rtb does ,any one have a clue how to get both to work in harmony !
View 3 Replies
Feb 19, 2009
What is the best way of communicating with Serial ports and TCP/IP communcation using vb.net?Using visual studio .net can we make it easier?? Can anyone send me sample application of communications?If I write a program communicating with my hardware using Searial port or TCP/IP, will the program be slow?? Are there any programming techniques working with communication ports?
View 1 Replies
Dec 1, 2011
We need to put a firewall in between our servers and a couple of clients. To do this we need to limit the number DCOM ports available so that we know what ports to open on the firewall.The question I have is do we need to limit the number of ports on all the machines inside the firewall as well as outside. This would cause an issue as we have lots of machines which would need to be modified.If DCOM has the intelligence to negotiate on port 135 which port is available on both machines which need to communicate, we will only need to modify the 2 machines on the outside of the firewall.
View 2 Replies
Jun 6, 2011
I am creating a USB "cookie dispenser" (long story) and I plan on programming it by, when cookie.exe starts, it disables the port, you plug the USB in and press a button and it enables the port (thus powering the device). What I need to know is, is this at all possible? And if so, can you help me get it to work? I know I should put in an effort but it's late for me (UK) and I want to post this overnight so that you guys (in the USA may
View 8 Replies
Sep 22, 2009
how do i detect for open ports? if the server close the port, the client will have to respond with msg("PORT IS OPEN")
View 5 Replies
Apr 6, 2009
I am trying load a text file that contains ips and ports in the format of Ip:Port
this is the code i have so far...its gives me an error of.... Is operator does not accept operands of type 'Boolean'. Operands must be reference or nullable types.
[Code]...
View 2 Replies
Jan 5, 2010
i want to open and close com ports in vb.net and send data through ports.
View 2 Replies
Apr 19, 2011
I Need to be able to read an unknown number of serial ports (I plan to limit the number to 10). I'd like to use a datareceived handeler for all of them. This is what I came up with, that seems to work with my test ports. However I'm wondering if thiscould cause any problems if more data is received than I'm currently testing with. It is possible that one or two ports will be transmitting 16 records per second each. Here is the code I'm testing with:
[code]...
View 2 Replies
Mar 4, 2010
I want to experiment with COM ports but I'm stuck trying to figure out the COM port on my laptop. When I run the following program:
[code]...
PCI expansion card with my wireless internet card in there the hp manuals also say that my laptop should have a PS/2 mouse or keyboard slot but i dont see it anywhere. what ports could "COM3" be refering to?
View 6 Replies
Nov 13, 2009
I want to get the details of a com port on my machine. To be more precise the com port presents itself in the device manager as:
MyPort(COM3)
I know how to get the name of the port i.e. COM3. Is there a way to get the rest of its description i.e. "MyPort".
View 1 Replies
Jul 29, 2009
i saw Anti virus auto run when usb enable but i don't how to check port usb? my idea.i want to run my program when have port usb open
View 8 Replies
Sep 16, 2009
The reply buffer is in ASCII value...but I need is HEX value.Is there any way that the reply buffer is in hex?
Code:
Public Function read_write_string(ByVal devicehandle, ByVal command, ByVal commandlenght) As String
Dim inputReportBuffer(100) As Byte
unManagedBuffer = Marshal.AllocHGlobal(inputReportBuffer.Length)
[code]....
View 4 Replies
Apr 21, 2010
I have a problem that i cant solve i am trying to buffer 28 bytes from the com port into the array actual_packet_VPS1(30). It works with the counter set to 0 - 15 but doesnt work when we increase the counter size to 0 -28.
Private Sub MSComm5_OnComm(ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles MSComm5.OnComm
Dim buffer As Object
[Code].....
View 2 Replies
Jan 12, 2012
I have a need to double buffer a flowlayoutpanel. I have the form set to doublebuffered which is half the story but their is no property in the list to make the flowlayoutpanel do this (although MSDN states that it has this property) how i can set it to true for the panel?
View 5 Replies
Apr 29, 2012
Im trying to do a video player but i have to play this video from the buffer, is this possible.. Let me explain you much more complicated,a got a CryptoStream and im decryting the video
While lngBytesProcessed < lngFileLength
'Read file with the input filestream.
intBytesInCurrentBlock = fsInput.Read(bytBuffer, 0, 4096)
'Write output file with the cryptostream.
[code]....
This code writes my decryted or crypted video to a new file. However, i need to play the video file from the buffer(without copying to a new file), in other way it would be meaningless if i create a decryted file. in other words it would unsecure for me cuz if anyone can locate my temp directorey they can copy my decrypted video files.
View 5 Replies
Jul 9, 2011
Dim Fs as FileSystemObject
Dim TS as TextStream
Set Fs = CreateObject("Scripting.FileSystemObject")
Set Ts = fs.OpenTextFile(textFilePath, ForReading, False,
TristateUseDefault)
While not Ts.AtEndOfStream
Buffer=Ts.ReadLine
' Process the buffer
Wend
Ts.Close
Fs.Close
I tried to convert into c# but am getting ERROR like EOF expected, what I have to do?
View 3 Replies
Jul 31, 2010
I am using VB.net sockets to send a music file from one instance to another. It currently saves the file, but I do not want to be caught up in file-sharing, so I want to "save" it to a buffer, and when it gets to a particular percentage transferred, I want another thread to play the music file, deleting it from the buffer as it plays. I have the code to send it over the network, but I need to know how to keep it in a buffer and not save it as a file.
View 1 Replies