Results 1 to 18 of 18

Thread: Stupid inherits issue, or not?. [resolved]

Threaded View

  1. #18
    Frenzied Member <ABX's Avatar
    Join Date
    Jul 2002
    Location
    Canada eh...
    Posts
    1,622

    Re: Stupid inherits issue, or not?.

    Then you use
    VB Code:
    1. CType("myString", String)

    You could also use DirectCast ;p

    Edit: here is the full statement just in case

    VB Code:
    1. 'you can use either of these
    2. Msgbox InStr(startIndex, strbuffer, Ctype("MyString", String))
    3. 'DirectCast Is quicker but it MUST BE A STRING as it does not do type checking
    4. Msgbox InStr(startIndex, strbuffer, DirectCast("MyString", String))
    Last edited by <ABX; Feb 3rd, 2005 at 02:30 PM.
    Tips:
    • Google is your friend! Search before posting!
    • Name your thread appropriately... "I Need Help" doesn't cut it!
    • Always post your code!!!! We can't read your mind!!! (well, at least most of us!)
    • Allways Include the Name and Line of the Exception (if one is occuring!)
    • If it is relevant state the version of Visual Studio/.Net Framwork you are using (2002/2003/2005)


    If you think I was helpful, rate my post
    IRC Contact: Rizon/xous ChakraNET/xous Freenode/xous

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width