@# 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 13 14 15 16



Comments:

<0> Nothing like a major storm to keep things jumping. I wonder when they'll come up with surge suppression good enough to take a direct lightning hit....
<1> aargh. I found out that it's easier to write a cf application and put pocketOS on my samsung phone than using j2me.
<2> Mjolnir: that won't happen anytime soon I guess ;)
<0> YEah. One dead router this time. Plus a multi-hour power outage.
<1> that's with a surge protector?
<3> I need a quick way to count how many folders are inside of a sub folder
<3> hmm .. wow .. that was like the worst way to frase that question
<3> I need to know the number of files there are in a directory which I am going to be searching
<3> can anyone think of a quick way to get that number?
<4> find . -type -d | wc -l
<4> find . -type d | wc -l
<4> you can use -maxdepth if you dont want to recurse, likewise leave it out to recurse
<1> rm -rf `find . -type -d -m 1`
<1> rm -rf `find . -type -d -maxdeth 1`
<3> "rm"??
<1> remove



<1> -r recurse
<1> -f force don't complain
<4> hey, he said count
<4> why are you deleting
<4> oh wait
<1> :P
<4> haha
<4> this isn't even #linuxhelp
<4> duh
<4> i bet he's wanting a DOS way :)
<1> maybe delphi ?
<4> or that
<4> but i mean as far as command
<5> can't i breakpoint in a windows message function?
<6> yo
<6> VibesIX: just picked up one of these - http://www.cannondale.com/bikes/05/cusa/model-5RR9D.html
<7> sweetness
<7> Spiderman 3 is about Venom
<8> i like how they justify a new looking spiderman:
<8> "J. Jonah Jameson Jr. returns from a mission from space with mysterious sample. This sample bonds itself to Peter Parker and gives him enhanced powers along with a new suit."
<7> lol
<7> maybe because thats exactly what happened in the comic books?
<8> it did?
<7> umm yes
<7> Peter Parker bonded with Venom
<8> maybe the comics were written in mind of a movie being produced..
<7> lol
<7> yeah sure
<8> :)
<7> 1988 was his first appearance
<7> http://en.wikipedia.org/wiki/Venom_%28comics%29
<8> check him out..
<8> wouldn't mind seeing what he looks like in the movie..
<9> ah .. venom and carnage .. *relives youth*
<7> heh yeah
<7> joe90: http://www.apple.com/trailers/sony_pictures/spider-man_3/index.html <--- trailer with venom bonded to spiderman
<10> connection too crappy to really do anything right now..
<5> anyone around?
<11> hi The_Morph
<11> ups!
<11> (tab completion)
<11> hi the_sniff
<5> hey asig
<5> i'm trying to use EnumWindows
<5> and from the function it calls i want to create a button on my form, possible?
<11> I think it's possible. I never try todo it.
<11> It it doesn't work, you can also add every item to a list, an then, out of callback, create a button for every item in the list
<11> (it it-->if it)
<5> yeah i thought about it now :p thank
<5> thanks
<11> :)
<5> weird
<5> button is created
<5> but it isn't on the form ;S
<11> ***ign a Parent
<5> oh didn't ***ign
<5> yeah lol
<5> how can i p*** the Caption value back to the form?
<5> oh nvm :P
<5> damn it my delphi is rusty



<5> not that it was that shiny anytime :p
<5> if im creating a button and having an OnClick event which i want to p*** my own parameters to it, how do i do it?
<12> hmmm
<12> let me thinkl
<12> you could add some custom properties to the button
<12> and set them
<12> or....pretty much every delphi cl*** has a 'tag' property
<12> which is a dword - can be used as a pointer
<12> a pointer to a record or whatever
<12> if memory serves me right, i dont think you can p*** parameters to an .onclick like a regular procedure
<5> i refreshed my memory
<5> its kinda clumsy though
<5> i use an array of records which have a tbutton
<5> and the vars
<5> and i check if the tbutton inside the record is the sender
<5> then use the vars in that part of the array
<12> ok
<13> hey guys
<14> hey
<13> i hope this isn't too much off-topic.. i have some data that was written by a c++ program. it was written to a byte array (or something) in such a way: array_ << cpp_float_type_variable
<13> i want to get the correct floating point number in delphi
<13> i tried using the Single type but it doesn't *seem* to be right, although it might be
<13> is there any difference as to how the floating number is stored in delphi\c++? since delphi doesn't have the "float" type (afaik)
<13> for now i am just loading the data into a string, then doing PSingle(@str[1])^
<5> How do i bring a window to the front? ShowWindow(hwnd, SW_SHOW) restores it, i want it as it is
<13> i guess BringWindowToTop(handle);
<5> thank
<5> s
<13> or SetForegroundWindow(handle)
<13> try both, one should do it
<13> the second one sounds better tho :)
<5> the 1st one was ok, thanks :p
<5> i was writing a simple "shell replacement" since i was bored
<5> like a year and a half ago i think
<5> i kept bugging everyone here
<5> and left it in the middle (was doing it for fun)
<5> and since i've nothing better to do
<5> im continuing it :p
<15> i'm sorry i got disconnected
<15> nice thing, are you actually replacing the shell or just doing overlays and such?
<15> mytoz any ideas on my problem btw? :)
<9> the datatypes are probably different yes
<15> yes it seems it loads it wrong, though i am not sure..
<9> your compiler documentation may give you more specifics
<15> do you think it's compiler specific?
<9> both types seem to be 32bits long, but the ranges differ
<15> oh
<15> it's probably written in a different manner
<9> (i dunno what c++ compiler you're using though)
<15> it's pre-compiled
<15> it's communication between a client and a server
<15> both are precompiled
<15> so they are obviously using the same version of 'float'
<15> i would guess it would be the same for all cpp comps
<15> must be something about how << works.. O_o
<9> i don't know, but my (old) c++ compiler and delphi compiler both seem to not agree about float = single
<15> hehe
<15> guessed so, bummer
<15> it seems c++ is doing float by the IEEE real*4 standard
<15> so i read.. :)
<5> MrBrdo well it's more like a task bar replacement
<5> the shell is too much work :p
<15> that's weird, it says that delphi is using IEEE also
<15> ah :)
<5> but my task bar has a little form using the shell component if that counts ;p
<15> shell component?
<5> there's this twinshell or smt
<5> h
<5> in delphi
<15> oh
<15> don't know it :)
<5> check it out
<5> http://img518.imageshack.us/img518/2238/awwwwmyveryownshell8gj.png
<5> :D~


Name:

Comments:

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






Return to #delphi
or
Go to some related logs:

#politics
#beginner
proxy and reyna12
#windows
#computers
#stocks
#sex
#nhl
#computers
#gentoo



Home  |  disclaimer  |  contact  |  submit quotes