Click here to Skip to main content
15,888,802 members
Home / Discussions / Visual Basic
   

Visual Basic

 
SuggestionRe: Compiled code cannot create Excel.Application, Interpreted is fine Pin
Richard Deeming6-Oct-15 5:20
mveRichard Deeming6-Oct-15 5:20 
GeneralRe: Compiled code cannot create Excel.Application, Interpreted is fine Pin
DAH_bham6-Oct-15 3:36
DAH_bham6-Oct-15 3:36 
AnswerRe: Compiled code cannot create Excel.Application, Interpreted is fine Pin
Dave Kreskowiak7-Oct-15 4:33
mveDave Kreskowiak7-Oct-15 4:33 
QuestionStandard VB 2013 progress bar animation weirdness Pin
Member 15839634-Oct-15 8:53
professionalMember 15839634-Oct-15 8:53 
QuestionRe: Standard VB 2013 progress bar animation weirdness Pin
Brisingr Aerowing4-Oct-15 13:09
professionalBrisingr Aerowing4-Oct-15 13:09 
AnswerRe: Standard VB 2013 progress bar animation weirdness Pin
Member 15839634-Oct-15 22:16
professionalMember 15839634-Oct-15 22:16 
QuestionRe: Standard VB 2013 progress bar animation weirdness Pin
Richard MacCutchan4-Oct-15 22:02
mveRichard MacCutchan4-Oct-15 22:02 
AnswerRe: Standard VB 2013 progress bar animation weirdness Pin
Member 15839634-Oct-15 22:41
professionalMember 15839634-Oct-15 22:41 
The bar updates when an action has completed within a loop thus:
VB
; Initialise
frm_Splash.bar_Loading.Width = 390
ffrm_Splash.bar_Loading.Maximum = 39
rm_Splash.bar_Loading.Style = ProgressBarStyle.Continuous
frm_Splash.bar_Loading.Enabled = True
frm_Splash.bar_Loading.Visible = True
frm_Splash.bar_Loading.Value = 0
ActionLevel = 0
; Working loop.
For I = 0 to 39
; ... working code here.
    ActionLevel += 1                   ; Advance Progress Bar.
    frm_Splash.bar_Loading.Value = ActionLevel
    Application.DoEvents()
Next

The bar progresses normally but no highlight "flyby" animation.
GeneralRe: Standard VB 2013 progress bar animation weirdness Pin
Richard MacCutchan4-Oct-15 22:53
mveRichard MacCutchan4-Oct-15 22:53 
GeneralRe: Standard VB 2013 progress bar animation weirdness Pin
Member 15839635-Oct-15 2:23
professionalMember 15839635-Oct-15 2:23 
GeneralRe: Standard VB 2013 progress bar animation weirdness Pin
Richard MacCutchan5-Oct-15 3:50
mveRichard MacCutchan5-Oct-15 3:50 
AnswerRe: Standard VB 2013 progress bar animation weirdness Pin
Richard Andrew x645-Oct-15 12:10
professionalRichard Andrew x645-Oct-15 12:10 
GeneralRe: Standard VB 2013 progress bar animation weirdness Pin
Member 15839635-Oct-15 21:33
professionalMember 15839635-Oct-15 21:33 
Questionopen file location thru windows explorer Pin
Mendel Margallo Adona3-Oct-15 20:34
Mendel Margallo Adona3-Oct-15 20:34 
AnswerRe: open file location thru windows explorer Pin
Richard Andrew x644-Oct-15 13:27
professionalRichard Andrew x644-Oct-15 13:27 
GeneralRe: open file location thru windows explorer Pin
Mendel Margallo Adona5-Oct-15 18:10
Mendel Margallo Adona5-Oct-15 18:10 
GeneralRe: open file location thru windows explorer Pin
Mendel Margallo Adona6-Oct-15 0:34
Mendel Margallo Adona6-Oct-15 0:34 
AnswerRe: open file location thru windows explorer Pin
Mendel Margallo Adona6-Oct-15 4:02
Mendel Margallo Adona6-Oct-15 4:02 
QuestionVb6 resource file and ms access database Pin
Otekpo Emmanuel3-Oct-15 2:29
Otekpo Emmanuel3-Oct-15 2:29 
AnswerRe: Vb6 resource file and ms access database Pin
Dave Kreskowiak3-Oct-15 4:58
mveDave Kreskowiak3-Oct-15 4:58 
GeneralRe: Vb6 resource file and ms access database Pin
Otekpo Emmanuel5-Oct-15 6:35
Otekpo Emmanuel5-Oct-15 6:35 
QuestionExcel Macros - copy & paste from one workbook to another Pin
MikeK3229-Sep-15 6:17
MikeK3229-Sep-15 6:17 
AnswerRe: Excel Macros - copy & paste from one workbook to another Pin
CHill6030-Sep-15 0:21
mveCHill6030-Sep-15 0:21 
GeneralRe: Excel Macros - copy & paste from one workbook to another Pin
MikeK3230-Sep-15 9:14
MikeK3230-Sep-15 9:14 
GeneralRe: Excel Macros - copy & paste from one workbook to another Pin
CHill6030-Sep-15 10:27
mveCHill6030-Sep-15 10:27 

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.