Search:
Type: Posts; User: kasracer
Search :
Search took 0.04 seconds.
November 19th, 2008 12:40 PM
It sounds like you have a solid understanding of what you have to do. What was your question though?
November 19th, 2008 12:32 PM
Web services won't work like you're expecting without some major development. Web services work typically with SOAP which basically involves serializing data into Xml, sending it, deserializing it,...
November 19th, 2008 11:01 AM
So I'm working on a very rudimentary BB Code parsing component that will be used by a handful of people. I'm very bad at regular expressions but I was able to piece several together from internet...
December 24th, 2007 10:46 AM
Not sure what you mean. What do you mean it doesn't run as if you double clicked on it?
Sure you can. The second parameter to the Process.Start() method are the parameters.
So if you're used...
December 24th, 2007 06:17 AM
I developed an SDL game without issues on Vista so it's most likely not due to the OS being Vista though I'm not exactly sure what the problem is.
December 21st, 2007 09:40 PM
I'm not sure what you mean by "injected". Sending data to a dialog is just like assigning data to any other classes and vice versa.
December 21st, 2007 09:03 PM
This is a very difficult feature to implement correctly.
Theses were the options I came up with but they all have a flaw:
Encrypt all usernames and passwords and store into a file (Xml, Binary...
December 20th, 2007 05:20 PM
Drawing text is very simple. In the early betas, there was only TextureFont so you had to use images but you can use a SpriteFont instead.
Just add a SpriteFont to your project, open it and adjust...
December 20th, 2007 06:44 AM
It sounds to me like you may want to look into using C++ and templates. I'm not sure if you can use templates with managed C++ code but that could also solve your issue.
December 20th, 2007 06:32 AM
Why not manually handle where the mouse is on the screen? Xna doesn't really have events but in the update method you could check where the mouse is and if the button is down.
Also, I thought I...
December 19th, 2007 12:04 PM
Sounds like a regular firewall to me. It blocks IMs and lets you control your internet.
Allowing shutdown of a game or any other program is also simple. You transverse what's currently open and...
December 19th, 2007 08:04 AM
Jpegs and Pngs "just work" in XNA (that includes transparency in Pngs) :)
I'm not too sure of some of your questions but http://creators.xna.com/ is the best site for Xna information. There are...
December 19th, 2007 07:27 AM
You can use pointers in C# just like you did in C++. You just have to check the option in your project to allow unsafe code.
Then take a look at this:...
December 19th, 2007 07:25 AM
XML Serialization is the easiest way but if this is a hand made XML file (and no class created to go along with it) then I think you're stuck doing it by hand and coding the class first.
December 18th, 2007 08:21 AM
XNA GameStudio 2.0 automatically installs the libraries so you can use them in Visual Studio 2005 (rather than using the express verison) :)
December 17th, 2007 08:19 PM
I have never heard of any issues with the Linux UI and slowness. X Server is pretty snappy and OpenGL works well (check out compiz fusion or UT 2004).
The main reason Linux is used as a server OS...
December 17th, 2007 01:57 PM
I'm not sure what you're trying to accomplish. What do you mean by correct type? A string is a string
If you want to figure out what type something is, wouldn't typeof be better?
December 17th, 2007 12:17 PM
Thread1 is correct. According to the CSV specification, if there are commas within text then it should be surrounded by double quotes.
This code should correctly parse any line within a CSV file:...
December 17th, 2007 12:12 PM
Just wanted to point out that this is very wrong. While I do prefer Windows, Linux has the ability to run games just as well as Windows. In fact, there are many games that run great on Linux (UT 2004...
February 6th, 2006 03:18 AM
This sounds like it was copied and pasted directly from a homework problem or a project from a company.
We will not help you with such things, however; we are willing to help you if you have any...
February 1st, 2006 12:38 PM
Is there any Cryptography library that works on multiple platforms and doesn't require any extra redistributables (i.e. no DLLs)?
I'm looking for a way to encrypt some files and I would like it to...
January 17th, 2006 09:41 PM
They added generics, however; they are no where near as powerful as templates and it's a bit awkward to use them.
January 16th, 2006 03:55 AM
I haven't had a chance to use managed C++ yet (been working with unmanaged C++ and C#).
If I create a managed C++ project and use a lot of the STL, does the entire project translate into IL or...
January 16th, 2006 02:45 AM
You sent an int to a function and the function that ran was the one that accepted an int, correct?
Where is the confusion? Or did I miss something?
January 16th, 2006 01:39 AM
I wasn't sure where I should post this since I am not working with managed code per say. If it's in the wrong forum, please move it.
Basically, I have to create several classes and methods for a...
Click Here to Expand Forum to Full Width