VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

A snippet of code that can extract the contents of a text box that has been set to multiline, line

Jeff Clayton  (1 Submission)   String Manipulation   VB 6.0   Unknown Difficulty   Fri 24th September 1999   Mon 8th February 2021

A snippet of code that can extract the contents of a text box that has been set to multiline, line by line

API Declarations


Public Const EM_CANUNDO = 198
Public Const EM_GETMODIFY = 184
Public Const EM_SETMODIFY = 185
Public Const EM_UNDO = 199

Public Const EM_CANPASTE = 1074
Public Const EM_FINDTEXT = 1080

Public Const EM_GETFIRSTVISIBLELINE = 206
Public Const EM_GETLINECOUNT = 186
Public Const EM_GETLINE = 196
Public Const EM_LINEFROMCHAR = 201
Public Const EM_LINEINDEX = 187
Public Const EM_LINELENGTH = 193

Public Const EM_EXLINEFROMCHAR = 1078
Public Const EM_LINESCROLL = 182
Public Const EM_SCROLLCARET = 183
Public Const EM_SETTABSTOPS = 203


Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hWnd As Long, ByVal wMsg As Long, ByVal wParam As Integer, ByVal lparam As Long) As Long


Rate A snippet of code that can extract the contents of a text box that has been set to multiline, line (2(2 Vote))
A snippet of code that can extract the contents of a text box that has been set to multiline, line .bas

A snippet of code that can extract the contents of a text box that has been set to multiline, line Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters