ThePentiumGuy Posted November 3, 2003 Posted November 3, 2003 hey i tried out sharpdevelop - i have NO idea how ot use it i dont even know how to create a simple project with a form!!! lol.. here's waht i clicked: file | New | Combine --> vbForms Application now, i dont even EDIT the code: here's what happens - i click Build - it STILL gives errors, even if i DONT TOUCH THE CODE!! lol can someone resolve this? thanks Quote My VB.NET Game Programming Tutorial Site (GDI+, Direct3D, Tetris [coming soon], a full RPG.... you name it!) vbprogramming.8k.com My Project (Need VB.NET Programmers) http://workspaces.gotdotnet.com/ResolutionRPG
*Experts* Volte Posted November 3, 2003 *Experts* Posted November 3, 2003 I won't even get started on how much I dislike #develop (for a multitude of reasons), but maybe you could say which errors? Quote
ThePentiumGuy Posted November 3, 2003 Author Posted November 3, 2003 list of errors (without editing code that was automatically given to me :-p) -'ShowDialogue' is not a a member of Main.MainForm. -'Form' is ambiguous to the namespace System.Windows.Forms.Form -'Text'is not a a member of Main.MainForm. Quote My VB.NET Game Programming Tutorial Site (GDI+, Direct3D, Tetris [coming soon], a full RPG.... you name it!) vbprogramming.8k.com My Project (Need VB.NET Programmers) http://workspaces.gotdotnet.com/ResolutionRPG
*Experts* Volte Posted November 3, 2003 *Experts* Posted November 3, 2003 Did you name your project "Form" or something? Quote
Mehyar Posted November 4, 2003 Posted November 4, 2003 I was just passing through when this thread caught my eyes, What is SharpDevelop ??? Quote Dream as if you'll live forever, live as if you'll die today
*Experts* Nerseus Posted November 4, 2003 *Experts* Posted November 4, 2003 @Mehyar, did you even try to Google the word "sharpdevelop"? Try that first (it's the first hit - use the "I'm feeling lucky" button) :) -nerseus Quote "I want to stand as close to the edge as I can without going over. Out on the edge you see all the kinds of things you can't see from the center." - Kurt Vonnegut
ThePentiumGuy Posted November 5, 2003 Author Posted November 5, 2003 sharpdevelop is another IDE for .NET VolteFace: no - it automatically names the form: Mainform Quote My VB.NET Game Programming Tutorial Site (GDI+, Direct3D, Tetris [coming soon], a full RPG.... you name it!) vbprogramming.8k.com My Project (Need VB.NET Programmers) http://workspaces.gotdotnet.com/ResolutionRPG
wyrd Posted November 5, 2003 Posted November 5, 2003 Eh, if you're looking for a free IDE why not try C#Builder from Borland? I've tried it out myself, it's not too bad (it's at least a lot better than SharpDevelop) Quote Gamer extraordinaire. Programmer wannabe.
ThePentiumGuy Posted November 5, 2003 Author Posted November 5, 2003 actually - m using it for vb.NET about borland: yea - i know its free but the problem is, i have to give em my address and number and stuff,, :( the whole point of the thing is: im using vb.net for my site.. - and the problem is, most newbies dont wanna get vb.net cuz its expensive - so i tell them to get SharpDevelop and use it for vb.net and i have NOO idea how to even biuld a SIMPLE applicatino with it! Quote My VB.NET Game Programming Tutorial Site (GDI+, Direct3D, Tetris [coming soon], a full RPG.... you name it!) vbprogramming.8k.com My Project (Need VB.NET Programmers) http://workspaces.gotdotnet.com/ResolutionRPG
Mehyar Posted November 6, 2003 Posted November 6, 2003 Nerseus, You are right :o ..... Sorry... Quote Dream as if you'll live forever, live as if you'll die today
alp0001 Posted November 6, 2003 Posted November 6, 2003 (edited) I was testing sharpdevelop a while back and it looks like the c# part of it wasn't working properly. I don't remember the exact problems, but I figured I would wait until a couple more versions have been submitted before trying again. So, I would recommend the same for you on the VB.net side. *I will see if I can hunt down what my problems were. [edit]Never mind, I was using version .95 and they are currently on .98, so it shouldn't be a factor anymore.[/edit] Edited November 6, 2003 by alp0001 Quote My name in binary (from ASCII): 01000001011001000110000101101101 010100000110010101110100011100100110100101100101
*Gurus* divil Posted November 6, 2003 *Gurus* Posted November 6, 2003 SharpDevelop isn't stable enough (especially with VB.NET) to be much benefit over using Notepad. Quote MVP, Visual Developer - .NET Now you see why evil will always triumph - because good is dumb. My free .NET Windows Forms Controls and Articles
alp0001 Posted November 6, 2003 Posted November 6, 2003 (edited) Yep, just downloaded the most recent (.98) version and still found one problem (on Win XP) that stops me from testing any further. Tried: 1) New Combine > Windows forms project under c# 2) After putting a simple label on the form, I saved the project. 3) Tried to reopen the same project (while it is still open). 4) Got some error: "Error While Saving" that I gave the ignore option. 5) The same project doesn't load anymore. This is even after shutting down and restarting the app. Will wait a couple more releases... Edited November 6, 2003 by alp0001 Quote My name in binary (from ASCII): 01000001011001000110000101101101 010100000110010101110100011100100110100101100101
bri189a Posted November 7, 2003 Posted November 7, 2003 a .NET IDE by itself is only $100, why would anyone who is serious about programming want to waste time with something that more than likely is going to be bugging and have worthless help files if any. -Microsoft Tool :) Quote
jfortun104 Posted December 30, 2003 Posted December 30, 2003 To address the error (hopefully, anyway): -'Form' is ambiguous to the namespace System.Windows.Forms.Form Try removing the References to "System" and "System.Windows.Forms" (it appears that these DLLs, and a few others, are referenced automatically by SharpDevelop), and referencing them again causes "... is ambiguous in the namespace ..." problems. This appears to be a bug, and more info on which DLLs are automatically referenced is available from the link below. This tripped me up a bit until I found the thread below. :) Take a look at the thread from: http://www.icsharpcode.net/opensource/sd/forum/topic.asp?TOPIC_ID=3526 On another note (for VB.NET developers), the Rootnamespace is not automatically supplied, as it seems to be in VS.NET. You may need to add this for some projects to work propery (Project --> Project Options --> Configurations --> Debug (and Release) --> Code Generation --> Rootnamespace). Once I solved these little issues, SharpDevelop seems like a great free tool for VB.NET development. I just hope they add a Forms Designer for VB.NET projects, but beggars can't be choosers. :) Quote
iebidan Posted December 30, 2003 Posted December 30, 2003 This is like the 4th time I tell you Pentium, DON'T use #Develop, I tried it, Adam tried it, it only gives you more problems. Quit using it, contact me ASAP Quote Fat kids are harder to kidnap
ThePentiumGuy Posted January 1, 2004 Author Posted January 1, 2004 alright alright i got rid of it :-p my uncle found his .net cd anyways Quote My VB.NET Game Programming Tutorial Site (GDI+, Direct3D, Tetris [coming soon], a full RPG.... you name it!) vbprogramming.8k.com My Project (Need VB.NET Programmers) http://workspaces.gotdotnet.com/ResolutionRPG
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.