Click here to Skip to main content
15,895,656 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: I would like to create a textbox where I can input hour and minute. Pin
Dave Kreskowiak3-Mar-12 7:26
mveDave Kreskowiak3-Mar-12 7:26 
AnswerRe: I would like to create a textbox where I can input hour and minute. Pin
Shameel3-Mar-12 7:46
professionalShameel3-Mar-12 7:46 
AnswerRe: I would like to create a textbox where I can input hour and minute. Pin
AlainStP3-Mar-12 8:24
AlainStP3-Mar-12 8:24 
QuestionDB connection string Pin
ivo752-Mar-12 18:36
ivo752-Mar-12 18:36 
AnswerRe: DB connection string Pin
Wayne Gaylard2-Mar-12 20:38
professionalWayne Gaylard2-Mar-12 20:38 
GeneralRe: DB connection string Pin
ivo753-Mar-12 8:17
ivo753-Mar-12 8:17 
QuestionCalling all vber’s PinPopular
User-57756572-Mar-12 10:55
User-57756572-Mar-12 10:55 
AnswerI agree Pin
David Mujica2-Mar-12 11:06
David Mujica2-Mar-12 11:06 
AnswerRe: Calling all vber’s Pin
Mycroft Holmes2-Mar-12 12:52
professionalMycroft Holmes2-Mar-12 12:52 
AnswerRe: Calling all vber’s Pin
Dave Kreskowiak2-Mar-12 14:08
mveDave Kreskowiak2-Mar-12 14:08 
AnswerRe: Calling all vber’s Pin
Wayne Gaylard2-Mar-12 20:31
professionalWayne Gaylard2-Mar-12 20:31 
AnswerRe: Calling all vber’s Pin
Simon_Whale3-Mar-12 2:24
Simon_Whale3-Mar-12 2:24 
AnswerRe: Calling all vber’s Pin
AlainStP3-Mar-12 7:08
AlainStP3-Mar-12 7:08 
QuestionCreate Bulleted Lists in MS Word using VB.Net Pin
Member 86935241-Mar-12 22:17
Member 86935241-Mar-12 22:17 
GeneralRe: Create Bulleted Lists in MS Word using VB.Net Pin
Richard MacCutchan1-Mar-12 23:17
mveRichard MacCutchan1-Mar-12 23:17 
QuestionAdjust Image Help :-) me do the impossible! Pin
rderkis28-Feb-12 21:45
rderkis28-Feb-12 21:45 
AnswerRe: Adjust Image Help :-) me do the impossible! Pin
Dave Kreskowiak2-Mar-12 3:53
mveDave Kreskowiak2-Mar-12 3:53 
GeneralRe: Adjust Image Help :-) me do the impossible! Pin
rderkis2-Mar-12 18:54
rderkis2-Mar-12 18:54 
QuestionHow to give serail number in VB Data Environmental datareport(vb datareport) Pin
D.Manivelan28-Feb-12 2:25
D.Manivelan28-Feb-12 2:25 
AnswerRe: How to give serail number in Data Report Pin
Agecanonix28-Feb-12 6:28
Agecanonix28-Feb-12 6:28 
GeneralRe: How to give serail number in VB Data Environmental datareport(vb datareport) Pin
D.Manivelan28-Feb-12 22:20
D.Manivelan28-Feb-12 22:20 
QuestionChanging the label text property with code. Pin
AlainStP26-Feb-12 3:17
AlainStP26-Feb-12 3:17 
AnswerRe: Changing the label text property with code. Pin
Dave Kreskowiak26-Feb-12 4:16
mveDave Kreskowiak26-Feb-12 4:16 
It works. The problem is that your code is running on the UI thread and blocks it so the WM_PAINT messages that are tacking up in your apps message queue don't get processed. That means that your label control is not receiving the Paint messages until after your code is done and your app is idle. That's when the label gets repainted.

Also, what's with the Label() array?? Is this VB6 you're using?? If so, stop now and get VB.NET Express. It's free and you won't be teaching yourself some very bad habits forced on your by VB6.

GeneralRe: Changing the label text property with code. Pin
AlainStP26-Feb-12 9:22
AlainStP26-Feb-12 9:22 
GeneralRe: Changing the label text property with code. Pin
Dave Kreskowiak26-Feb-12 11:24
mveDave Kreskowiak26-Feb-12 11:24 

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.