@# Quotes DB     useful, funny, interesting





Google
 
Web www.quotesdb.info
Undernet  |  EFnet  |  Quakenet  |  Freenode  |  Dalnet  |  Ircnet  |  Galaxynet
Page: 1 2



Comments:

<0> The family of a California woman who died after participating in a radio station's water-drinking contest to win a Nintendo Wii will sue the station, their lawyer said on Thursday
<0> deja vue
<0> or maybe deja blue
<1> sue the station? pft, the woman choose to drink the water.
<2> of course. individuals are never to blame when there is a larger company involved
<3> i'm sure she signed a waiver also
<2> like the 19-yo who lied to a 150yo girl on MySpace, and then ****ed her. It's not his fault, it's not the girl's fault, it's MySpace's fault
<4> waivers dont mean **** for criminal cases
<4> but it should prevent a lawsuit
<1> 150?
<2> s/0/-/
<1> mm 150yo girl.
<2> http://www.robertwechsler.com.nyud.net:8080/images/applied_geometry.jpg
<4> heh
<0> they'd say it did'nt either warn them about the hazard of drinking to much water nor implicity/explicity implyed a release for this liablity
<4> ah



<0> and you cant say "release from all liability for all circumstances"
<0> trust me, the lawyers will twist it into a mountain of money
<0> Im surprised that befor th'gal could be buried, the vultures after blood money appear with lawyers
<5> hi...
<5> anyone know how to get last inserted id...?
<2> IDENTITY_SCOPE perhaps
<5> no identity scope in vb...
<4> i love when mythbusters or braniac gives you the name of an explosive substance then says some of the ingredients are secret
<4> as if you can't go on google and find out in 2 seconds
<3> heh
<2> no, but there is an identity_scope in MS SQL
<5> yes.. i'm reading on it now..
<5> thanks
<5> if i close my recordset, 'rsbook.close' would every property i set for it, like cursortype or cursorlocation be empty ( i mean do i need to set it again when i open an sqlcommand ? )
<6> http://www.blogography.com/photos13/Dumb***Book.gif
<4> http://www.koat.com/technology/10784862/detail.html
<4> http://www.peta.org/feat/stateoftheunion/f-stateoftheunion.asp
<2> bah, Sunday. Bloody Sunday
<2> bastards
<2> hmm, she's not bad... but wish PETA had found someone hotter
<6> http://img.4chan.org/b/src/1169268596920.jpg
<1> mm
<1> whats going on there?
<6> something jesus wouldn't approve of
<6> heh heh
<1> yap yap yap
<1> i heard noise comming out of her mouth
<1> but i wasnt listening
<1> Kaverin, lol
<1> peta is just another pron company now?
<1> http://getactive.peta.org/campaign/iraq_dog_abuse
<1> hah
<1> thats awesome
<1> So today i'm wearing my T-Shirt that says "FREE ***" really big on the front. I was talking to the supermarket when a car of goons slammed on their brakes in the middle of the traffic and yelled out the window "YAHH FREE ***XX" at me.
<1> i wonder if they wanted to have gay anal with me.
<1> talking? walking*
<6> heh
<6> one of the humanform replicators from sg1 is the guy that does the part of helo in bsg
<6> he does have some lines actually
<7> free ***? heh!
<8> wakakakaka
<7> what?
<8> where do you live slice?
<7> i live in jayapura
<8> so far away
<7> yes and stop slaping anyone
<8> ok slice
<9> hello
<9> how many items can a listbox have
<9> maximum number of items can it have ?
<7> google
<9> i am trying
<9> i added up to 302394 items to a listbox
<9> but when i check the listcount value its -25286
<7> http://www.thescripts.com/forum/thread14478.html
<7> Don't put more than 32767 (the maximum integer value) items in a ListBox
<7> or ComboBox
<9> okay
<9> so is there an alternative to the cl***ic listbox



<9> something can accept bigger number of items
<7> i dont know
<10> anyone feel helping a retard with connecting to an sqlserver and doing a query in msg?
<0> XTCi try a listview
<11> hey boot
<11> so, did you see any snow or ice?
<0> morn KyleL
<0> ice
<11> if there werent 8+ inches of snow on the ground here right now... I'd point and laugh at you
<11> ice... thats got to **** for you guys
<0> KyleL you ever get another apps treeview items?
<11> sure have
<11> lets see...
<0> my routine is crashing the other app
<0> :P
<11> on write or read memory?
<11> or when you send the message?
<11> The message you send to get the item info requires an out pointer to some memory
<11> that pointer has to be valid within that applications process or else it'll crash
<0> well, it a sendmessage that crashes it, but that line seems fine, the call before it is Writememory, I suspect I have some crap
<0> tv.hItem = SendMessage(hwndtv, TVM_GETNEXTITEM, TVGN_ROOT, 0)
<0> While tv.hItem <> 0
<0> SendMessage hwndtv, TVM_SELECTITEM, TVGN_CARET, tv.hItem
<0> WriteProcessMemory hProcess, ptvitem, VarPtr(tv), LenB(tv), 0
<0> SendMessage hwndtv, TVM_GETITEM, 0, ptvitem
<0> ReadProcessMemory hProcess, pitem, StrPtr(buffer), 512, 0
<0> MsgBox buffer, vbOKOnly, buffer
<0> SendMessage hwndtv, TVM_EXPAND, TVE_EXPAND, tv.hItem
<0> tv.hItem = SendMessage(hwndtv, TVM_GETNEXTITEM, TVGN_NEXTVISIBLE, tv.hItem)
<0> Wend
<0> scuse me
<0> varptr(tv), tv being the TVITEM
<7> dont flood
<11> SendMessage hwndtv, TVM_GETITEM ' is the crash line right?
<0> yeah
<11> ok
<11> pitem is allocated with VirtualAllocEx?
<0> hmm, maybe I should p*** pointers
<0> yup
<11> can I see that line?
<0> pitem = VirtualAllocEx(hProcess, 0, 1024, MEM_COMMIT, PAGE_EXECUTE_READWRITE)
<11> looks good. you've tested to make sure pitem isnt zero right?
<0> ofcource
<11> wait a sec
<11> I meant ptvitem :)
<11> is that also VitualAlloc'd?
<0> ptvitem = VirtualAllocEx(hProcess, 0, LenB(tv), MEM_COMMIT, PAGE_EXECUTE_READWRITE)
<11> ok good deal looking good so far
<11> so you're ***uming the write memory line before the getitem message isn't filling the struct out right?
<0> couldbe
<0> ***uming is the proper term yes ;)
<0> so what you been up to lately, just speneding time with family?
<11> hmm, its looknig clean man
<0> thats what I keep telling myself
<11> just trying to stay out of trouble ya know
<11> heh, but it obviously isnt :0/
<0> well, Im using fiindwindow, findwindowex
<0> and looking for a "SysTreeView32"
<11> the desktop eh?
<0> nope
<11> oh?
<0> in another app
<11> making one of those poker scamming bots then? ;)
<0> and those handles are legit according to spy++
<11> good deal then
<0> nah
<0> :P
<11> hProcess is non-zero as well right?
<0> hmm
<0> dont remeber if I checked, seems I did
<0> yeah its non zero
<11> what are you filling in for tv? how are you setting that structure up?
<11> main thing here is are you setting pszText right


Name:

Comments:

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






Return to #vb
or
Go to some related logs:

#java
DALnet FunkyC
#kl
mythedge
#chat-world
sex+mohtram
#india
submit youf wife
#india
#allnitecafe



Home  |  disclaimer  |  contact  |  submit quotes