| |
| |
| |
|
Page: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
Comments:
<0> and no, neither of the initial files were viruses <0> NAV and AVG also alert me that UPX and morphine are themselves viruses or hack tools etc <0> maybe UPX modifies the PE header or something in such a way to piss off the vx guards. <0> i was wondering the same thing myself to be honest <1> bealtine <1> but it`s work to compilate no ?> <1> a ? <2> i've no idea what you just said... <1> i said <1> that i want to compilate some files .. ( 6 at no. ) to one file with extension .scr or .com or .bat <1> it`s work with c++ ? <3> I have done some .scr using VB before ... <3> but it is still hard to do :P <1> work ? <1> with VB ?
<2> yes "it's work" <3> http://support.microsoft.com/kb/818359 <1> here ? <1> can u give link to download ? <3> just have a peek there :P not sure whether it help or not <1> or what i have to search on google <1> name" <1> romanian somebody here ? <3> Marius, can you program in C++ ? <1> i dk <1> other program .. <1> not c++ <1> to compilate.. <3> what other langguage u can use? <3> uh uh .. this is already widely off topic :P <2> start with english <1> :D <3> heh :D I mean what other programming langguage <3> like BASIC, Visual Basic, C# , Java, etc <1> so ... <1> what i have to do :-s <2> <2> learn to program <1> to download ? <1> other .. no c++ :D <1> it`s to hard :) <1> i have just 13 years.. <3> Mar|us ... you can try #windows ... <3> they are very helpfull over there <2> any language (you choose) requires you learn to program <1> :D <1> 10x <2> i'd suggest learning basic first (vb or vb.net) <0> bah :P <2> as you are so young <0> more the reason not to bother with something like basic :P Try perl or python. They'll actually have a use for you in the future <3> I agree about python or perl ... more usefull ... <3> but I have no idea how to create com and scr using that <0> me neither. I've only ever compiled com files with tasm to be honest <2> probably because you generally cant <3> time to go back.... good day / night everyone <4> hello, i want to make a database with 2 tables in sql express - i have installed microsoft viusal studio 2005 on my computer - and i've tryed to make a new Project/Solution and didn't find where to add the database and/or tables...i dont know where to start, Can u Help Me Please? <5> haven't used it yet <4> :( <4> hello, i want to make a database with 2 tables in sql express - i have installed microsoft viusal studio 2005 on my computer - and i've tryed to make a new Project/Solution and didn't find where to add the database and/or tables...i dont know where to start, Can u Help Me Please? <2> do we need the same question 3 times a day every day? <0> please dont post repeatedly <2> google ado.net tutorial <0> not everyone on the channel listing is actually at their PC but if someone has an answer they will give it to you <4> ok <1> what size have kit of c++ <1> 224 MG ? <6> hello <6> i have a question plz <6> about a c++ program <6> anyone help plz? <7> Just ask. <8> can someone help me w/ a Run-Time Check failure #2 <9> .NET framework question, how do you, in runtime, check if a cl*** implements a certain interface ? <10> hi, does somebody knows how to cast int to the end of a char* <11> please remove the ambigities from the question
<12> When C dervies from B and B from A, is that considered multiple inheritance? <0> no <0> when C derives from A and B <12> ok <12> cuz I got a compilator that doesnt do multiple inheritance, does that mean that it could do the "C from B, B from A" ? <12> oyo <13> morning folks <14> morning jill <14> where's jack? <0> C from B, B from A is just regular inheritance <0> so yes <0> A is B's parent and then B is C's parent <0> Krispy: oh god :P <14> that's what she said <14> is that a positive oh god or a negative one? <0> ha, an "oh god i cant believe he said something that lame" one ;) <14> at least i produced a reaction <14> it is the goal of any artiste <0> hehe <13> wow never heard that before ;) <14> i know i am so original <13> so you changed your name so as not to be banned? <14> no, the H stands for home <14> or heroine <14> depending on your imagination of course <14> so what's the craic, jill? <14> where do ya work? <13> a private high school <14> are you a teacher? <13> doing it/programming/whatever project my boss gives me <14> wow high schools have IT needs these days? <14> when i was a kid we had a frayed rope and some empty cans of spam and called it a phone <0> count yourself lucky, when i was a kid we had windows 3.1 <0> :P <14> haha <14> hey windows 286 baby.. now THAT was crapp <15> lol <14> actually desqview was teh sh*t back then <13> KK - i work at a private institution, each student/teacher is issued a laptop <13> not to mention we have a science build with 14,000 dollar whiteboards <16> hey all.. I have a weird problem, I'm recv()'ing and outputting the buffer with a sleep of 5ms after every output and look what it's doing: http://public.sogetel.net/tire/****.gif <16> anyone know why ? <15> lol <15> t pt mal setter ton timer <16> tu m'prends pour un cave ? <15> bin non mais verifie la <16> Sleep(5); <15> ok mais ta src a fais koi au bout dla ligne <17> Off to office <12> Anyone ever worked with RasDial() ? <18> yeah. it's a pain in the ***. <12> yes it is. <19> Why is that? <12> I got everything working fine. ONly probley I got now, is when p***word is wrong, it pops up a window asking for p***word (I dont want any popup, i do everything underground) <20> hi, how can i copy from second line in a buffer A to buffer B? <20> iam only interested in from line 2 in buffer A to end copied to buffer B <0> do a getline before your copying loop <20> well i tought about using bcopy, <20> but bcopy copies the whole buffer, not from second line on the buffer <0> im pretty sure bcopy is deprecated <20> or memmove <20> Iam thinking about copying from file instead of the buffer this time i can control where to start read from file, but i tried this ifile.seekg (2, ios::beg); <20> ifile.read((char*)tmp,fsize); ios::beg how can i say line2 instead of beg? <0> you cant <0> you can only specify an offset in bytes from the second parameter <0> http://www.cppreference.com/cppio/seekg.html <0> just use getline :P <20> ok <20> nnp: you dont understand, i want to skip the 1 and 2 line on the buffer, and copy the rest into tmp buffer <0> ok so you have a file and you want to copy everything starting at line number 3 into another file? <20> yes file or buffer i read everything from file to a char *buf <19> { std::ifstream in("foo.txt"); in.ignore(INT_MAX, '\n'); std::ofstream out("bar.txt"); out << in.rd_buf(); } <19> std::ifstream in("foo.txt"); in.ignore(INT_MAX, '\n'); std::vector<char> buf(std::istreambuf<char>(in), (std::istreambuf<char>()));
Return to
#c++ or Go to some related
logs:
public_html apache Permission denied: PsalmPilot eminem mockin bird mp3 muista xemxx #linuxhelp #chatzone #linuxhelp #linux wetherspoons beer festival
|
|