2
votes
How to generate Code39 barcodes in vb.net
Here's an open source barcode rendering library for .NET languages: http://www.codeplex.com/BarcodeRender
It can render so …
1
vote
Is there a way to extract .NET 2.0 from the .NET 3.5?
You could simply download the .NET Framework 2.0 SP1 (x86), the SP2 patch …
1
vote
How do you determine if an Internet connection is available for your WinForms App?
Ping google.com (or a list of well-known hosts) or try actually performing one of the functions (in a structural sense) for which your application requires Internet connectivity. There is no way, o …
2
votes
installer for net 2.0 application for windows98
Do not use Visual Studio 2008 if you intend to deploy to Windows 9x or ME. VS2008 does not support these operating systems anymore, and if you're stuck with them you should use VS2005 or e …
0
votes
Windows temporary files behaviour - are they deleted by the system?
No, this is not true. Basically, your app is responsible for cleaning up its own mess. If you don't, temporary files will accumulate over time.
…
11
votes
Is there an equivalent to the .Net FileSystemWatcher in the Linux world?
That would be Gamin the File Alteration Monitor or Inotify.
…
0
votes
How does one install .net dlls without .NET SDK or Visual Studio?
The most robust way would be to use your setup project. Open the File System view for the project, add the special folder "Global Assembly Cache", and add your assemblies to it, then build the setu …
3
votes
Microsoft Office Document’s Viewer Component
I would avoid considering the use of the Office viewers as COM object providers (even if they do register the Office COM components.) As far as I can interpret the license (I'm not a lawyer but hav …
0
votes
Where to write log for Windows app
You could try somewhere under the CommonAppData folder - i.e., CommonAppData\YourAppName\Logs - provided that you ensure size limits and/or periodic cleanups. People are used to periodically clean …
4
votes
10
votes
yield statement implementation
Here's a start, from Raymond Chen's blog:
The implementation of iterators in C# and its cons …
0
votes
.NET convert number to string representation (1 to one, 2 to two, etc…)
No, there is no such built-in class or method.
…
6
votes
printing to pdf
The free, open source PDFCreator can function as a virtual printer but it's also usable via COM. The default setup even incl …
