- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
14 Posted Topics
Re: If you choose XNA, the best choice in my opinion is C#, cause if you want to, in the future, change to C++, then it's much easier than if you'd learn VB ![]() | |
Hi! I have searched the internet several times just to try and undestand matrices, transformation and such. I have worked with XNA before, so I know how to apply it, but it's the math behind it thats hav been bugging me for a long time now. In XNA it was … | |
Hello! After moving the router and making my stationary computer "Wireless" - that is to say giving it an wireless network (A LevelOne WNC-0305USB connected to an Asus RT-N16). Just few days ago, I got loads of problems with slow internet connection and sometimes it kicks me from the network, … | |
Hi! I got a stationary pc with Windows Vista, as it's not having bluetooth, I thought of connecting my Sony Ericsson W595 mobile phone via USB, and access it's bluetooth on my stationary pc. But when I tried to Google this, I came up with nothing :( Please help! And … | |
Re: [CODE]if(e.CurrentProgress > 100) e.CurrentProgress = 100;[/CODE] Should do it | |
Hi! I'm trying to login to my website throught my program, to do that I need a password and username. The password is encrypted using C# SHA256 but on the server it uses an javascript code I got from the web. My problem is that my C# Hash differs in … | |
Hi! I'm trying to decompress my GunZip files from the web using an WPF app, I get no errors, but then, when I open the files, I see randomly inserted "z" and my files aren't complete! Here is my code: [CODE] string file = sr.ReadLine().Replace(".gz", ""); SetInfo(Path.GetFileName(file)); int size = … | |
Hi again! I'm now working on a client, that will download my compressed file from the web server, downloading goes nice and easy, but when it comes to the line I marked, nothing happens! Here is my code with the marked line: [CODE] byte[] data = new byte[size]; stream.Read(data, 0, … | |
Hi! I'm making a program that uploads my game to an Ftp server but when the data is compressed something goes wrong and I end up with an array of zeroes. Here's my code: [CODE] FileStream filestream = File.OpenRead(file); byte[] filebyte = new byte[filestream.Length]; filestream.Read(filebyte, 0, filebyte.Length); filestream.Close(); //MemoryStream inS … | |
Hi! I've been trying to follow Riemers XNA tutorials about shadow mapping, but I can't seem t get it to work properly. My problem is that the light and shadows are projected on the wrong side of the models. Here are two pictures of the game: [URL="http://i51.tinypic.com/2v9zqtk.jpg"]http://i51.tinypic.com/2v9zqtk.jpg[/URL] [URL="http://i54.tinypic.com/2nben3k.jpg"]http://i54.tinypic.com/2nben3k.jpg[/URL] Here is … | |
Hi! I want to make a copy of an class, in this case: Model(XNA). The problem is that when I edit one of my Models all of the other models of the same type gets changed as well. I can't seem to figure it out. Xna's official site is down … | |
Ok, I've got an downloader that downloads a .swf file and saves it to the users harddrive. But I also want to extract the audio from the sfw to be able to play it. Any ideas on how?? | |
Hi! (This is my first post on the forum) I'm trying to capture the desktop of the "not showing" desktop. I got two users, both logged in. I start the program on the first users desktop (to capture), and then the second one on the other user, which is supposed … |
The End.