@# Quotes DB     useful, funny, interesting





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



Comments:

<0> therefore you 'scanning' it will be doing nothing
<1> ya that is y my cursor when to 0,0 cause there is nothing in the box...
<1> it makes me think that the codes only work when the form1 is visible as a active window
<2> it doesn't matter whats in the box
<1> by the way is there a faster way to do what it should do ?
<3> schroedinger's cat
<1> cause i can see its quite very noob code i mean... for what i code it to do...
<4> hmmm, is the jury in yet....is vb broken or not? ;)
<5> POO SHOOTER
<4> umm, what dung bettles wait on..... Alex I'll take animal husbandry for 500$
<0> our company's wholesale fixedline provider screwed up their csvs and missed about 7% of the phone calls made, so we only billed for about 93% of calls. :/ = loosing money
<0> luckily theyve promised to fix it up and refund us for the damages
<0> thus im not in **** =p
<6> mm
<7> muie



<8> hii...
<8> hi bigAl thanks yesterday..
<8> anyway, i can't p*** back my textbox value, someone told me i have to set the parameter as textbox, so it would p*** the value back.. i've tested it on other function and it's working... but i don't know how to apply it to the tosqlall function you gave me yesterday...
<8> paramArray has to set as variant...
<8> if i set it as textbox, then compile error...
<9> ?
<8> is there any other way to solve it
<9> paste something
<8> Sub tosqlall(ParamArray asArgs())
<8> Dim i As Integer
<8> For i = 0 To UBound(asArgs)
<8> asArgs(i) = tosql(CStr(asArgs(i)))
<8> Next
<8> End Function
<9> nomorepasting.com, show what you are trying to do with that function
<8> ups sorry
<8> okey..thanks
<9> heh "First pirated HD DVD movie hits BitTorrent"
<10> didnt take long
<9> yea, so much for aacs
<9> http://forum.doom9.org/showthread.php?t=119871&page=33
<8> sorry takes long time... here it is...
<8> http://www.nomorepasting.com/paste.php?pasteID=73235
<9> seems windvd keeps the decrypted key in memory
<10> "whoops"
<9> text1=tosql(text1)
<9> tosql escapes the string for the database operation
<9> do not change the text in the textbox
<9> just create your sql using tosql(text1) & "','" & tosql(text2) ...
<8> actually, i'm doing this for other importance, not for the database operation... so i just want to get a new value p*** to mytextbox...
<8> for database operation, i did as you told early
<8> back to what i want to do, i don't want to write text1=tosql(text1).. if i have ten textbox then i have to write it ten times...
<8> so i hope i could call it directly like, tosql (text1,text2,text3,text4,...,text10)
<9> do you know about control arrays?
<8> then all ten textboxes will have their value changes...
<8> not, i only know vb will ask if i copy a control
<8> i choose no...
<8> can i apply that to my prob?
<9> yes
<9> read this http://www.samspublishing.com/library/content.asp?b=STY_VB6_24hours&seqNum=111&rl=1
<9> thenyou can do;
<8> oh thank you very much
<9> for i=0 to ubound(yourTextBoxes)
<9> yourTextBoxes(i).text = tosql2(yourTextBoxes(i).text) ..
<9> you will need another vertion of tosql() as the one that uses a byref string cant be used for a textbox
<9> lo
<11> is anyone else going to the msdn dev roadshow this year?
<9> i got a lifetime ban last year after the whole ****ting in the canapes thing :(
<9> i suppose i could sneak in in a burka
<4> ooooO, binkiniburka!
<4> HUMAN....the hight of perversion, they clothe thier WOMAN.....HUMAN
<9> transparent burkas, problem solved
<4> please..... it might be safer that its not
<4> snow today... time to go to work and get nothing done, ltr gents...
<8> i have two control txt_name(0) and txt_address(1)
<8> for i=0 to ubound(txt_name)
<8> will raise error
<8> asking for array...
<8> i thought txt_name is array already...
<9> no, you need to make it an array, set the index property of txt_name to 0 in its properties window



<9> then if you rename txt_address to txt_name it will become txt_name(1)
<9> then if you rename txt_*** to txt_name it will become txt_name(2) .. etc
<8> so they need to have a same name...
<9> indeed
<8> yes but still got same error...
<8> i look at my textboxes... txt_name with index 0, text_name with index 1
<8> ubound(txt_name)
<8> error
<6> http://www.kontraband.com/show/show.asp?ID=3112 ;)))
<9> what error
<8> asking for array
<9> For i = 0 To txt_name.UBound
<8> i store the value of these txt_name in other textbox, text1=txt_name(0) & text1=txt_name(1)
<9> ?
<8> after processed in my function, it return empty
<8> sorry just to make sure.. i mean the result is empty
<9> you need to show code
<8> my txt_name(0) and txt_name(1)
<8> my tosql function ?
<8> okey
<9> <@bigAl> you will need another vertion of tosql()
<9> function toSQL2(s As String) As String
<9> toSQL2 = Replace$(s, "a", "p") 'test to change a to p
<8> i changed s as string to s as textbox... that what i have tried...
<9> End Function
<9> then txt_name(i).text=tosql2(txt_name(i).text)
<8> yah.. its working....
<8> mm... i change my s=replace$...
<8> i thought it could directly p*** by the parameter, so i use s=replace...
<8> i forgot i wait for function return.. ^^
<9> that works for variables, it wont work for properties like .text
<8> yes, i can do that if i change it to sub not function
<8> then change s as string to s as textbox...
<8> it works too
<9> thats p***ing in an object and directly accessing it, same effect but a different mechanism than byref
<8> i change txt_name(i)=tosql... to tosql txt_name(i)
<8> hahahaha, i'm so happy now.... ^^^^
<8> thank youuuuuu......
<8> so much :)
<8> gtg now... bye.. and thanks for helping once again...
<9> yw
<9> http://www.youtube.com/watch?v=NbYczbBlatA
<6> lol
<2> wtf
<9> thats their real army
<6> Well, then we are doomed ;P
<9> the teddy bears are certainly ****ed
<12> love how they scream after having their heads ripped off
<12> that, and the indiana jones music
<9> hehe single channel, i like the way the music cuts out for the sound effects
<12> one hopes that was editted in some way, and is not the original turkish film. That, or that all of Turkey's moviegoers have severe ADD
<13> http://video.google.com/videoplay?docid=-7069307816427160377&q=turkish+star+wars
<13> thars the whole thing aparrently
<14> WTF Is THAT?
<9> Turkish Star Wars
<13> this translation is horrible
<13> "There is just no end to them. They come in multitudes. Let's go over them"
<13> "We must cross over the space seed. Be prepared to counter the coming ones."
<13> this is the best one
<13> "These coming ones are too sour faced. It'd be nice if some chicks with mini skirts were coming"
<11> lol
<13> silly turks
<11> I think the Turkish are a Deligh
<11> t
<11> I must concentrate on the job at end
<14> I mean, what is it REALLY?
<13> Turkish Star Wars
<13> bootleg clips of star wars all up in it, horrible plot, etc
<13> using swords, aparrently
<13> seems slightly contradictory
<9> NO NO NO
<9> he MELTED the golden sworn ON TO HIS HANDS


Name:

Comments:

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






Return to #vb
or
Go to some related logs:

#worldchat
#kl
#allnitecafe
#india
#india
#chat-world
#chat-world
#allnitecafe
boytoboy
crimson_deacon



Home  |  disclaimer  |  contact  |  submit quotes