Click here to Skip to main content
16,005,552 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Linking MS Access to vb.net Pin
Dave Kreskowiak18-Dec-06 13:30
mveDave Kreskowiak18-Dec-06 13:30 
AnswerRe: Linking MS Access to vb.net Pin
Eric Georgiades18-Dec-06 22:36
Eric Georgiades18-Dec-06 22:36 
GeneralRe: Linking MS Access to vb.net Pin
jady8419-Dec-06 1:39
jady8419-Dec-06 1:39 
AnswerRe: Linking MS Access to vb.net Pin
Eric Georgiades19-Dec-06 1:46
Eric Georgiades19-Dec-06 1:46 
GeneralRe: Linking MS Access to vb.net Pin
jady8419-Dec-06 1:58
jady8419-Dec-06 1:58 
GeneralRe: Linking MS Access to vb.net Pin
Eric Georgiades19-Dec-06 2:06
Eric Georgiades19-Dec-06 2:06 
QuestionSimple timer help needed Pin
BMackKC18-Dec-06 9:20
BMackKC18-Dec-06 9:20 
AnswerRe: Simple timer help needed Pin
Dave Kreskowiak18-Dec-06 9:34
mveDave Kreskowiak18-Dec-06 9:34 
That's not what a Timer is for. A Timer fires off an event every interval milliseconds so you can do something repeatedly.

If you want the controls to change before your data-intensive code starts, just put in a Application.DoEvents() so the controls have a chance to get and process their paint events.
Private Sub btnShipConfirms_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnShipConfirms.Click
    GroupBox1.Text = "Shipping Confirmation Data"
    btnShipConfirms.Enabled = False
    btnOrderConfirms.Enabled = True
    btnSendAll.Visible = False
    btnSendAllShip.Visible = True
 
    Application.DoEvents()
 
    'run data access routines
    CreateShipConfirmTempTable()
    RefreshShipConfirm()
    .
    .
    .



Dave Kreskowiak
Microsoft MVP - Visual Basic


Questionusb port Pin
Agbaria Ahmad18-Dec-06 6:50
Agbaria Ahmad18-Dec-06 6:50 
AnswerRe: usb port Pin
Dave Kreskowiak18-Dec-06 7:44
mveDave Kreskowiak18-Dec-06 7:44 
QuestionHow to validate a textbox without using the ASP: Validate Controls Pin
cmhuff18-Dec-06 5:08
cmhuff18-Dec-06 5:08 
AnswerRe: How to validate a textbox without using the ASP: Validate Controls Pin
Dave Kreskowiak18-Dec-06 5:45
mveDave Kreskowiak18-Dec-06 5:45 
AnswerRe: How to validate a textbox without using the ASP: Validate Controls Pin
Steven J Jowett18-Dec-06 22:32
Steven J Jowett18-Dec-06 22:32 
Questionvalidate .csv file columns values Pin
montu337718-Dec-06 4:30
montu337718-Dec-06 4:30 
AnswerRe: validate .csv file columns values Pin
Colin Angus Mackay18-Dec-06 4:49
Colin Angus Mackay18-Dec-06 4:49 
GeneralRe: validate .csv file columns values Pin
montu337718-Dec-06 6:19
montu337718-Dec-06 6:19 
GeneralRe: validate .csv file columns values Pin
Dave Kreskowiak18-Dec-06 9:29
mveDave Kreskowiak18-Dec-06 9:29 
GeneralRe: validate .csv file columns values Pin
Jason McBurney18-Dec-06 11:30
Jason McBurney18-Dec-06 11:30 
QuestionAppend text file Pin
jds120718-Dec-06 4:10
jds120718-Dec-06 4:10 
AnswerRe: Append text file Pin
Martin.Smith18-Dec-06 4:36
Martin.Smith18-Dec-06 4:36 
GeneralRe: Append text file Pin
jds120718-Dec-06 5:12
jds120718-Dec-06 5:12 
AnswerRe: Append text file Pin
Martin.Smith18-Dec-06 23:03
Martin.Smith18-Dec-06 23:03 
GeneralRe: Append text file Pin
jds120719-Dec-06 8:08
jds120719-Dec-06 8:08 
GeneralRe: Append text file Pin
Martin.Smith19-Dec-06 20:24
Martin.Smith19-Dec-06 20:24 
QuestionCommand prompt (cmd.exe) as a hidden process Pin
Martin.Smith18-Dec-06 2:58
Martin.Smith18-Dec-06 2:58 

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.