Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: chrissie1
  • Order by date
  1. chrissie1

    should I go to the summer party?

    Any of yours you want to share Leslie? Christiaan Baes Belgium The future is out there my blog
  2. chrissie1

    Deployment of VB2005 / VB2008 Project

    If you are using vb2008 pro then the setup project is one of the new projects you can choose in the new project screen. It's under a different heading namely "Other project types"->"Setup and deployement" Christiaan Baes Belgium The future is out there my blog
  3. chrissie1

    Deployment of VB2005 / VB2008 Project

    Did you try a setup project? Christiaan Baes Belgium The future is out there my blog
  4. chrissie1

    IE 7 losing Session variables

    You are more likely to get an answer quickly if you ask this question in the asp.net forum. Christiaan Baes Belgium The future is out there my blog
  5. chrissie1

    Microsoft to Stop Selling XP June 30, Should we use Vista?

    At least nobody wants Windows ME to return ;-). Christiaan Baes Belgium The future is out there my blog
  6. chrissie1

    manipulating a string

    Long live fluent interfaces. Christiaan Baes Belgium The future is out there my blog
  7. chrissie1

    manipulating a string

    lines and even eassier to read string callStatus = "<sip:username@10.10.10.10:5060>"; lblCallStatus.Text = callStatus.Remove(0, 5).Split('@')[0].ToString(); And shorter. ;-) Christiaan Baes Belgium The future is out there my blog
  8. chrissie1

    manipulating a string

    Yeah but in this case you would end up with about the same lines of code. And a lot less readable for most people (me included ;-)). Christiaan Baes Belgium The future is out there my blog
  9. chrissie1

    should I go to the summer party?

    Even if you don't want to stay you ha(ve)d to go because you don't want your boss talking bad about you when some new employer phones him to ask how good you are. Yes some firms really do check your reference. Christiaan Baes Belgium The future is out there my blog
  10. chrissie1

    Strategies for finding a job

    Headhunters usually s**k bigtime. But don't take my word for it. It also depends on what the market is doing where you want to work. For the moment it's a sellers market here in Belgium. You just can't find the staff and if you do really want the staff you need then don't let them come to you...
  11. chrissie1

    help with some ASP.NET MVC best practices

    Thanks. I also Dzoned it http://www.dzone.com/links/aspnet_mvc_article_restful_architecture.html. People should read these kinds of things. Christiaan Baes Belgium The future is out there my blog
  12. chrissie1

    Class Property Question

    you are just getting old. ;-) Christiaan Baes Belgium The future is out there
  13. chrissie1

    Class Property Question

    of course in c# 3.0 you don't need the private members anymore. Christiaan Baes Belgium The future is out there
  14. chrissie1

    Rotate Bitmap

    you don't want to do the transform yourself because that will be ever so slow. use the method described here http://www.xtremevbtalk.com/showthread.php?t=205134 or use c# and pointers which is the fastest but unsafe way of doing things. Christiaan Baes Belgium The future is out there
  15. chrissie1

    Association Class

    I'm pretty sure a product can have only one brand but I could be misstaken. And about those ID's, you don't need them in OO, in OO you would override the equals and hashcode methods so that the object becomes unique. Id's are used by DBAs. of course that is only a minor problem. Th domain...
  16. chrissie1

    Association Class

    I think you are confussing database wit OO design. In OO design you Brand would have a colletion of products and/or you product would have a brand. Normally only one of two. Christiaan Baes Belgium The future is out there
  17. chrissie1

    Class Property Question

    BTW I think you need a readonly property which means you can leave out the set statement because the user need to set the values via the name and location properties not directly via the FullNmae property. Christiaan Baes Belgium The future is out there
  18. chrissie1

    Class Property Question

    Yes vstudio is right you are having a recusive loop. try this. always use private members to store your data in and use the properties for public access. public partial class Installation { private string fullName; public string FullName { set {...
  19. chrissie1

    C# Exceptions

    .net lets the exceptions bubble up by default unlike java if I remember correctly. So you only have to catch it in the calling method. although it can never hurt to log and rethrow like Jason showed you. Christiaan Baes Belgium The future is out there
  20. chrissie1

    Cast between different classes

    yep resharper will do it for you. Christiaan Baes Belgium The future is out there

Part and Inventory Search

Back
Top