@# Quotes DB     useful, funny, interesting





Google
 
Web www.quotesdb.info
Undernet  |  EFnet  |  Quakenet  |  Freenode  |  Dalnet  |  Ircnet  |  Galaxynet
Page: 1 2 3 4 5 6 7 8 9 10 11 12



Comments:

<0> to a winsock
<1> to receive?
<0> to connect
<0> connect()
<2> Morning.
<1> yuri`: I'm not sure, there is a timeout error message WSAETIMEDOUT though
<1> "Attempt to connect timed out without establishing a connection"
<1> so I presume so
<0> Yeah, correct. but that doesnt helping much.
<0> maby ki9a can show give a hint :>
<1> yuri`: try http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winsock/winsock/connect_2.asp
<1> or ask someone else
<2> i dunno
<2> you called me hom0 yesterday
<2> Here that doesn't mean much good
<0> lol



<0> you got good memory :>
<2> yeah. I can remember a whole day back
<2> :P
<0> well you said i am waering a dress (what the hell) ?
<0> that was girls speak
<2> I didn't.
<2> I said my shoe size was 47
<0> you were weird anyway, that was the homo was for hehe -) kidding
<2> you mean the story about my friend
<2> where he was wearing female pants?
<1> o_O
<2> or was almost buying them
<0> lol
<0> you are truly weird :O
<1> well, I've woken up in my gf's gstring before, but that is just weird
<2> heh
<1> mind you, I had friends like that
<2> _Russell_: We were in a Calvin Klein store and on the left side were female clothes, right side male clothes, but he didn't see that.
<2> I must admit, it didn't look very girlish.
<2> it was plain white.
<1> maybe it was a dyke clothing store
<2> sorry?
<1> male side, less male side :P
<2> heh
<0> oh come on dont start again with that speak!
<1> o_O
<1> ._o
<2> FUZY!
<3> mmmm... back a yard, cyaan dehya london for-i-va :P
<2> cyaan/
<2> Trying to kill yourself?
<3> not cyanide
<3> go learn patois hehe
<3> went to london last weekend for notting hill carnival, then had to stay a few days extra for some work-stuff
<2> ah
<2> not bad
<2> met Blade?
<3> nope, didnt meet anyone. londoners are all "OH NO I AM NOT GOING DOWNTOWN ARE U MAD?! OMG OMG OMG"
<2> :P
<2> Hrmm
<2> I'm tired tired
<2> so tired
<2> I wrote it twice.
<3> ya well im not that tired today.. finally slept in my own bed so i got some proper sleep .P
<2> and I have to go out at 5
<2> till past midnight
<3> stop feeling sorry for yourself hehe
<3> you know you will enjoy it once you're there
<2> Indeed
<2> but I won't tomorrow
<3> i know the feeling x)
<3> i am always like that myself .p
<2> Being tired is a foreboding
<2> for an hangover.
<3> ya, and drinking lots of coffee when you're very tired usually just turns you into a hyperactive zombie
<2> hehe yeah
<2> coffee won't help
<2> it will only make my headache worse.
<3> paracetamol
<3> :P
<2> I think I just need some sugar



<3> that sounds like a cheap hooker
<3> ah, perfect. coughing and barking until i throw up. i love coming home with a cold :P
<0> is it possible to build parnat - chiled cl***, if i kill the parnat it will kill the child - just want to see example
<3> i guess you have to keep track of which children each cl*** has, and kill those off in the destructor
<3> and do that recursively
<3> (oh, and it's "parent", not "parnat")
<2> Parnat - Chiled
<2> that's like a recipe
<4> hehe
<4> http://www.break.com/top_rated/escalator28.html
<4> oh the stupidity
<5> how can I get the first day/month of running week, and the first day/month of last week
<3> a starting point would be looking in help for the date and time functions
<3> i dont remember off the top of my head right now
<3> http://www.delphibasics.co.uk/ByFunction.asp?Main=DatesAndTimes&Sub=Calcs
<3> first day of this week would probably be Date()-(DateOfWeek(Date())-1)
<3> er DayOfTheWeek
<3> and then first of last week would be -7 on that again :P
<5> cool thanks
<3> you can use DecodeDate() to split it up into y-m-d
<3> you might have to adjust for locales though, as some people use sunday as first day of week :p
<0> guys, i dont understand the meaning of override, please can abybody clude explain it in easy words
<3> http://www.delphibasics.co.uk/RTL.asp?Name=Override
<3> has example
<0> i saw that :|
<0> nvm :(
<3> ok um
<3> well you still dont understand it?
<0> my english is poor sometimes
<3> when you have a base cl*** with a function that is declared virtual, you must declare it as override in the inheriting cl***es when you re-implement it
<3> to signal that you're reimplementing a virtual method of the parent cl***, and not just one of your own methods that happens to have the same name
<0> oh i see.
<3> it's part of polymorphism somehow
<3> http://www.delphibasics.co.uk/Article.asp?Name=OO
<3> lot of terms
<3> but it's usefull to know and understand their meaning
<0> Thats usefull artical, thanks
<3> coming from c++ it took me some time to get used to the delphi way of declaring things :p
<6> predeclaration?
<6> you have to do the same in C
<6> not c++ though
<3> yep
<3> and that "reimplements" codeword or whatever it is
<3> i think c# is quite clean on how it does things
<6> which is rarely ever used
<6> thats because C# is a new language, completely from scratch, delphi had to add it to make it work, and still provide backwards compatibility
<3> yea, but of course i had to run into some place i had to use reimplements
<3> hmm "reimplmented" isnt it?
<3> +e
<6> no
<6> reimplement
<3> oh reintroduce
<3> :p
<6> oh that
<3> ya, i was slightly off :P
<6> i haven't used delphi in a while
<3> reintroduce isnt really needed, though, i think
<3> more of a hint to the compiler or whatever
<6> warning suppressor i think
<3> "Reintroduce : Redefines a suppressed function"
<6> "he reintroduce directive suppresses compiler warnings about hiding previously declared virtual methods."
<3> yea.. only a warning, so using it tells the compiler you really want to do so :p
<6> yup
<6> i don't like the [] blocks in C# though
<6> i think thats pretty ugly
<3> hm what [] blocks ?
<6> the [] blocks you have to do to define attributes
<3> oh right. yea they seem somewhat out of place
<3> i havent used attributes myself yet
<3> didnt get that far
<3> will get there shortly i suppose
<6> i still want a with command
<3> hehe.. my feelings of with is mixed
<6> creates better code


Name:

Comments:

Please enter the result of the sum 63 + 46 (to avoid spam):






Return to #delphi
or
Go to some related logs:

chris yandell
tomohawk builders
oodbe
#solaris
delphi g32
#beginner
conservative vs. liberal media bias statistics
#goal
how do i delete flash textfield
amd turion verses intel centrino duo



Home  |  disclaimer  |  contact  |  submit quotes