@# 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



Comments:

<0> ?
<0> how can i tell my browser to autoopen filetype .nnz
<0> so it does not ask to save or open..
<0> everytime..
<0> ?
<0> just opens..
<0> when i do a build.. why does it miss one of the dll compenents?
<0> it does not copy it from the debug.. to the release. folder.
<0> i gota do it mannually..
<0> how do i make a reference to it so it does it auto?
<0> why do i get an error.. when its fully built.. and i dont get that error.. when in debug mode?
<0> its not dependent on any outside resource.
<1> is the component/common cl*** library compiled?
<0> yes
<0> error is a gdi+ drawing error.
<0> what does >> A first chance exception of type 'System.IndexOutOfRangeException' occurred in mscorlib.dll



<0> mean?
<1> hrm
<1> are you threading it?
<1> I dont **** with .NET much
<0> no.
<1> But "Index out of range" usually has to do with arrays
<1> and them not being loaded
<0> isee.
<1> or buffer size being smaller than whatever is intended
<0> does Debug.write.. only output to debug mode app? and not in the final relase.. not compiled in relase.. right?
<1> yah.. because theres no debug to write to
<0> whats ascii code for the C copyright icon?
<1> chr(169)
<1> i believe
<1> not sure though
<2> PowerShell to the rescue!
<2> [char]169 does return that copy right char
<2> specks was right!!! ding ding ding!
<1> :o
<2> now, what's the ascii code for the trade mark?
<1> dont remember
<1> time to pickup my food
<1> ;]
<1> brb
<2> uhm, there is no TM ascii char
<0> superscript T and M
<0> anyone here signed up for the free vs 2005 Standard copy?.. i still have not recived confirmation.. :(
<1> BAsic
<1> Ill upload it to an ftp (that you provide) for $20
<1> itsa 3 gigs with msdn
<0> no..
<0> its a legit copy.
<0> ended on june 30..
<0> now they give away the Pro version 90day trial.
<1> mine is a legit copy
<0> but i did not get confirmation for mine yet..
<1> store bought
<1> :\
<1> anyways im gonna get my food now
<0> right.. but uploaded.. :) = nonlegit for me..
<1> bbl
<3> i sent a icon to the system tray
<3> and i can also kill it
<3> how do i make my program disappear from taskbar after i sent it to icon tray
<0> for graphic.. smoothingmode.. which is best? antilaisasing or high quality
<3> dsigh
<3> sigh
<4> nudity.
<3> sup
<3> Envador do you know how?
<1> mmmm'
<1> fatburger
<4> fatburger is good.
<4> they the only place open tonite?
<0> how can i make my release not have .config .manifes. and other files..outside of .exe main program?
<1> Envador: i dont know
<1> that was the only place i tried going
<1> and damn was it good
<1> ;]
<5> hey Envador
<6> http://ejokeimg.pchome.com.tw/see-post.html?Flow_No=326108&cat=94&rank=&page=0



<1> LOL
<1> LOLoOL
<1> omg
<1> i honestly
<1> just died
<1> what a ****ing moron
<4> hey bob
<1> *** with sheep and goats
<1> you like what you hear, dontcha?
<4> oh yeah baby, talk dirty to me
<4> pull your sack up
<0> how can i make a Data file.. out of my application settings? so I can save and load settings.
<0> do i have to manually set every setting option in the my.settings?
<0> is there a way to enumerate the setting options.. and save to a data file..
<0> then be able to load it bacK?
<0> how can i get a list of set application setings?
<1> i heard listening to the ramones
<1> does the trick
<1> :\
<0> http://www.rafb.net/paste/results/a6h7J764.html
<0> please help >> http://www.rafb.net/paste/results/a6h7J764.html << innerexception error..
<0> dont know how to fix it.. can anyone spot the problem? it wont compile for debuging..
<0> but build for relase works
<0> ?
<7> http://www.rafb.net/paste/results/Qbjlqu53.html
<8> anyone here have example code for reading/writing to a smartcard device with mscomm please help.
<7> tons of ways to write to smartcards
<7> are you writing to mcu's or i2c's?
<8> you familar with rom102's ?
<7> go ask in #dishnetwork
<8> have and no one answers
<7> well we dont do sat in here
<7> we do programming with visualbasic
<8> well this app is based in vb6
<8> I was hoping for help with a atr reset routine
<7> diff smartcards respond to atr's differently
<7> if you already have the app, then you have a head start
<8> that I understand but what do you do to get responses from them is what I'm curious about
<7> the response with mscomm in vb6 is not an event, which you apparently figured out
<8> yes
<7> you need to query the bytes waiting in the buffer to see if the response is waiting
<7> its a property of the control
<8> I see
<8> well to throw a bigger twist I'm not using a iso reader I'm using what they call a loader or unlocker to test sc's with
<7> makes sense
<7> mscomm.BytesReceived = Returns the amount of data received (currently in the receive buffer). Use the GetData method to retrieve data.
<7> DataArrival Event = Occurs when new data arrives.
<7> oops
<7> hehehe
<8> :>
<7> Occurs when new data arrives.
<7> http://msdn.microsoft.com/library/default.asp?url=/library/en-us/comm98/html/vbevtoncomm_comm.asp
<7> there's your event to detect if the data is coming in from the card
<7> OnComm
<9> well well
<7> http://msdn.microsoft.com/library/default.asp?url=/library/en-us/comm98/html/vbobjoncomm_commx.asp
<7> http://msdn.microsoft.com/library/default.asp?url=/library/en-us/comm98/html/vbproinbufcnt_comm.asp
<7> InBufferCount Property
<7> Returns the number of characters waiting in the receive buffer
<7> http://msdn.microsoft.com/library/default.asp?url=/library/en-us/comm98/html/vbobjcommx.asp
<7> Buffer$ = Buffer$ & MSComm1.Input
<7> see?
<7> gotta read msdn
<7> http://msdn.microsoft.com/library
<8> kk
<8> just trying to figure out what to send to the card to get a proper atr return
<7> well u said you have code for atr's
<7> we aint dishnet coders here
<7> gotta find dishnet rom102 card command codes
<7> or
<7> if you have any programs to read/write rom102 cards, then simply get a serial port monitor program (portmon from sysinternals) you can watch the data flow
<7> and learn the codes


Name:

Comments:

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






Return to #visualbasic
or
Go to some related logs:

rocko messagepals
#politics
SqlDataSourceConnectionStringEditor
#beginner
md5 encrypt eggdrop
usenet
button component shit
#feckoff
car towing fee
#vmware



Home  |  disclaimer  |  contact  |  submit quotes