Tim Jarvis

5,463
Reputation
493 views

Registered User

Name Tim Jarvis
Member for 1 year
Seen Nov 25 at 3:55
Website
Location Melbourne
Age 43
Melbourne based Developer C#, Delphi some Java
Nov
18
answered Writing a C# desktop application that needs to embed an encrypted database. What type of database should I use?
Nov
13
comment How does reflector show types when Assembly.GetTypes() fails due to a missing referenced assembly
Ah, I'll have a look at that. Thanks.
Nov
13
comment How does reflector show types when Assembly.GetTypes() fails due to a missing referenced assembly
This does not answer the question at all. I am not trying to resolve the assembly, I am wanting to get all the type (names) despite the unresolved reference.
Nov
13
asked How does reflector show types when Assembly.GetTypes() fails due to a missing referenced assembly
Nov
5
revised When are two enums equal in C#?
added 32 characters in body
Nov
5
answered When are two enums equal in C#?
Nov
5
comment When are two enums equal in C#?
be careful here, this is only true if the ordinal position is the same.
Nov
5
answered Is this a suitable (or possible) use of HBase?
Nov
5
accepted How to port delphi library to Win CE?
Nov
5
answered How to port delphi library to Win CE?
Nov
4
revised Linked list Recursion
edited tags
Nov
4
answered Delphi Package: Systools - I Need It!
Nov
4
comment Which ORM should I use instead of Linq to Sql?
Something to be aware of, is that an OODBMS is a very different animal to an RDBMS, because it is Object Oriented, you typically don't need to Join and subquery anywhere near as much as you would in a traditional RDBMS, the Object Model is the Schema...and a good (business app) object model is typically not that deep hierachically. I don't mean this as an Insult, but really, you should take more than a cursory glance at things before you publically dismiss them as a fad or overrated, Versant have been working on this for a looong time.
Nov
4
revised Which ORM should I use instead of Linq to Sql?
added 49 characters in body
Nov
4
comment Which ORM should I use instead of Linq to Sql?
Have you actually tried db4O ? I think you will be very pleasantly surprised, I know I was.
Nov
4
answered Which ORM should I use instead of Linq to Sql?
Nov
4
answered Getting controls in a winform to disable them.
Oct
27
accepted How to convert a generic list to datatable using lambda expression (C#)
Oct
26
answered Change icon for a Delphi console application
Oct
26
comment C# Check Object Array For Duplicates
so, you can use the SSD as a key in a dictionary, or for a more complete solution you can implement a IEqualityComparer<T> that you can use in a bunch of linq extension methods.
Oct
26
comment C# Check Object Array For Duplicates
Ah, well in this case you will need to specify the Equality, as a simple comparison of the pointer is not going to tell you that.
Oct
26
answered C# Check Object Array For Duplicates
Oct
25
comment How can I make this regex match correctly?
What about non US urls *.co.uk *.com.au etc
Oct
25
comment How to allow spaces in string when searching for position of substring in C?
+1 for asking a Homework question the right way. Don't take to heart the requests for better formatted code, its good advice and not a shot at you personally.
Oct
25
answered How many newlines should a Mono application use between “using” statements, and the namespace declaration?
Oct
25
answered Why use integers smaller than 32bit ?
Oct
25
answered How do closed-source companies see applicants with open-source background?
Oct
20
answered Client Server Assembly Missing? Db4Objects 7.4
Oct
20
asked Client Server Assembly Missing? Db4Objects 7.4
Oct
19
comment Flatten List in LINQ
+1 for the alternate syntax
Oct
5
answered contractor - billing hours for a team dinner
Oct
5
awarded  Popular Question
Oct
2
awarded  Good Answer
Oct
2
revised How to convert a generic list to datatable using lambda expression (C#)
Provided a link to some sample code.
Oct
1
accepted Embed Image into own file
Oct
1
answered How to convert a generic list to datatable using lambda expression (C#)
Oct
1
comment Embed Image into own file
Would you like a short end to end example? send me an email to <myfirstname>@<mylastname>.com.au and I'll knock something up for you
Oct
1
comment Embed Image into own file
Sure, as an extension method you would just call it from your Bitmap directly... string insertThis = myBitmap.ToBase64String(); ///file writing code, Xml or just text whatever, just add this string.
Oct
1
comment Embed Image into own file
Sure, ask away.
Oct
1
revised Embed Image into own file
added 903 characters in body
Oct
1
answered Embed Image into own file
Oct
1
comment C# issue with mutiple users trying to access cached object
the downvote (not mine) is a bit harsh though, clearly an oversite
Oct
1
comment C# issue with mutiple users trying to access cached object
This code won't compile, the getter has no return.
Oct
1
answered Notify changes on an XML file
Sep
28
accepted What use cases exist for non-static private or protected events?
Sep
25
comment What use cases exist for non-static private or protected events?
Yeah, thats a pretty common use case for private events.
Sep
25
revised What use cases exist for non-static private or protected events?
added 752 characters in body
Sep
25
comment What use cases exist for non-static private or protected events?
The contained classes are just that, contained, so they are in the scope of the class defining the private event.
Sep
25
answered What use cases exist for non-static private or protected events?
Sep
25
comment First-time software contractor, building a system for a multi-site client; who should own the intellectual property?
:-) Actually in my experience, you don'r really want to ask any questions of your lawyer, just tell them what you want to do, they will then offer you advice...IME when you start asking questions, you end up going down ratholes that you really wish you hadn't.