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: 1982.48 MB
Powered by
Channel Info
Network: freenodeChannel: #csharp |
Search in www.irclog.org
Log from #csharp at freenode 2006-05-20
[03:33]<zj2-wzc>Anyone know how to turn off xhtml validation in visual studio 2005. driving me nuts
[03:34]<zgzzcydjvgev>make your xhtml valid then :P
[03:35]<zj2-wzc>not my xhtml, but unfortunately my problem now.
[03:36]<zj2-wzc>weird, if you don't have the acx file open it doesn't validate on build... blah, I don't care anymore going home.
[04:37]<pjendne>hey guys. i'm trying to run a thread that will update my gui elements... i've heard i should use begininvoke or invoke. i was wonder though, what's the difference between these two, i.e., synchronous vs asynchronous msging?
[04:44]<k_z1rpnz>ey guys.. i have an SDI app and I want to load a new form but it will make itself its new window.. i like it to be more like a child of the SDI app.. sorry i'm not using MDI for this.. any advice on what should I do? tnx
[05:20]<k_z1rpnz>another thing is.. not make it as *always on top* of the app
[05:20]<sdffdaxuacdn>yeh, thats deff something u should be able to set
[05:21]<sdffdaxuacdn>you cant on the compact framework im used to... all dialogues are Modal
[05:21]<sdffdaxuacdn>but on the full framework, im sure you must be able to
[05:21]<sdffdaxuacdn>and if not, there will be a tool to get around it, or a 3rd party class. again, ull need to search.
[05:21]<sdffdaxuacdn>my full framework dev experience is pretty limited.
[05:21]<k_z1rpnz>haha.. i wonder if I really need the MDI or not
[05:21]<sdffdaxuacdn>what does MDI stand for?
[05:22]<k_z1rpnz>Multple Document...
[05:22]<sdffdaxuacdn>ok
[05:22]<sdffdaxuacdn>not sure u should be doing what ur doing tho
[05:22]<sdffdaxuacdn>i dont like the sound of non modal dialogues that dont appear in the task bar
[05:23]<k_z1rpnz>ok no probs
[05:23]<sdffdaxuacdn>it sounds all too easy for a user to hide it behind something and forget it exists
[05:23]<sdffdaxuacdn>might be worth thinking about ur design, if thats really what you are after.
[05:23]<k_z1rpnz>yeah.. I was thinking of having an MDI feature like minimize it into parent APP.. but I want it floating around.. hmm
[05:23]<sdffdaxuacdn>but if u do want to go ahead, it'll deff be possible. just need to look at the api/library a little more. is prob just a variable anyway...
[05:23]<sdffdaxuacdn>i mean, aproperty.. and failing that, google will tell ya
[05:23]<k_z1rpnz>hehe.. tnx for the time :) alot of help
[05:24]<sdffdaxuacdn>no probs.
[13:07]<gjwna>"System.IO.FileLoadException: Could not load file or assembly 'http://localhost:1348/WebSite/Speech5_2.dll' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)"
[13:07]<gjwna>But the file is right there, so is it the "assembly reference"?
[13:08]<jyvnzs>version problem
[13:08]<gjwna>It works when I load it the first time, but when I update it I get that
[13:08]<gjwna>Jivers: Do you know how I can solve that?
[13:09]<gjwna>it's pretty tough to have to create a new project everytime I compile the user control (:
[13:09]<jyvnzs>copy the right version into the bin folder
[13:10]<gjwna>but the problem is on the web client
[13:10]<jyvnzs>-that means nothing to me
[13:18]<jlvydus>+can you extend an inherit at the same time in C#?
[13:19]<jlvydus>+i'm trying to google for it but no luck in the code samples
[13:19]<jyvnzs>-what exactly does that mean to you
[13:19]<jlvydus>+class a extends c implements c
[13:19]<fyfuym-syfggag>+wtf happened to wiz 97
[13:20]<jyvnzs>-wtf do you mean it implements c
[13:20]<jyvnzs>-if it extends c, it IS c
[13:20]<jlvydus>+well
[13:21]<jlvydus>+not necessarily.. it's still an a
[13:21]<jyvnzs>-yes, its also a c
[13:21]<jyvnzs>-do you mean, a extends c, but changes the behavior of some interface from c
[13:21]<gjwna>+next problem, Permission problems - UnmanagedCode... it never ends
[13:21]<jlvydus>+oh dear, realised typo sorry
[13:21]<jlvydus>+class a extends b implements c
[13:22]<jyvnzs>-ok, we're going around in circles here...
[13:23]<jyvnzs>-is a an interface or a class, is c an interface member, an abstract member or a virtual member
[13:23]<jyvnzs>-does c belong to a
[13:24]<jyvnzs>-here, i'll make it even easier: The answer is yes
[13:26]<jyvnzs>-you know, it bothers me because that statement is very vague in the context of c#
[13:27]<jlvydus>+ACTION pokes his java head
[13:27]<jyvnzs>-because, what is A's type, is it a class, is it an interface
[13:27]<jyvnzs>-err, what is B's type
[13:27]<jyvnzs>-public interface B { void Foo(); }
[13:28]<jyvnzs>-public abstract class B { abstract void Foo(); }
[13:28]<jyvnzs>-public class B { virtual void Foo(); }
[13:28]<jyvnzs>-public class B { void Foo(); }
[13:28]<jyvnzs>-1 and 2, inheriting and implementing Foo looks the same
[13:29]<jyvnzs>-3 looks different
[13:29]<jyvnzs>-4 looks different
[13:29]<jyvnzs>-different syntax in order to extend Foo
[13:30]<jyvnzs>-1 and 2: public A : B { public void Foo() { // do stuff } }
[13:31]<jlvydus>+so just use everything as interfaces then?
[13:31]<jyvnzs>-i would
[13:31]<jlvydus>+thanks
[13:31]<jlvydus>+that all did make sense and help
[13:35]<jlvydus>down-right-right-high punch
[13:35]<jlvydus>and down-down
[13:36]<jlvydus>+that's all you needed to know in MK when you played as noob-saibot :)
[13:52]<-- svgvsdyzgjvr xrs>/dev/null")
[14:13]<fqwfyc0>-hi
[14:13]<fqwfyc0>-all
[14:13]<fyfuym-syfggag>-lo
[14:13]<fqwfyc0>-i am looking for c# IDE for my lovely Ubuntu
[14:16]<fqwfyc0>-can somebody help me please
[14:16]<jyvnzs>-vim
[14:16]<rgmznrs__>-p2wlik0, you could try out monodevelop
[14:18]<jyvnzs>-check it out
[14:18]<jyvnzs>-http://www.electricdiary.com/kmesiab/jivecam/
[14:21]<fqwfyc0>-i know
[14:21]<fqwfyc0>-but,... it sucks
[14:22]<azyfm>+Eclipse has some C# support, doesn't it?
[14:23]<jyvnzs>-yup
[14:24]<fqwfyc0>-i will chceck
[14:25]<fqwfyc0>-sorry bothering '
[14:25]<fqwfyc0>-but maybe know how to get it through apt-get
[14:25]<jyvnzs>-how but for to, get that, when now
[14:26]<jyvnzs>-how about people start talking in complete fu*@$ sentences
[14:26]<jyvnzs>-how about adopting a new policy, to make sense when we speak
[14:27]<fqwfyc0>-ok
[14:27]<fqwfyc0>-i have found it
[14:27]<fqwfyc0>-thanks
[14:29]<fqwfyc0>-do you know serwers or channels where I can find videos
[14:30]<kjr>+p2wlik0: leave here
[14:31]<kjr>+we don't do warez
[14:31]<fqwfyc0>-it's not warez







