|
-
Dec 6th, 2003, 01:32 PM
#1
Thread Starter
Addicted Member
.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
 Originally Posted by randem
You think you are confused? Try reading what you wrote...
-
Dec 7th, 2003, 01:08 AM
#2
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:
Imports SlipStream.Games.SnakeDotNet
with
VB Code:
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
-
Dec 7th, 2003, 04:28 PM
#3
Thread Starter
Addicted Member
Thanks for the reply it seems to work.
(go patriots!)
 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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|