Search results for query: *

  1. S

    Object of type System.String cannot be converted to type System.String[]

    THANKS A LOT I have spent so much time with this. Nice to finally see it work :D
  2. S

    Object of type System.String cannot be converted to type System.String[]

    that did not make it easier. I think i'l just drop threading and invokes for this time. I have spent 5 days trying to figure it out. I am used to use VB6. VS .net seems much heavier. Have to write so much code to do small things. Cryptic error messages.. I dont have that kind of patience...
  3. S

    Object of type System.String cannot be converted to type System.String[]

    Delegate Sub PrCommands(ByVal allIn() As String) I dont really know either. Im looking for a tutorial about threads, invoke where i can learn it. Most of the things i find on google is too advanced for me. I need the basics.
  4. S

    Object of type System.String cannot be converted to type System.String[]

    I guess that solved the problem, but now it says "Parameter Count Mismatch".
  5. S

    Object of type System.String cannot be converted to type System.String[]

    I have got this error message : Object of type 'System.String' cannot be converted to type 'System.String[]' The part of the source code that gives me the error: Private Sub DoRead2(ByVal ar As IAsyncResult) Dim allIn(1) As String Dim BytesRead As Integer Dim...
  6. S

    Object reference not set to an instance of an object.

    Im trying to compile a sample application named Servant. The source can be found here -> http://www.codeproject.com/vbscript/Generic_P2P_Architecture.asp The project contains two projects: ConnectionMgr and Servant. ConnectionMgr compiles ok but when i try to compile Servant i get an error...
Back
Top