No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
26 Posted Topics
I'm trying to add some models to an existing game. I'm injected into the game, and i've hooked the direct3d device succesfully. I tested this by setting the fill mode to wire frame and the game indeed changes to wire frame(I did have to add a clear to an endscene … | |
Is there a way to detour a class method to a static function by passing the implicit "this" manually? I'm specifically trying to detour endscene, i've done it with a class member, and writing the address to the new class member into the vtable, but i'm trying to see if … | |
this was probably a bad idea to begin with since i've never messed with multithreading or the sapi... but i got the sapi working on its own, but when I put it in its own thread it wont speak anymore. I've tried over and over and over.... i'm not sure … | |
I'm not used to getting this deep in c++, but all these pointers are making my brain boil. I'm trying to get a str_replace working [CODE]VOID str_replace(PCHAR Dest, PCHAR Find, PCHAR Replace) { PCHAR New=(char *)malloc(sizeof(CHAR)*MAX_STRING); PCHAR Found = Dest; PCHAR Temp = Dest; strcpy(New,""); while(strstr(Temp,Find)) { Found = strstr(Temp,Find); … | |
I'm distributing a binary that users are required to install the following: Microsoft Visual C++ 2005 Redistributable Package (x86) Microsoft Visual C++ 2008 SP1 Redistributable Package (x86) If they don't have them the program puts up a ambiguous error message. I'm not really sure how static linking works, but I … | |
I have a simple class [CODE]class Info { public: long One[31]; long Two[79]; };[/CODE] i'm reading values from a couple char arrays, when I write to Two[0], it overwrites One[31]. [CODE]CurInfo->One[31] = atol(BufferOne); chatoutf("%d",CurInfo->One[31]); CurInfo->Two[0] = atol(BufferTwo); chatoutf("%d",CurInfo->One[31]);[/CODE] if I feed bufferone a -1, and then buffertwo a 623, I … | |
I'm getting geared up with a server at home to go live on the net as soon as my connection gets hooked up. I've always been oblivious to hardware and networking. My setup right now... I have a cabinet with 2 servers in it, and 3 PC's. One of the … | |
I've attempted googling this, but i'm not gearing my searches right or something cause i'm coming up with junk. I have some php software I design that uses GD functions. One of my main users is on an extra machine that belongs to a hosting company. With my software installed … | |
I posted this earlier, but its not showing up now... sorry if I end up double posting. Anyway, I got a problem with one of the main users of some php software I release. They are getting errors on imageftbbox and imagettfbbox that are in my software. Their phpinfo shows … | |
So i set out to do some rewrites today for a utility i'm building for people to use on their own servers. It involves generating dynamic images to be used on phpbb, but phpbb doesnt allow you to post images with any GET parameters or with a PHP extension. The … | |
I've poked around on google and haven't been able to find the answer, and I've poked around with min-width to try and solve the problem but had no luck. I have a div, well say 500px with internal padding of 10px. Inside of it I put a table who's width … | |
So i'm used to using mysql, but i'm on a project right now that uses an access database, and I'm looking for a way to replace LIMIT. I googled around and found the information on TOP, but it doesnt totally replace the functionality. For example if a user were to … | |
Man, I hate having to get you guys to hold my hand through all this, but I've run into another problem. I have my ODBC connecting to a MS access database. This is all coded into a library that gets injected into a video game, and then macro commands call … | |
anyone have a link to a good auction script. Something simple, no frills. I'm running phpbb2 and want to add an auction area. I looked at that phpbb-auction.com site, and it seems pretty delapidated, and I'm not so sure I want it as a phpbb add-on. Whatever script I do … ![]() | |
I've been wanting to use ADO in a c++ project i'm working on. I was having some errors on it, and have since reverted to ODBC but i'm finding it rigid, and frenquently frustrating to work with. I'm going back and giving ADO a shot again, but simple pasting the … | |
I have a PC with a little ATI tv tuner card in it, but I'm hooked up on digital cable. So.. to get all of my channels, and in a decent quality I have to hook my cable to a cable box, then from the box to the computers tv … | |
I've done a little looking around and found a few different ways to do this, and I was looking less for technical help, and more for opinions before I dove into the code. The software I'm sending out doesnt get installed, its just unzipped and placed in random folders on … | |
i'm a little back wards with my c++ knowledge. I kinda got thrown into a maintenance project on an existing project so I know how most of the software works, but I find myself lost on some simple entry level things sometimes. That was my disclaimer for not feeling foolish … | |
So I've got a server host that runs my MySQL 5.1 db. I have a stored procedure in it, its similar to [ICODE]CREATE PROCEDURE CountUsersByFirstName(IN SearchName TEXT, OUT Count INT) BEGIN SELECT COUNT(*) INTO Count FROM Users WHERE Name = SearchName; END[/ICODE] the syntax of that may be off as … | |
Re: Are you just posting your homework assignments? Why take the class.... | |
I have a VB application that connects to a PHP page for user validation, and I'm having some problems getting it to work for a particular user. I didn't wanna double post in both forums and Im not sure if its a PHP or VB problem so here is the … | |
I have a VB program, in VB6 that is connecting to a website for validation of a user account. One of my users can't seem to get the thing working though. He gave me his password and when I try it on my machine it works. The validation script on … | |
I'm having a problem with one of my users being able to connect to a website using my VB app, i accidently posted it in the .net forum. [URL="http://www.daniweb.com/forums/post831548.html#post831548"]http://www.daniweb.com/forums/post831548.html#post831548[/URL] | |
im working with some perl code, and im really unfamiliar with the language, and I have a situation. I'm working with a package of perl scripts for a game, there are about 4000 of them and counting. They are release constantly, and altering their contents isnt really an option, it … | |
I'm writing this little page that lets you sort of have a conversation with a perl script, and i'm having a problem. At the top of my php I access the perl script, with some text that the user input via a textbox. The perl responds with.. we'll say "Havin' … | |
So I've got this piece of software that is written in C++. I also have a website hosted on hostgator with linux server i believe. I have a MySQL database with usernames and passwords. What I want to happen is for my client application that is written in C++ to … |
The End.