- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
24 Posted Topics
Hello, I'm sorry about this being a kind of a raw question, but I'm just not really even sure which direction is right to head at. Anyway, let me explain the problem; I have a game, written in C++/SDL for PC, and I'm looking at possibilities of integrating Facebook activity … | |
Hello guys, Well, here's a simple one for you, which I just could not find the answer to due to lack of finding a good way to put it in words for Google. I'm pretty much a newcomer to Java, first project I used Java for, actually, and it was … | |
Hello, Simple question this time, I hope, I have a program that collects an argument from execution on another program, the argument is the path to a file. Now, the problem is that when I try to read the argument to a string using argv[1], it'll only get the first … | |
Hello, I've come across [URL="http://www.daniweb.com/software-development/csharp/code/258293"]this thread[/URL] while trying to embed a mp3 file in my .NET project, but am having some problem, despite how simple this tutorial is, and just about every other thread on the internet say the same thing. After adding my file to the solution explorer, I … | |
Re: Check the folder of your project, for C# I believe it will be inside a bin folder inside the project's folder, and then you go into debug/release folder according to your build(You can check that at the top of your window in VS, next to the run button. Simply put, … | |
Re: I had a similiar problem before, I don't think you can really do anything about that, it just doesn't read it if it's too big. You can, however, get around this issue if you open multiple tables in your Excel file, and just read them in a loop, however, all … | |
Hello, I'm having this issue with copying files with .NET's File.Copy() method. I have a file, that I want to copy to a couple locations, but when doing something like: [CODE]File.Copy(source, target1); File.Copy(source, target2);[/CODE] I keep getting an exception error about the file being in use. Seeing that if I … | |
Re: Well, the first thing that comes to my mind, a PAlib project is still just basicly the heading of a header, it doesn't nullify your basic capabilities of the language, so, are you sure you remembered to #include "string.h" and using namespace std ? | |
Hello, I know this is a problem that had been discussed alot, but I just couldn't find any solution that worked for me here =\ This is my image loading function: [code] SDL_Surface* Map::IMGLoad(string file, int scale){ SDL_Surface* img = NULL; SDL_Surface* optImg = NULL; img = IMG_Load(file.c_str()); if(img != … | |
Re: Well, I'm not quite acquainted with Allegro at all, but just seeing that you're asking for game ideas, I should probably say: don't. It's a final's project for school, you do not want to get carried away, as that's what usually happens when you go idea scouting, you find a … | |
Hello, Let me introduce to you my problem first, and then you guys should decide on the best method to take upon it. My sister has lately been HELLa annoying with her crush over Justin Bieber, and it's really starting to get to me not to be able to think … | |
Hello, I've been looking into implementing a simple networking option to a program I'm working on, and have looked around at what my options are. The program is made in Managed C++(.NET), and so far have worked great. Browsing my options, I've found that .NET is also capable of networking, … | |
Re: Well, I'm not even sure that we're following the same lead here, are you looking to PROGRAM maps and sprites in the _style_ of Pokemon, or are you looking to just deal with the graphical aspect? Since for the former, your demands of the engine aren't quite enough, and for … | |
Re: And now on ther serious side.... It would be really helpful if you could tell us what your program is supposed to do, what does this specific part of the code needs to do, and what does any of these functions you put in there do, we can't really tell … | |
Re: Well, I'm not really sure that I'm following you here, you're saying that you want to know which is best to become a good game designer, and explicitly state that you do not mean a programmer, but if that is the case, why would you want to learn programming at … | |
Hello, I've finally come to a point when I want to send my program over to some people to test, however, I've run into problems on that. This is my first time writing a program in managed code(C++\CLR), and so far, all I had to do was pack the redistributional … | |
Hello, I've been trying to deal with this problem for a while now, I'm currently working on a game engine I could use to help myself later on, the thing is made in .NET C++, and is similiar in design plan to RPG Maker, and GameMaker and the such in … | |
Hello, This is something that I need to do in my program, that's a little though for me to define in a few words for Google, I couldn't find any useful results. The thing is this, I have a program that creates a bunch of code files(.cpp and .h, in … | |
Hello, I'm sorry for the bad title for this, but I honestly have no idea how to define this by few words. My problem is this, I need to read a bunch of data from a text file into an array, in the theoratical aspect, it's all nice and should … | |
Hello, I'm having this problem with the transparency in GDI+. I have 2 pictureBoxes, one over the other, and one of them has its' alpha color set to magenta(255, 0, 255). My goal is that when the upper pictureBox has a picture on it with a section of the magenta … | |
Hello, I'm having this problem with the transparency in GDI+. I have 2 pictureBoxes, one over the other, and one of them has their alpha color set to magenta(255, 0, 255). My goal is that when the upper pictureBox has a picture on it with a section of the magenta … | |
Hello, Once more, I'm having a problem which I've been breaking my head about for a few hours searching Google to no avail, and came here again for some consult about. The thing is this; I have an image file, the size of 16x16 pixels, and I want to paint … | |
Hello, I'm having this problem in my code that I just can't figure out the reason to, I'm trying to set an integer value to an integer variable that's a member of a class that is part of an array member of another class. It should be an int = … | |
Hello, I'm currently writing a program in which I need to check wether a list is empty or not, though that produces me crush in the program when I operate the empty() function on it. Project.h [CODE]class Project{ public: friend class Map; bool isProjectOpen; list<Map> maps; list<Map>::iterator it; string Name; … |
The End.