Search results for query: *

  • Users: venablc
  • Content: Threads
  • Order by date
  1. V

    Dissecting raw packet data

    Hi, I am currently dealing with some packet data (Q931 to be precise) in just about it's lowest form, a hex string. What is the best way to interpret this information, is it just a case of string manipulation to dissect the packet or does .NET include any tools for the job? Regards.
  2. V

    Question two system dll references

    I am having a problem that the use of most type/classes etc. such as the exception class are given the error "Exception" is ambiguous in the namespace "system". If I use the object exporer in VS2008 I can see that there are two version of all system classes including the exception class, the...
  3. V

    combobox data binding problem

    Hi, Have been writing in VB .net for a few years now but this is the first time I have attempted to use data binding and I am having a problem which I just can't understand... I am creating a dataset and populating it using a data adapter, it all seems to work fine up until this point, I then...
  4. V

    remote authentication using advapi32.dll

    I am writing an app for monitoring services on a remote machine. In order to achieve this [to my understanding] the app must first authenticate and retrieve a user token before being able to access service information. Here is the code i am using to authenticate: On Error Resume Next...
  5. V

    Voice recognition

    I am developing a voice recognition application which identifies certain key words from a WAV file and updates a database. I am currently using the default SR engine which is ok as although the words from the WAV files are not correctly interpreted they are consistant. The WAV files i am...
  6. V

    asynchronous httpwebrequests... URL and reply being mixed up possibly?

    Hi, I have written and application that sends out multiple URL reqests using asynchronous httpwebrequests. These requests include a phone number, a number is then returned indicating which network it belongs too which is stored in our database. however it is essential that the correct URL...
  7. V

    What is the fastest way to write to a text file?

    I am converting and old vb6 program into VB.NET for various reasons and have hit a problem.... Part of the program involves writing alot of lines to a file (upto 500,000). The original program can get through 250,000 lines in just over 2 minutes, here is the source code used for this: Dim...
  8. V

    Are httpWebRequests stacked up?

    I have written an application in VB .NET which sends out an httpWebRequest from a list of thousands of urls. This request returns a number that is stored in our databases. The Request has a timeout set so if there is no return for whatever reason it moves on to the next request. However the...
Back
Top