Click here to Skip to main content
15,896,557 members
Home / Discussions / Visual Basic
   

Visual Basic

 
Generalcombo box item selected its reflect in another Pin
anghan2219-Jan-12 18:45
anghan2219-Jan-12 18:45 
SuggestionLook at unanswered AND answered questions Pin
Cameron Atkinson18-Jan-12 23:04
Cameron Atkinson18-Jan-12 23:04 
GeneralRe: Look at unanswered AND answered questions Pin
Richard MacCutchan18-Jan-12 23:52
mveRichard MacCutchan18-Jan-12 23:52 
GeneralRe: Look at unanswered AND answered questions Pin
Simon_Whale18-Jan-12 23:55
Simon_Whale18-Jan-12 23:55 
AnswerRe: Look at unanswered AND answered questions Pin
Eddy Vluggen19-Jan-12 6:55
professionalEddy Vluggen19-Jan-12 6:55 
GeneralRe: Look at unanswered AND answered questions Pin
Dave Kreskowiak19-Jan-12 7:29
mveDave Kreskowiak19-Jan-12 7:29 
GeneralRe: Look at unanswered AND answered questions Pin
Cameron Atkinson26-Jan-12 2:45
Cameron Atkinson26-Jan-12 2:45 
QuestionRich Text Box Pin
Fred Andres16-Jan-12 10:44
Fred Andres16-Jan-12 10:44 
I am posting to a rich text box from a visual basic program. I want the text to be immediately visible, but sometimes it is delayed. I am using the following two sets of code with similar results (not always instant). How can I make it instant?
VB
Public Sub postMessageBox(ByVal aMessage As String, ByRef aTextBox As RichTextBox)
    aTextBox.Text &= aMessage
    aTextBox.Text &= Chr(13)
    aTextBox.SelectionStart = Len(aTextBox.Text)
    aTextBox.SelectionLength = 0
    aTextBox.SelectionStart = aTextBox.Text.Length
    aTextBox.ScrollToCaret()
End Sub
Public Sub postMessageBoxSimple(ByVal amessage As String, ByRef atextbox As RichTextBox)
    atextbox.SelectedText = amessage & Chr(13)
End Sub

AnswerRe: Rich Text Box Pin
Eddy Vluggen16-Jan-12 11:57
professionalEddy Vluggen16-Jan-12 11:57 
GeneralRe: Rich Text Box Pin
Fred Andres17-Jan-12 7:35
Fred Andres17-Jan-12 7:35 
GeneralRe: Rich Text Box Pin
Eddy Vluggen17-Jan-12 8:26
professionalEddy Vluggen17-Jan-12 8:26 
AnswerRe: Rich Text Box Pin
Dave Kreskowiak17-Jan-12 2:11
mveDave Kreskowiak17-Jan-12 2:11 
GeneralRe: Rich Text Box Pin
Fred Andres17-Jan-12 7:35
Fred Andres17-Jan-12 7:35 
AnswerRe: Rich Text Box Pin
Shameel19-Jan-12 19:03
professionalShameel19-Jan-12 19:03 
QuestionVB Scripting for OUTLOOK 2003 Pin
Yogesh M kumar14-Jan-12 19:09
Yogesh M kumar14-Jan-12 19:09 
QuestionContains Method returns false if string and parameter are equal? Pin
Dominick Marciano14-Jan-12 16:15
professionalDominick Marciano14-Jan-12 16:15 
AnswerRe: Contains Method returns false if string and parameter are equal? Pin
Dave Kreskowiak15-Jan-12 3:46
mveDave Kreskowiak15-Jan-12 3:46 
GeneralRe: Contains Method returns false if string and parameter are equal? Pin
Shameel19-Jan-12 19:07
professionalShameel19-Jan-12 19:07 
QuestionDatabound combobox filtering issue Pin
Stefano Leoni13-Jan-12 12:29
Stefano Leoni13-Jan-12 12:29 
AnswerRe: Databound combobox filtering issue Pin
Stefano Leoni17-Jan-12 3:17
Stefano Leoni17-Jan-12 3:17 
Questiondrop down list selected value Pin
Seema Bawa13-Jan-12 11:11
Seema Bawa13-Jan-12 11:11 
QuestionRe: drop down list selected value Pin
Richard MacCutchan13-Jan-12 22:31
mveRichard MacCutchan13-Jan-12 22:31 
AnswerRe: drop down list selected value Pin
sri08018818-Jan-12 23:44
sri08018818-Jan-12 23:44 
QuestionOpinions needed on "shared" keyword Pin
nlarson1112-Jan-12 8:05
nlarson1112-Jan-12 8:05 
AnswerRe: Opinions needed on "shared" keyword Pin
Luc Pattyn12-Jan-12 8:16
sitebuilderLuc Pattyn12-Jan-12 8:16 

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.