Search results

  1. I just killed a mother fuckin' goblin

    You guys jelly? It was mad hard to slay. This isn't trolling nor low quality, read the entire thread before you warn me. Sorry for getting excited. -.-
  2. Xyphers Post Exchange and Posting Packages

    I will start off with explaining the two. A post exchange is when you post on someones forum, say for example 10 times, and they will post 10 times on yours. It is that simple. As for Post Packages, post packaging is when some, in this case myself, offers different post packages for money...
  3. I love how things just fall into place..

    Well, The Elite is holding a competition on another forum, register and get 5 posts and you get $2... Well, I decided I would go for it, I try to register and see my name is taken. So I see if I can login as I tend to forget where I register if I am not active there... I login successfully and I...
  4. The Ultimate Math Help Thread

    Just going to share some websites that basically do the math for you. -All Math- Http://www.wolframalpha.com -Algebra- http://www.algebra.com I will update this as I come across more.
  5. [C#]Get current wallpaper directory[snipper]

    /// <summary> /// Gets the current wallpaper path. /// </summary> /// <returns>the wallpaper path</returns> private static string GetCurrentWallpaperPath() { RegistryKey wallPaper = Registry.CurrentUser.OpenSubKey("Control Panel\\Desktop", false); string WallpaperPath =...
  6. [VB.Net]MSN Messenger - Get song playing[Snippet]

    Imports System.Runtime.InteropServices Public Class MSNStatusMessage Private Declare Function FindWindowEx Lib "user32" Alias "FindWindowExA" ( _ ByVal hWnd1 As Integer, _ ByVal hWnd2 As Integer, _ ByVal lpsz1 As String, _ ByVal lpsz2 As String) _...
  7. [VB.Net]Get own IP[Snippet]

    Public Function GetExternalIP(ByVal Provider As String) As String Dim WebReq As HttpWebRequest = HttpWebRequest.Create(Provider) Dim WebRes As HttpWebResponse = WebReq.GetResponse() Dim ResStream As System.IO.Stream = WebRes.GetResponseStream Dim ResStreamReader As New...
  8. [VB.Net]Check URL for availability.

    Public Function CheckURL(ByVal URL As String) As Boolean Try Dim Response As Net.WebResponse = Nothing Dim WebReq As Net.HttpWebRequest = Net.HttpWebRequest.Create(URL) Response = WebReq.GetResponse Response.Close() Return True Catch ex As...
  9. [VB.Net]Get % Value[Snippet]

    Public Function Percent(ByVal CurrVal As Long, ByVal MaxVal As Long) As Integer Return Int(CurrVal / MaxVal * 100 + 0.5) End Function Enjoy.
Back
Top