| |
| |
| |
|
Page: 1 2 3 4 5 6 7 8 9
Comments:
<0> i'm only a man <1> o_o <1> and that's all you'll ever be <1> ..is what my friend danielle always says to me when i say that <2> jbatista: I think I am, but I think the operators are overloaded <2> In any case it allows me to put in a char variable <2> But I cannot compare that char variable <2> It's confusing <3> im having a problem finding an event to give me the current value text of a combobox when its changes... i have this event: ON_CBN_SELCHANGE( IDC_DRINK_TYPE, OnDrinkType ) ... when i change the combo box it is suppose to update text on the screen but it doesn't.. however, anytime i change the combo box again it updates to the last value <3> so basically the event fires before the text on the combo changes... any idea what i can try? <3> the ON_CBN_EDITCHANGE event doesn't fire for me <3> and the docs say you cant use it with the CBS_DROPDOWNLIST style... but im not using that... im using CBS_DROPDOWN <3> help would be greatly appreciated... i can sleep once i get this working <4> elventear: What if you compare to '$' instead? <2> I'll tr <2> y
<2> jbatista: Thanks! It works <5> every turtorail i find is on visial studio... <5> i hace dev-C++ <6> you need a tutorial on the IDE? <5> 28...can you look at this page <5> http://forum.gamedeception.net/showthread.php?t=7810 <5> all im trying to do is make a circle <7> look up bresenham's circle algorithm <7> and u will have loads of fun <5> can some one walk me threw this...copy,paist,copmile and run <8> hellow what are you trying to do? how long have you been learning C++ ? <5> i have done a lot of reading...but i dont have visual studio <5> i have the code...i have a compiler but i dont have directions for dev-C++ <8> vc2005 express is free <8> and it's not just the directions you'll need... why are you starting out by trying to put a circle somewhere? <5> thats where the tutorial starts <8> you're going to try to learn C++ and graphics from online crap? <4> vawjr: You ever build your bomber? <5> i have to update windows befor i can unstall vexpress <5> install` <8> jbatista nope haven't done much RC stuff up here, there's been snow on the ground <8> hellow what version of windows are you using? <5> xp <8> but not sp2 <5> the express settup sed a need a servers pack 2 up date <5> befor i can install express <8> yes, you do <5> i dont want to go threw this up date and find out that its the wrong one <8> what's the wrong one? <4> vawjr: Perfect time for building, then isn't it? <8> well, the garage isn't heated <8> elventear == '$' not "$" <8> and doesn't string have front() and back() ? <2> vawjr: Thanks <4> hellow: Don't you think it's a good idea to keep your machine fully updated anyway? <4> vawjr: Ew. I finally learned forward flight on the Blade CP. It is very, very fun. <8> jbatista what's a Blade CP ? <4> vawjr: http://images.google.com/images?q=blade+cp&hl=en <4> They aren't entirely different from planes in forward flight. It pays to get a simulator, though. <8> yeah <8> I have a simulator and it includes helicopters <5> updates r to slow <4> Neat, eh? Mine flies for 25 minutes on a charge, and once I got up the nerve to try some figure-eights, I was surprised to find that it really hauls. <6> find something fun to do out in scranton while it updates ;) <5> nanticoke <5> do you guys get paid to awnser questions <9> yes <6> yes, you will get your bill on the way out <9> JB pays us back in favours <9> "favours" <5> how much...if you dont mind me asking <9> it depends on what we feel like <5> will i <9> JB is pretty accomodating <5> i will get a bill <9> nah, we'll just deal with JB later <8> <sigh> no <6> guess it's no longer april fool's day in scranton <9> you can go ahead and ask your question hellow <8> hellow, what exactly are your goals with C++ ? <5> i got lots...but need more coffie
<5> hold on <5> my goals....copy and paist some one els code <9> er, lots <9> that's probably a good hint that you need a book <8> or 3 <8> what exactly do you think that copy/paste someone else's code will do for you? <5> interest me more <5> is there a chance i could be doing the wrong up date <8> so you're undecided whether you want to learn C++ ? <5> no i want to... <8> then your goals aren't doing copy/paste, but learning C++ <5> i am geting a few books tomore <8> I recommend _against_ books with any of the following in the title: idiots, dummies, teach, beginning, yourself, learn, seconds, minutes, hours, days, weeks, weekend, tricks, master, guru, visually, super, bible; or that mention a specific product or compiler. <8> I recommend the books here: http://rudbek.com/books.html <5> runbek <10> vawjr: "Teach Yourself to be a Dummy in 21 Days" <8> zbo I don't need to read that any more, I learned that decades ago <5> omg it was the wrong update <8> how could you **** up getting sp2 ? <5> lol <5> no i didnt **** up <4> He read zbo's book. <1> LOL <11> when using CreateThread(), is it necessary to allocate the thread memory? or if you put 0 as the param.. will it give it default memory? <12> hey everyone... i got a cl*** issue i cant seem to work out.. i have a cl*** M and a cl*** UI, M has a reference to UI and UI also has a reference back to M.. but i cant do this because UI is defined first and so it does not know M's functuions... <9> you need to use forward declarations <9> cl*** M; cl*** UI {//blah blah}; cl*** M {//blah blah}; <12> i tried that <12> it can use M *m; but if i try to use m->go() it wont work.. <12> becuase i only pre-define cl*** M; not all its members <13> no <13> A.h: struct B; struct A{ B* b; void foo(); void baz(); }; A.cpp: #include "A.h" #include "B.h" void A::foo(){ b->bar(); } void A::baz(){ } B.h: struct A; struct B{ A* a; void bar(); }; B.cpp: #include "B.h" #include "A.h" void B::bar(){ a->baz(); } <13> there <13> that's for you, dATURa^ <5> im instaling visual c++ 05 express... <5> a option came up <13> okay? <5> should i install msdn 2005, and sql server express <13> if you want it <13> it's a bunch of documentation <13> could be useful <13> although it's also available online <12> hmm... ok.. is seee.. took me awhile to get my head around that.. <13> hehe <12> so basically in 1 source file terms its like this: <12> struct B; <12> struct A { B* b; void foo(); void baz(); }; <12> struct B{ A* a; void bar(); }; <12> void A::foo(){ b->bar(); } void A::baz(){ } <12> void B::bar(){ a->baz(); } <12> ? <12> im sure i tried that.... <12> must have missed something <12> hang on... in your example.. struct A and by is decalred twice.. my compiler complains about doing this ? <12> by=B <14> ... Eh? <14> rdragon'S example looks fine to me <12> ahh u have to use #ifndef <12> i figured it out now ..sweet cheers <13> oh <13> it's daylight savings <13> geez, i was going nuts wondering why it was so late <5> rdragon do you think you could take the time to walk me threw this tutorial <13> what tutorial? <5> here is the liink <5> http://forum.gamedeception.net/showthread.php?t=366 <5> i have to open a impty dll and name it opengl32... <13> oh, nope <13> waste of time <13> yeah, you're writing a proxy dll of sorta <13> sorts <5> did you see the code on that link <15> All you need to do is write a dll with the same exported functions <15> What problems are you having?
Return to
#c++ or Go to some related
logs:
#AllNiteCafe #javascript #networking t cardshare happyeze #linux convert dbi to vga #php laqmijiet bil-malti
|
|