Some of you .NET programmers may some day find some sample code written in Visual Basic, or C#, but need it in another .NET language. SharpDevelop, a free .NET IDE, has a tool built in that will convert C# into Visual Basic and Python, or Visual Basic into C#, Python and any variation. This video [...]
As many of you may already know Microsoft if trying to edge their way into the embedded Web tools department. With Adobe holding a huge market share on web objects, Microsoft decided to compete with their own product called Silverlight. Unlike Flash, Silverlight delivers a familiar and intuitive development environment similar to Visual Studio and [...]
If you’re looking for RSS support in your .NET application head over to RSSdotnet.com and download the latest RSS.NET library. They provide all the source code and API documents you need to add RSS into your program. I haven’t thoroughly reviewed the code but it does work pretty code and seems stable. I’m currently using [...]
Well I’ve been off and reading all about the DarkGSK development environment for Visual C++ 2008. So far I’ve gone through the first four tutorials which cover the basics of the DarkGDK API. It’s amazing how with just a few lines of code you can have a pretty nifty 3D program up and running. I [...]
This code snippet will show you how to use a proxy server in conjunction with the WebClient class. I’m pretty sure the WebClient class automatically uses your IE configuration (correct me if I’m wrong). This is helpful for those that are developing C# in Linux, but are behind an annoying corporate proxy server.
[...]
Do you need to upload a file to your php web server from a .Net application? I did, and I found that it was actually pretty easy. Basically the upload.php file works that same way as if you were uploading via a php/html form.
Below is example code written in C# for a TCP/IP client and server. The TCP server uses what is called a Listener object, which listens for incoming connections. On the client side, the code is written to connect to a specific IP address at which point the server side makes a connection and both [...]