Results 1 to 3 of 3

Thread: .resources?

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Nov 2002
    Posts
    216

    .resources?

    when i downloaded snakegame on planet source code, i noticed
    Code:
    Imports SlipStream.frmmain.game
    or something like that (im not on the right comp, at work) and when i wonder what it is so i looked in the obj->debug folder and found it slipstream.frmmain.game as a resource file. i wanted to knwo what that is so i searched the internet and nothing was found. i was wondering if you could help me out because if i try to put the code in my project 100's of errors coming up, including that import slipstream thing and i think its because of that. i tried asking on psc but with no luck
    you can find it here (i cant attach it, i dont know how to attach a folder)
    Planet source code- Snake Game

    thanks, it would be a great help if i found this out
    Quote Originally Posted by randem
    You think you are confused? Try reading what you wrote...

  2. #2
    Frenzied Member <ABX's Avatar
    Join Date
    Jul 2002
    Location
    Canada eh...
    Posts
    1,622
    Your problem is that you have copied the form and classes into a new project of your own as such, your new projects root namespace is not Slipstream.Games

    Replace

    VB Code:
    1. Imports SlipStream.Games.SnakeDotNet

    with

    VB Code:
    1. Imports [ProjectNameSpace].SnakeDotNet

    replace [ProjectNameSpace]

    with the root name space of your project (if you havent changed any project attributes it should be the same as your project name
    Last edited by <ABX; Dec 7th, 2003 at 01:13 AM.
    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

  3. #3

    Thread Starter
    Addicted Member
    Join Date
    Nov 2002
    Posts
    216
    Thanks for the reply it seems to work.

    (go patriots!)
    Quote Originally Posted by randem
    You think you are confused? Try reading what you wrote...

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