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
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
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
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
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...
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
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
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...
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
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
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 {...
.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
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.