Click here to Skip to main content
16,013,440 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: progress bar Pin
Christian Graus28-May-07 0:10
protectorChristian Graus28-May-07 0:10 
AnswerRe: progress bar Pin
Xandip28-May-07 0:23
Xandip28-May-07 0:23 
GeneralRe: progress bar Pin
charchabil0328-May-07 0:59
charchabil0328-May-07 0:59 
GeneralRe: progress bar Pin
Christian Graus28-May-07 1:03
protectorChristian Graus28-May-07 1:03 
GeneralRe: progress bar Pin
charchabil0328-May-07 1:11
charchabil0328-May-07 1:11 
GeneralRe: progress bar Pin
Christian Graus28-May-07 1:24
protectorChristian Graus28-May-07 1:24 
GeneralRe: progress bar Pin
charchabil0328-May-07 1:35
charchabil0328-May-07 1:35 
GeneralRe: progress bar Pin
Xandip28-May-07 2:45
Xandip28-May-07 2:45 
Christian Graus wrote:
I'm sorry, but I don't write VB


then start writing and THEN give your suggestions...

So whats the idea?? Changing the style of the progress bar? wats the matter if u get the count of the records that has to be processed..(as i said earlier)

Christian Graus wrote:
there's no code that I can show you



but i can show you..

With flxTest
.Clear
.Rows = 1
.Cols = 5

Call GetConnection 'Function
Set Gadors = New ADODB.Recordset
GNewQuery = "SELECT * FROM test"
Gadors.Open GNewQuery, Gadocn
Gadors.MoveFirst
Dim i As Long
pg.Min = 0 'setting values of progressbar
pg.Max = Gadors.RecordCount
MousePointer = vbHourglass
While Gadors.EOF = False
i = .Rows
.Rows = .Rows + 1
.TextMatrix(i, 0) = Gadors.Fields(0)
.TextMatrix(i, 1) = Gadors.Fields(1)
.TextMatrix(i, 2) = Gadors.Fields(2)
.TextMatrix(i, 3) = Gadors.Fields(3)
.TextMatrix(i, 4) = Gadors.Fields(4)
If pg.Value <> Gadors.RecordCount Then pg.Value = pg.Value + 1
Gadors.MoveNext
flxTest.Refresh
Wend
MousePointer = vbDefault
End With


try this one....

The name is Sandeep

GeneralRe: progress bar Pin
Dave Kreskowiak28-May-07 6:16
mveDave Kreskowiak28-May-07 6:16 
GeneralRe: progress bar Pin
Christian Graus28-May-07 11:00
protectorChristian Graus28-May-07 11:00 
GeneralRe: progress bar Pin
Xandip28-May-07 17:56
Xandip28-May-07 17:56 
GeneralRe: progress bar Pin
Xandip28-May-07 1:31
Xandip28-May-07 1:31 
GeneralRe: progress bar Pin
charchabil0328-May-07 1:34
charchabil0328-May-07 1:34 
GeneralRe: progress bar Pin
Christian Graus28-May-07 1:39
protectorChristian Graus28-May-07 1:39 
QuestionFade out effect in my form...?? Pin
Xandip27-May-07 23:11
Xandip27-May-07 23:11 
AnswerRe: Fade out effect in my form...?? Pin
Christian Graus27-May-07 23:40
protectorChristian Graus27-May-07 23:40 
GeneralRe: Fade out effect in my form...?? Pin
Xandip27-May-07 23:53
Xandip27-May-07 23:53 
GeneralRe: Fade out effect in my form...?? Pin
Christian Graus28-May-07 0:02
protectorChristian Graus28-May-07 0:02 
GeneralRe: Fade out effect in my form...?? Pin
Xandip28-May-07 0:12
Xandip28-May-07 0:12 
GeneralRe: Fade out effect in my form...?? Pin
Robert Rohde28-May-07 0:14
Robert Rohde28-May-07 0:14 
GeneralRe: Fade out effect in my form...?? Pin
Xandip28-May-07 0:25
Xandip28-May-07 0:25 
GeneralRe: Fade out effect in my form...?? Pin
Dave Kreskowiak28-May-07 6:13
mveDave Kreskowiak28-May-07 6:13 
GeneralRe: Fade out effect in my form...?? Pin
Christian Graus28-May-07 0:15
protectorChristian Graus28-May-07 0:15 
GeneralRe: Fade out effect in my form...?? Pin
Dileep_Vickey28-May-07 1:40
Dileep_Vickey28-May-07 1:40 
GeneralRe: Fade out effect in my form...?? Pin
Dave Kreskowiak28-May-07 6:12
mveDave Kreskowiak28-May-07 6:12 

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.