IRC Networks
Irc Logs Stats
Start date: 2007-09-27 02:48:27
Last update: 2008-10-24 20:19:38
Channels: 41
Logged Lines: 6230436
Size: 1825.68 MB
Powered by
Channel Info
Network: freenodeChannel: #csharp |
Search in www.irclog.org
Log from #csharp at freenode 2006-07-20
Pages: < Prev
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Next >
[01:27]<vynvyv>GoatCheez41: ok granted
[01:28]<fnzjy>i don't use idea
[01:28]<fnzjy>i use VS
[01:28]<fnzjy>when i have an idea
[01:28]<cfudsd>i can name 5 or 10 things that my own IDE has that vs.net doesn't have, but I don't kid myself that it is as good as ide, most of my things could be added by plugins, they are cool, productive powerful, but i can also name 200 things VS ide has that i copy : or get inspired from
[01:28]<cjmgrug>lol
[01:28]<fnzjy>to implement my idea
[01:28]<fnzjy>:)
[01:33]<vynvyv>specifically, my question was meant to be, vs only notifies me of compiler errors when i hit f+5, is this normal?
[01:33]<fnzjy>eh a java ide
[01:33]<vynvyv>i thought it was just acting slow
[01:33]<cjmgrug>LOL
[01:34]<fnzjy>;)
[01:34]<cjmgrug>it was *meant* to be that way..
[01:34]<gjrvcxnne9w>right?
[01:34]<gjrvcxnne9w>lol
[01:34]<cfudsd>or plugin for vs.net http://www.jetbrains.com/resharper/
[01:34]<vynvyv>fine, i understand now
[01:34]<vynvyv>klumsy: yes i'll probably end up buying that
[01:34]<rxrcr>was just going to mention resharper..
[01:34]<2frgcd>Hey guys, I say I have a form that has one button, and when I click that button, I want a message box to pop up after a set amount of time, say 5 seconds. I tried System.Threading.Thread.Sleep(5000), but that seems to put the whole form to 'sleep', and it seems really laggy. Is there a way to simply wait until that time? A timer?
[01:35]<cfudsd>chaka, same guys apparently
[01:35]<fnzjy>bleh i don't need any of that ;p
[01:35]<gjrvcxnne9w>blanky: yeah, use a timer
[01:35]<2frgcd>GoatCheez41, thanks man :)
[01:35]<cjmgrug>or why not create another thread?
[01:35]<vynvyv>yeah resharper looks like exactly what I want
[01:35]<sddlld>fuckin router
[01:36]<fnzjy>or you could even use a backgroundworker
[01:36]<vynvyv>anyway thanks guys, i wasn't trying to start shit
[01:36]<sdnffdxdlld>ahhhh finally
[01:36]<2frgcd>CodeRun, thanks for the suggestion, I think it's a good one, so I'd create a nother thread, sleep that one, and then once it's back, continue with the main form operation?
[01:36]<cjmgrug>yea
[01:36]<gjrvcxnne9w>ummm
[01:36]<2frgcd>GoatCheez41, is there a way I could do that, using a timer, without having to create an eventhandler and handle the tick and what not? Becasue that's a hassle
[01:36]<gjrvcxnne9w>that's really not a very elegant solution though
[01:37]<cfudsd>real programmers use copy con application.exe
[01:37]<gjrvcxnne9w>it's a bigger hastle to use a seperate thread
[01:37]<sdnffdxdlld>np tieTYT :) I hope i gave you some decent replys where i could
[01:37]<cjmgrug>and i suppose, you must also abort it, after the messagebox thing is done
[01:37]<vynvyv>smellyhippy: definately.
[01:37]<fnzjy>smellyhippy: how do i make my hair as shiney as yours?
[01:37]<cjmgrug>GoatCheez41: really? it takes 3 lines to do what he's trying to do..
[01:38]<fnzjy>shiny**
[01:38]<sdnffdxdlld>isnt it amazing how your fingers rememeber where to go when you want to type ... its almost like you think and they do without you acctually thinking of the keys
[01:38]<2frgcd>GoatCheez41, really? then how would I do the timer approach, that is, without having to make an eventhandler and stuff, since all I want to do is 'sleep' for a while, without sleeping the whole form
[01:38]<gjrvcxnne9w>CodeRun: 3 lines if you use a timer
[01:38]<cjmgrug>3 lines if you use a thread
[01:38]<cjmgrug>:p
[01:38]<gjrvcxnne9w>i really doubt it
[01:38]<fnzjy>i wouldn't take any lines if you just gave up
[01:38]<fnzjy>;p
[01:38]<gjrvcxnne9w>you need to create tht thread, and start the thread
[01:38]<gjrvcxnne9w>that's 2 already
[01:38]<2frgcd>GoatCheez41, how? what do I do, sorry for annoying, but I set the interval to 5000, now what
[01:39]<gjrvcxnne9w>1 more line won't sleep and throw up a message box
[01:39]<gjrvcxnne9w>blanky: 1 sec
[01:39]<2frgcd>GoatCheez41, thanks
[01:39]<cfudsd>smellyhippy.. it is annoying though when they go off on there own tagent, so often when typing a word starting with AL, like always, i end up typing my wife's name - aleshia.. its like auto pilot, just like when i would cycle to a city i went to high school in, even a couple of years after finishing highschool i'd find myself turning up there
[01:39]<2frgcd>I have Timer timed = new Timer(); timed.Interval = 5000; so far
[01:41]<gjrvcxnne9w>blanky: System.Timers.Timer myNewTimer = new System.Timers.Timer(100000); myNewTimer.AutoReset = false; myNewTimer.Enabled = true;
[01:41]<gjrvcxnne9w>blanky: public void ShowTheMessageBoc(object source, System.Timers.ElapsedEventArgs e ) { System.Windows.Forms.MessageBox.Show("Blah"); }
[01:41]<sdnffdxdlld>klumsy: yeah i do that with my password sometimes :S
[01:41]<rxrcr>heh, time to get a new router if it's dropping you that much
[01:41]<2frgcd>Thanks GoatCheez41
[01:41]<fnzjy>smellyhippy: same crap has been happening to me today with bellsouth
[01:41]<gjrvcxnne9w>oh wait, i fergot to set the timer event
[01:41]<2frgcd>GoatCheez41, awww, you have to? :(
[01:41]<sdnffdxdlld>leroi: yeah? with me its just my router being shite and needing replacing
[01:41]<fnzjy>not mine
[01:41]<fnzjy>it's the area
[01:42]<gjrvcxnne9w>System.Timers.Timer myNewTimer = new System.Timers.Timer(100000); myNewTimer.AutoReset = false; myNewTimer.Enabled = true;
[01:42]<gjrvcxnne9w> myNewTimer.Elapsed += new System.Timers.ElapsedEventHandler(this.ShowTheMessageBoc);
[01:42]<fnzjy>they always recycle or go down or something around here
[01:42]<sdnffdxdlld>:/
[01:42]<2frgcd>thanks GoatCheez41
[01:42]<fnzjy>yeah i have no clue why cause where i live is pretty much the city
[01:42]<sdnffdxdlld>is foreward spelt with an e?
[01:43]<gjrvcxnne9w>forward
[01:43]<gjrvcxnne9w>no e
[01:43]<sdnffdxdlld>no its not is it ... that doesnt look right
[01:43]<gjrvcxnne9w>it's correct
[01:44]<sdnffdxdlld>why ya use the number 41?
[01:45]<gjrvcxnne9w>it was random
[01:45]<fnzjy>it's the atomic number of goat cheez
[01:45]<cjmgrug>GoatCheez41: 3 lines
[01:45]<cjmgrug>i told you
[01:45]<sdnffdxdlld>lol good answer leroi
[01:45]<gjrvcxnne>Code: lemme see ;-P
[01:45]<gjrvcxnne>(I cheated technically)
[01:46]<sdnffdxdlld>one of my original nicks was Origin42
[01:46]<sdnffdxdlld>used to use that gaming for the SWF clan
[01:46]<vynvyv>what's SWF?
[01:46]<cjmgrug>there you go, GoatCheez http://www.nomorepasting.com/paste.php?pasteID=65430
[01:46]<fnzjy>single white female
[01:46]<sdnffdxdlld>shock wave rebelion
[01:47]<kjr>tieTYT: sin...yeah
[01:47]<sdnffdxdlld>SpikeLite google shock wave rebelion
[01:47]<slycnlyvn>Result: <b>Rebelion</b>. The state of the Empire: 2006 : http://www.rebelion.org/noticia.php?id=25346
[01:47]<kjr>smellyhippy: what game?







