73 reputation
8
bio website
location
age
visits member for 1 year, 11 months
seen May 15 at 11:58
stats profile views 13

Jan
17
answered Android Jelly Bean 4.1.2: People app doesn't display birthday event
Jan
14
asked Android Jelly Bean 4.1.2: People app doesn't display birthday event
Nov
27
awarded  Popular Question
Nov
21
awarded  Teacher
Nov
21
comment cannot get the right output of a recursive function
also as pepsi says, this won't work with exponents not being a power of 2...
Nov
21
answered cannot get the right output of a recursive function
Nov
21
awarded  Scholar
Nov
21
accepted XML Schema: keyref to some subelements of a specific element
Nov
21
awarded  Commentator
Nov
21
comment XML Schema: keyref to some subelements of a specific element
yes, i already saw the question you linked. Actually in the end i decided to change my XML format in order to have process elements ant their actionStatus inside the workflows. i'd have preferred keeping workflows and processes separated, but i guess this is a good solution too. Thanks a lot anyway for your answers!
Nov
19
comment XML Schema: keyref to some subelements of a specific element
thanks for the answer. unfortunately, i cannot use schematron because this is a university assignment and i'm supposed to strictly use W3C XML Schema only. anyway, thanks for the advice, i will surely take a look at Schematron for personal knowledge!
Nov
12
awarded  Tumbleweed
Nov
6
revised XML Schema: keyref to some subelements of a specific element
improved formatting
Nov
5
asked XML Schema: keyref to some subelements of a specific element
Jul
27
comment Odd Clipboard behaviour with FileDrop format
yeah, you're right XD
Jul
27
comment Odd Clipboard behaviour with FileDrop format
yeah, actually i managed to resolve the problem. The code above was executed in different threads, one per client. I thought the clipboard methods were completely thread-safe, as they state in the documentation, but apparently they are not. Anyway, i solved this problem by invoking the code above in a single thread.
Jul
27
asked Odd Clipboard behaviour with FileDrop format
Jul
15
awarded  Supporter
Jul
13
comment C# SocketException doesn't get caught
yes, but as soon as the connection gets closed it returns null, i tested that
Jul
13
comment C# SocketException doesn't get caught
Ok, thanks for the help. I will try to do this. Anyway, i almost solved this by also checking if the readline returns a null string in the reading loop. if that happensa i break the loop. I also added a "finally" block which gets executed if i get an exception or the loop ends, so in any case i am now able to end the client program when the conneciton i closed by the server.