Jump to content

Silverwind

Members
  • Posts

    238
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Silverwind

  1. bump
  2. bump
  3. bump
  4. 10 euros PSC or 8 euros paypal guys
  5. If someone can register domain names with PSC, pm me please.
  6. bump
  7. bump
  8. bump
  9. bump
  10. You can offer whatever you think is OK with you. BTW the only payment method is with PSC.
  11. You can offer whatever you think is OK with you. BTW the only payment method is with PSC.
  12. There's not :(
  13. There's not :(
  14. Hello. I'm selling a 29 level account in EUNE (EXP: 831/2750). Champions: Akali Annie Ashe Cassiopeia Evelynn Fiddlesticks Garen Hecarim Janna Jax Katarina Lux Master Yi Nocturne Nunu Riven Ryze Shaco Teemo Tristana Twisted Fate Twitch Varus Veigar Warwick Xin Zhao Zilean Skins: Assasin Master Yi Mercenary Katarina Mythic Cassiopeia Woad Ashe IP/RP 125 RP/1000 IP PM me for price
  15. Alright, this is my opinion about Psomas, based on my expirience. First of all, the real hosting company behind this sucks as hell. (OneBestHosting.com) Here's a review about the company (http://www.webhostingreviews.com/one-best-hosting-reviews.htm): I do not know if the guy they mention is Psomas, but I didn't have any problems with him until today. My site, psomas' site and OneBestHosting.com are down for 10 hours and Psomas doesn't even give a fuck about us. He's not replying on MSN and he didn't even inform us. I don't blame Psomas about this, but he made a very wrong choice using OneBestHosting.
  16. What's P/Invoke? P/Invoke aka Platform Invocation is a feature of Common Language Infrastructure implementations, like Microsoft's Common Language Runtime, that enables managed code to call native code. How do I use it? There are currently two ways to use P/Invoke. But in this thread I will cover the most used way, which is the DllImport feature: You use DllImport, like this: <DllImport("dwmapi.dll")> _ Public Shared Function DwmExtendFrameIntoClientArea(ByVal hWnd As IntPtr, ByRef pMarinset As MARGINS) As Integer End Function This lets us use the DwmExtendFrameIntoClientArea function from the dwmapi library. Let's use DllImport to give to our Windows form the Aero effect. (This only works in Windows7/Vista.). Step one: Open VS and create a new Windows Form project. Step two: Set Form1's BackColor property to "Black" Step three: Add this code: <StructLayout(LayoutKind.Sequential)> _ Public Structure MARGINS Public cxLeftWidth As Integer Public cxRightWidth As Integer Public cyTopHeight As Integer Public cyButtomheight As Integer End Structure <DllImport("dwmapi.dll")> _ Public Shared Function DwmExtendFrameIntoClientArea(ByVal hWnd As IntPtr, ByRef pMarinset As MARGINS) As Integer End Function Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load On Error Resume Next Dim margins As MARGINS = New MARGINS margins.cxLeftWidth = -1 margins.cxRightWidth = -1 margins.cyTopHeight = -1 margins.cyButtomheight = -1 Dim hwnd As IntPtr = Me.Handle Dim result As Integer = DwmExtendFrameIntoClientArea(hwnd, margins) End Sub Make sure you import the System.Runtime.InteropServices namespace. Debug your project. It should look like this: Thanks for reading!
×
×
  • Create New...