Search results for query: *

  • Users: rhoaste
  • Content: Threads
  • Order by date
  1. R

    Question Serial Port Problem: The given port name is invalid...

    Hi. I am having problems communicating with a UBLOX GPS device using the serial interface over USB. I would like to be able to receive data from the device asynchronously in a receive event when data is sent from the GPS to the computer. mySerialPort.PortName = "COM7"...
  2. R

    BLUE SCREEN OF DEATH occurs when running PING in Parallel.For

    Hi, I would really appreciate some help please with the code below. I created a new project, added a button to a form and put the code below in the click event. When I run it and click the button, after a short while my computer crashes with the Blue Screen Of Death. I have no idea why this...
  3. R

    Question Resolving assemblies at runtime

    My objective is to ensure that during my application initialisation, the installed assembly versions are correct and compatible with my application references. I would like to do this check to make the application fail "gracefully" as opposed to generating an unhandled exception. I'm also...
  4. R

    Question Spliting records into variable formats

    Hi I am splitting data from an ASCII file generated by another system which has records of a varied format. The first 2 characters in each record are used to indicate the structure of the remaining data in the record. For example: 1 2 3 4 5...
  5. R

    Question MSSQL datetime difference by 1ms when inserted.

    I'm testing a vb.net application and have noticed that a datetime column I have inserted into the database differs by 1 millisecond... CREATE TABLE [dbo].[dates]( [d] [datetime] NULL ) ON [PRIMARY] - - - - - - - - - - - - - - - - - - insert into dates (d) values('2009-02-06 17:27:47.312') - -...
  6. R

    Question Missing parameters exception

    I have a web service that I'm testing at the moment which seems to be working fine as long as I pass the correct parameters to it. If I use a browser to go directly to the result of the web service: ie: http://localhost:1468/Service1.asmx/IncreaseDate ...I get an exception...
  7. R

    Question RAW disk I/O.

    Hi, I am attempting to write an application to accompany an electronics project I've been working on. I am capturing data from a device I have built and logging it to an SD card using a micro-controller. The device writes data to the SD card is in RAW format, which does not conform to...
Back
Top