Part of Slepp's ProjectsPastebinTURLImagebinFilebin
Feedback -- English French German Japanese
Create Upload Newest Tools Donate
Sign In | Create Account

Advertising

advertising

related pastes to tag 'vb'

1933985 - olecom: phpbb post vb msword
  1. ==
  2. == File of "Microsoft Word Objects" aka ThisDocument: Форум_GallopeRU_v001.cls ==
  3. ==
  4. VERSION 1.0 CLASS
  5. BEGIN
  6.   MultiUse = -1  'True
  7. END
  8. Attribute VB_Name = "Форум_GallopeRU_v001"
  9.  
1933117 - olecom: phpbb post word vb ms
  1. Public WithEvents прога As Word.Application
  2. Sub прога_WindowSelectionChange(ByVal Sel As Selection)
  3. Dim i, j, s, d, возврат, имя
  4.  
  5. If Len(Sel.Range.Document.Content.Text) = Len(Sel.Text) Then
  6.     параментры_поста.Show
  7.     If параментры_поста.Tag <> "АГА" Then
  8.         Exit Sub
  9.  
1630004 - VBA: Get Username from PC: user name vba vb
  1. Option Compare Database
  2. Option Explicit
  3. Private Declare Function GetComputerNameA Lib "kernel32" (ByVal lpBuffer As String, nSize As Long) As Long
  4. Private Declare Function GetUserName Lib "ADVAPI32.dll" Alias "GetUserNameA" (ByVal lpBuffer As String, nSize As Long) As Long
  5.  
  6.  
  7. Public Function GetCurrentUserName() As String
  8. On Error GoTo Err_GetCurrentUserName
  9.  
1629994 - Access: Get PC Name : pc name vba vb
  1. Private Declare Function GetComputerNameA Lib "kernel32" (ByVal lpBuffer As String, nSize As Long) As Long
  2. Private Declare Function GetUserName Lib "ADVAPI32.dll" Alias "GetUserNameA" (ByVal lpBuffer As String, nSize As Long) As Long
  3.  
  4. Public Function GetComputerName() As String
  5. On Error GoTo Err_GetComputerName
  6. Dim Username As String * 255
  7. Call GetComputerNameA(Username, 255)
  8. GetComputerName = Left$(Username, InStr(Username, Chr$(0)) - 1)
  9.  
1629963 - Access: Get Username: access vba username vb
  1. Private Declare Function GetComputerNameA Lib "kernel32" (ByVal lpBuffer As String, nSize As Long) As Long
  2. Private Declare Function GetUserName Lib "ADVAPI32.dll" Alias "GetUserNameA" (ByVal lpBuffer As String, nSize As Long) As Long
  3.  
  4.  
  5. Public Function GetCurrentUserName() As String
  6. On Error GoTo Err_GetCurrentUserName
  7. Dim lpBuff As String * 25
  8. Dim ret As Long, Username As String
  9.  
worth-right
fantasy-obligation