| |
| |
| |
|
Page: 1 2 3 4 5 6
Comments:
<0> rather, you're confusing yourself <1> IntMinimum(0) in your array is 7 <1> What that your question? <2> yes Ineffigy, I am wanting re***urance that when I do my if then statement that when I type intMinumum(0) it = intMinumum 7 <2> because the 0 is pointing to the cell 0 in the array which value is 7 <1> Damn, why couldn't BoNaDs be in the split ? <3> are you threatening me? <4> Bode despite the Celica Ineffigy is a ... dare i say ... homie <3> like a wigger? <4> right <0> icy hot stunta <4> exactly like that <3> his hat is sideways and his pant leg rolled up? <4> only on the weekends <4> when he "hits the clubs"
<4> he puts on some bling <4> and does whatever they do <5> is val(string) still the accepted norm for converting text to int in .net? <6> this Lipton's iced green tea is fantastic <1> You can use Convert.Int32() or CInt() <5> the citrus? <5> but val is faster type, all the same i guess? <5> faster to type <1> I didn't even know you could use val() <5> yeah <1> Is that deprecated or somthing? <5> think its part of the visualbasic lib <6> yes. the stuff with citrus <5> it is indeed yumolicous <7> You should look at either Convert.ToInt32() or Int32.Parse - pay special attention as the big difference is how they handle leading whitespace <4> So Bode are you in the US and independently wealth like divil? <3> i am in uranus <4> i thought i felt something very tiny up there <5> What did they turn the name of uranus to in futurama .. damn the episode was on last night <1> Urectum <5> Ah yes <5> sovels taht problem <6> I've never soveled a problem before... <5> trust me its really hard, just as hard as getting you figures in tune with what your thinking about <0> it must not snow in your area then <5> or typing figures when you mean fingers <0> and forgetting the r in your <5> oh no that was intentional <0> and the incorrect use of "your"? <0> you better be drunk <5> im just fighting the system man. The establishment is oppressing me. <0> going to work drunk is one way to fight it <5> I wish i was drunk, better yet i wish i had just put the r at the end of you and I wouldnt be caught up in such a circle of lies. <0> i'd rather hear the southpark "circle of poo" song again <8> BoNaDs im on the phone with Giles over at XOSoft <8> you didnt call him <9> :< <9> lol <3> i know <3> i'm ****ing swamped <4> Bode what do you do? <3> freelance gynecology <4> lmao <6> he cured my yeast infection <4> I hear thats a booming feild <4> field <1> blooming? <6> seether is neither loose nor tight <4> I always wondered what Bode does <10> xa-mua goes to a gynecologist? i knew you were a girl <4> he is mucho mysterio <4> (mexican) <9> Ineffigy :) <6> am not. i just tend to have a lot of "feminine itching" <3> i inspected Pekelu once and nearly lost my arm in there <0> something smells fish about this story <0> fishy* <1> Sorry, I try to keep my legs together <6> too late. the joke was ruined. <0> i know. ****.
<3> covered in ghostbusters style slime up to my shoulder <6> ***y <0> kinky <11> bonads only wishes peke was into disgusting men <3> right now i'm listening to the miami vice theme song from the tv show <0> it's not fisting; it's shouldering <3> over and over and over <11> ****...brb <10> i think calling bode disgusting is being too gentle <0> when i think disgusting, i think skidmarks on supposedly clean underwear <1> Those were clean!! <1> I swear! <1> I mean ... <1> umm <1> nm <4> hey how do you expose controls? is it control mycontrol = DataList.FindControl["lable2"]; <4> ? <4> or some **** <1> form.Controls <4> then you do mycontrol.text = "Bode has a little lamb" <4> ineff: no web control <10> hi <1> The cells in a datalist? <4> no you can place controls in a <ItemTemplaye> <4> Template <4> once they are in there they repeat but you can access them <1> When do you want to access them? <4> i did it before i have to sift through my code <4> well what im doing is creating links ( i did it in T-Sql which is "bad" cuz it is not the presentation layer) <4> Creating the links is no problemo (mexican) <4> but i want to add  (space) ~ (space) <1> So you want to use then on selection or on creation or what? <4> to seperate each link so i placed labels <4> the lables will turn into my spacers so what i want to do is for (int i = 1; i < DS.Table[0].Rows.Count; i++) { DataList.FindControl["Label"+i].Text = " ~ ";} <1> http://msdn2.microsoft.com/en-us/library/0e39s2ck.aspx <-- This should have what you need <4> ahh found it i think <0> by yourself? <4> its Page.FindControl <4> BY MYSELF <4> alone <4> heheheheh <4> brb <1> BY HISSELF <4> i think there is a fare-theeee-well party downstairs <4> ty ineffigy <4> BY MYSELF! <12> I have a site with a page that displays various information given the entered search terms, and there is another identical page with a different view. Both use postback to refresh the datagrid when necessary. I want to be able to link between them (using querystrings) to switch views, but no matter how I try to link it, it posts to the new page, and my Not IsPostBack events never fire. How can I prevent the page from posting when I link to i <1> because when you goto another page, you are not posting back ... <6> lies! <4> biatch! <11> lying biatch! <12> well it could be an IE thing, dunno but it is indeed posting back on a hyperlink, or response.redirect <4> i love this direct connect crap <4> very convienient <4> the bleeping <4> love it <4> love <4> it <10> what the bleep do we know <4> no a thing <1> Ken : Your On_Load event will fire, but it is not a post back because it is the first time you have accessed that page since the last one you were just on. <1> You might want to check the query string during your onload event to see if the last page was the other data view. Postback is for handling events. <12> right, thats what I want, but my "If Not IsPostBack" events aren't firing, meaning the browser thinks it is being posted back <11> why use two different identical pages if the only diff is the view? <11> that sentence didn't make much sense, but you get what I mean <1> It registers a postback when the javascript function __DoPostBack is executed .. <12> well not completely identical, but enough that I can switch b/w them <1> Ken, why not render a different view on the SAME page .. it would help out alot and make it alot more simple to maintain <12> it might, but each page is using different user controls that are also used by other pages <12> so i'm kinda stuck to it at the moment :) <6> hide and show panels then <12> i might end up doing that, i'm just erked at why this is happening in the first place <6> its by design
Return to
#visualbasic or Go to some related
logs:
#computers rachskald difference in vlk msdn #unixhelp #politics #stocks #politics #beginner #winxp #windows
|
|