Skip to content

New BBcode for VB Codes

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #188124
    Admin
    Administrator

    hey now when you add codes examples click on the VB bb on the top left right next to URL 🙂 that way the codes will look like in vb for example 🙂

    Option Explicit
    Public Declare Function INIWRITE Lib "kernel32" Alias "WritePrivateProfileStringA" (ByVal lpApplicationName As String, ByVal lpKeyName As Any, ByVal lpString As Any, ByVal lpFileName As String) As Long
    Public Declare Function INIGET Lib "kernel32" Alias "GetPrivateProfileStringA" (ByVal lpApplicationName As String, ByVal lpKeyName As Any, ByVal lpDefault As String, ByVal lpReturnedString As String, ByVal nSize As Long, ByVal lpFileName As String) As Long
    Public Declare Function EnumWindows& Lib "user32" (ByVal lpEnumFunc As Long, ByVal lParam As Long)
    Public Declare Function GetWindowText Lib "user32" Alias "GetWindowTextA" (ByVal hwnd As Long, ByVal lpString As String, ByVal cch As Long) As Long
    Public Declare Function GetWindowTextLength Lib "user32" Alias "GetWindowTextLengthA" (ByVal hwnd As Long) As Long
    Public Declare Function IsWindowVisible& Lib "user32" (ByVal hwnd As Long)
    Public Declare Function GetParent& Lib "user32" (ByVal hwnd As Long)
    Public Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Any) As Long
    Public Declare Function SendMessageLong& Lib "user32" Alias "SendMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, ByVal lParam As Long)
    Public Declare Function SendMessageByString Lib "user32" Alias "SendMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, ByVal lParam As String) As Long
    Public Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
    Public Declare Function FindWindowEx Lib "user32" Alias "FindWindowExA" (ByVal hWnd1 As Long, ByVal hWnd2 As Long, ByVal lpsz1 As String, ByVal lpsz2 As String) As Long
    Private Declare Function SendMessageSTRING Lib "user32" Alias "SendMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, ByVal lParam As String) As Long
    Private Declare Function SendMessageStr Lib "user32" Alias "SendMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As String) As Long

    Private Const EM_GETLINECOUNT = &HBA
    Private Const EM_GETLINE = &HC4
    Public Const WM_GETTEXTLENGTH = &HE
    Public Const WM_LBUTTONDOWN = &H201
    Public Const WM_LBUTTONUP = &H202
    Public Const WM_SETTEXT = &HC
    Private Const EM_LINELENGTH = &HC1
    Public Const WM_GETTEXT = &HD
    Private Const HTCAPTION = 2
    Private Const WM_KEYDOWN = &H100
    Dim sPattern As String, hFind As Long
    Public Const GW_Child As Long = 5

    nice eh 😆

    #188126
    Admin
    Administrator

    nice

    #188125
    Admin
    Administrator

    Yeps I love it it’s easier to understand the codes.

    Ah onething i had to take out the other bbcodes I think it was making the forums mess up 🙁

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.