0
votes
C#, add references manually
If you have certain references that you always add to a project then create a new project, add the references, get the project set up like you normally would, and then select File > Export Template …
2
votes
What is the best method to find the newest last modified time of a folder of files?
Use the FileSystemWatcher object.
Dim folderToWatch As New FileSystemWatcher
folderToWatch.Path = "C:\FoldertoWatch\"
AddHandler folderToWatch.Created, AddressOf folderToWatch_Created
folde …
1
vote
How Do I Know When I Am Skilled Enough To Get A C#/.NET Job?
All good comments. When I got out of school (technical "college" with a 2-year A.A.S. degree) I thought of myself as a Visual Basic programmer (cut me some slack - I've seen the light and am now w …
3
votes
What are some good start to finish .NET project tutorials online?
Bill Steele, a Microsoft Developer Evangelist (I think that's his title) has done several "Soup To Nuts" webcast series. The three that I can recall (because I watched them) were C#, ASP.NET, and …
0
votes
Programmatically access the <compilation /> section of a web.config?
Try using the ConfigurationManager.GetSection method.
…
1
vote
How to determine whether an IP is from the same LAN programatically in .NET C#
This will get you the host name and the IP address. I'm assuming you know the IPs in your LAN so you should be able to determine if the IP address is outside the LAN that way:
// Get the …
0
votes
Convert Enum to String
I don't know what the "preferred" method is (ask 100 people and get 100 different opinions) but do what's simplest and what works. GetName works but requires a lot more keystrokes. ToString() see …
1
vote
C#: Centering controls within a form in .NET (Winforms)?
Both Mitch's and splattne's answers will work. Splattne's answer is, in my opinion, better as you can set it and forget it. Mitch's requires the code to be placed in the form's Resize event as we …
