Search Results

3
votes
9answers
2k views

VB.NET - IsNothing versus Is Nothing

Does anyone here use VB.NET and have a strong preference for or against using 'IsNothing' as opposed to 'Is Nothing' (for example, 'If IsNothing(anObject)' or If anObject Is Nothing...')? If so, wh …
3
votes
10answers
1k views

Naming convention for VB.NET private fields

Is there an official convention for naming private fields in VB.NET? For example, if I have a property called 'Foo', I normally call the private field '_Foo'. This seems to be frowned upon in the …
1
vote
2answers
793 views

How do I toggle Caps Lock in VB.NET?

Using VB.NET, how do I toggle the state of Caps Lock? …
1
vote
2answers
543 views

How do I get the current state of Caps Lock in VB.NET?

How do I find out whether or not Caps Lock is activated, using VB.NET? This is a follow-up to my …
0
votes
1answer
17 views

What is the best practice for setting the SccAuxPath property in a Visual Basic .NET project for a distributed team?

We've recently moved to Team System and now a remote team needs access to our source. However, they use a different IP address to access the Team System server, and whenever they try to open a pro …