Click here to Skip to main content
15,909,651 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: how to get File's contents the txt and Doc files Using VB.Net Pin
somagunasekaran9-Jan-07 18:24
somagunasekaran9-Jan-07 18:24 
GeneralRe: how to get File's contents the txt and Doc files Using VB.Net Pin
Dave Kreskowiak10-Jan-07 3:25
mveDave Kreskowiak10-Jan-07 3:25 
QuestionPassing Null Parameter to Crystal reports Pin
charchabil039-Jan-07 0:32
charchabil039-Jan-07 0:32 
Question how to create setup for console applns which have report? Pin
rama charan9-Jan-07 0:31
rama charan9-Jan-07 0:31 
AnswerRe: how to create setup for console applns which have report? Pin
Dave Kreskowiak9-Jan-07 4:19
mveDave Kreskowiak9-Jan-07 4:19 
QuestionRich Text Box Pin
saymajum8-Jan-07 20:11
saymajum8-Jan-07 20:11 
AnswerRe: Rich Text Box Pin
Christian Graus8-Jan-07 20:29
protectorChristian Graus8-Jan-07 20:29 
GeneralRe: Rich Text Box Pin
saymajum8-Jan-07 21:57
saymajum8-Jan-07 21:57 
Private Declare Function LoadLibrary Lib "kernel32" Alias "LoadLibraryA" (ByVal lpLibFileName As String) As Long

Private Declare Function CreateWindowEx Lib "user32" Alias "CreateWindowExA" (ByVal dwExStyle As Long, ByVal lpClassName As String, ByVal lpWindowName As String, ByVal dwStyle As Long, ByVal x As Long, ByVal y As Long, ByVal nWidth As Long, ByVal nHeight As Long, ByVal hwndParent As Long, ByVal hMenu As Long, ByVal hInstance As Long, lpParam As Any) As Long
Function RchEdtCreate(ByVal hWindow As Long, ByVal ExtendedStyle As Long, ByVal Style As Long, ByVal Text As String, ByVal xPos As Long, ByVal yPos As Long, ByVal width As Long, ByVal height As Long, ByVal hInstance As Long) As Long
LoadLibrary "riched20.dll"
Const RICHEDIT_CLASS$ = "RichEdit20A"
RchEdtCreate = CreateWindowEx(ExtendedStyle, RICHEDIT_CLASS, Text, Style, xPos, yPos, width, height, hWindow, 0, hInstance, ByVal 0&)
'RichTextWndClass, Richedit_Class, RichEdit20A

End Function

This is my Code.
JokeRe: Rich Text Box Pin
CPallini8-Jan-07 22:06
mveCPallini8-Jan-07 22:06 
GeneralRe: Rich Text Box Pin
saymajum8-Jan-07 22:14
saymajum8-Jan-07 22:14 
GeneralRe: Rich Text Box Pin
CPallini8-Jan-07 22:19
mveCPallini8-Jan-07 22:19 
GeneralRe: Rich Text Box Pin
saymajum8-Jan-07 22:41
saymajum8-Jan-07 22:41 
GeneralRe: Rich Text Box Pin
CPallini8-Jan-07 22:44
mveCPallini8-Jan-07 22:44 
GeneralRe: Rich Text Box Pin
Christian Graus8-Jan-07 23:28
protectorChristian Graus8-Jan-07 23:28 
QuestionAssigning values to arrays. Pin
someone_blank8-Jan-07 19:50
someone_blank8-Jan-07 19:50 
AnswerRe: Assigning values to arrays. Pin
Christian Graus8-Jan-07 20:58
protectorChristian Graus8-Jan-07 20:58 
GeneralRe: Assigning values to arrays. Pin
someone_blank9-Jan-07 13:29
someone_blank9-Jan-07 13:29 
AnswerRe: Assigning values to arrays. Pin
CPallini8-Jan-07 22:02
mveCPallini8-Jan-07 22:02 
Questionunable to load .dsr(designer) files in vb6-Sp6. Pin
MissionSuccess8-Jan-07 19:01
MissionSuccess8-Jan-07 19:01 
AnswerRe: unable to load .dsr(designer) files in vb6-Sp6. Pin
Dave Kreskowiak9-Jan-07 4:16
mveDave Kreskowiak9-Jan-07 4:16 
QuestionMySQL/VB.NET Interaction Pin
jayemsee2838-Jan-07 18:50
jayemsee2838-Jan-07 18:50 
QuestionRe: MySQL/VB.NET Interaction Pin
jayemsee2838-Jan-07 19:04
jayemsee2838-Jan-07 19:04 
AnswerRe: MySQL/VB.NET Interaction Pin
Tamimi - Code8-Jan-07 19:21
Tamimi - Code8-Jan-07 19:21 
GeneralRe: MySQL/VB.NET Interaction Pin
jayemsee2838-Jan-07 19:51
jayemsee2838-Jan-07 19:51 
Questionhelp on windows process Pin
gladsmhe8-Jan-07 16:13
gladsmhe8-Jan-07 16:13 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.