Tag Archives: vb.net

What’s Going On?

Got some emails asking what’s been going on. I know I haven’t posted in a while. Some people miss my daily code snippets and short tutorials. I’ve been working hard on an anti-cheat system for BHD with http://cheatsense.com I haven’t … Continue reading

Posted in General, Programming, Tech News, tips | Tagged , , , , | 2 Comments

.NET URL Shorten-er Library

I’ve been working on a few applications were I’ve been using TinyURL a lot. So, I thought I’d create a library for .NET that contains functions for the most popular URL Shorten-er sites.   Function TinyURL Function TimesURL Function DoiopURL … Continue reading

Posted in Downloads, General, Programming, Tech News | Tagged , , , , , , , | 10 Comments

Gravatar & .NET

Some emails coming in wanting to know an easy way to get Gravatars into their .NET applications. I’ll show 2 ways, both in C# and VB. First I’ll share with you my MD5 function used to return the hash of … Continue reading

Posted in Programming, Tech News | Tagged , , , , | 2 Comments

TimesURL & .NET

I’ve got a few emails regarding http://timesurl.at. If you want to use this service you can still the use code from [TinyURL & .NET]. All you have to do is change one line of code. Change http://tinyurl.com/api-create.php?url= to http://timesurl.at/api/rest.php?url= And … Continue reading

Posted in Programming, Tech News, tips | Tagged , , , , | 1 Comment

TinyURL & .NET

Ever want to parse a TinyURL in your .NET application? TinyURL has a very simple and easy to use API. I’ll guide you through the process of returning a TinyURL in VB.NET 2008 and C# .NET 2008 First off you … Continue reading

Posted in Programming, Tech News, tips | Tagged , , , , | 3 Comments

uStreamer: It’s still alive!

I’ve recieved tons of emails wanting to know when an update to uStreamer will be available. Soon! I’ve been working personal things the last 2 weeks but I did not forget about uStreamer! The next version to come will support … Continue reading

Posted in Downloads, General, Other, Programming, Tech News | Tagged , , , , , , , , | Leave a comment

uStream Wrapper

I’ve been working on a few uStream.tv applications using the .NET framework. I noticed there are alot of people that are confused on the uStream API provided. I’ve taken it upon myself to wrap the API in a nice and … Continue reading

Posted in General, Programming, Tech News | Tagged , , , , , , , | Leave a comment

VB.NET 2008 & Shockwave Flash

Alot of people are wanting to embed flash object,movies or video streams into thier applications these days. I’m going to show some examples and tips & tricks of using the Shockwave Flash object and namespace. VB.NET and the Shockwave object … Continue reading

Posted in General, Programming | Tagged , , , , , , , , , , | 6 Comments

INI Handling Using VB.NET 2008

Private Declare Ansi Function GetPrivateProfileString Lib “kernel32.dll” Alias “GetPrivateProfileStringA” (ByVal lpApplicationName As String, ByVal lpKeyName As String, ByVal lpDefault As String, ByVal lpReturnedString As System.Text.StringBuilder, ByVal nSize As Integer, ByVal lpFileName As String) As Integer Private Declare Ansi Function WritePrivateProfileString … Continue reading

Posted in General, Programming | Tagged , , , , , | 1 Comment