Quantcast
Channel: VB 2010 Progress Bar.
Browsing latest articles
Browse All 41 View Live

VB 2010 Progress Bar.

I did not understand anything you said there.  So how and what do I do so I can do this?

View Article



VB 2010 Progress Bar.

Then you need to keep track of each process as it is created, and since they are being created recursively, a single form-level variable won't do.  You will need to either terminate the process that is...

View Article

VB 2010 Progress Bar.

I know it will end after it is done, but what if the user closes the window before it has finished encoding?  It will still continue to run.  That is why I want to know how to end the task when the...

View Article

VB 2010 Progress Bar.

I can't see how ending those processes has anything to do with the progress bar problem.My earlier point was that you shouldn't need to worry about ending those processes on form close, if your program...

View Article

VB 2010 Progress Bar.

Thank you, and sorry for my stupidity.  I think I have it all figured out for that part.  But how do I end the process on the form3 or main form close?

View Article


VB 2010 Progress Bar.

Don't use the substring for characters beyond 1 - it will fail for exactly the reason you describe.  You can't just take a piece of code provided with one set of values and assume that code will...

View Article

VB 2010 Progress Bar.

I sort of know what you are saying.  I already have the progress bar up and running now, and in the middle of it, it displays the percent that it is at.  I was wrong when I said that the format for the...

View Article

VB 2010 Progress Bar.

Your vast number of running processes is due to that fact that you are calling your routine recursively.   Therefore, a single variable, even if you are updating it correctly, will never give you...

View Article


VB 2010 Progress Bar.

Thanks.  That helped me out.  I used outLine.Date.SubString(1).Split(" ")(0))Now I have another problem.  When I close the application, the process still runs.  I tried making a OnFormClosing, with...

View Article


VB 2010 Progress Bar.

You have changed the code you were provided with so it no longer works.  The preferable option is to insert your changes in a modular fashion, so that it is possible to compare the original and the...

View Article

VB 2010 Progress Bar.

The code isDim s = Sub()Using p AsNew ProcessAddHandler p.ErrorDataReceived,Sub(sendingProcess AsObject, outLine As DataReceivedEventArgs)If outLine.Data <> ""Then BeginInvoke(Sub() Text =...

View Article

VB 2010 Progress Bar.

So are you saying that you need code that can convert the string[00.0%] 0/100 frames, 2.00 fps, 700.07 Kb/s, eta 4:30:00into the string00.0 0/100 frames, 2.00 fps, 700.07 Kb/s, eta...

View Article

VB 2010 Progress Bar.

Okay, I have figured that out.  I sort of know how to make it so that some of the numbers that are displayed to be converted into progress bar value.  I just need to know how to split in more the one...

View Article


VB 2010 Progress Bar.

What is the 'progress' that you are trying to report?  That code starts an application called x264.EXE and waits for it to finish.  There is nothing in that code that suggests that any 'progress' is...

View Article

VB 2010 Progress Bar.

Okay, I fugured it out.  I got this code.Dim s = Sub()Using p AsNew ProcessAddHandler p.ErrorDataReceived,Sub(sendingProcess AsObject, outLine As DataReceivedEventArgs)If outLine.Data <> ""Then...

View Article


VB 2010 Progress Bar.

Alright, back onto what this forum was suppose to be about.  I have been getting a lot of help from doom forums, and I got a code to do something with the stdout, but it is in c# .  Here is what he...

View Article

VB 2010 Progress Bar.

I give up on the progress bar.  I have been searching for weeks, and I can not find anything that I could understand.  Now I just want to know, how to navigate through an xml.  I forgot that I need to...

View Article


VB 2010 Progress Bar.

How is the status being reported?  What events are occurring to indicate your progress in parsing?   You can't craete a progress bar unless something occurs that indicates that the progress bar needs...

View Article

VB 2010 Progress Bar.

Okay, if nobody will help me with that.  I have another question.  I have this xml file and I want to get the information that is in it.The Bold text is the information that I want to get.<?xml...

View Article

VB 2010 Progress Bar.

The only thing that I have scene different in the code from VB6 to VB10, is VB6, for msgbox, it would be like this I beleive, MsgBox "Hello" , but when you try to do it in VB10, it automatically puts...

View Article

VB 2010 Progress Bar.

I have a "thread" that is basically the same thing you are trying to do though it's in 2005 but should work in 2010 that I worked through with Rudy.  If you want to cheat and read that either look it...

View Article


VB 2010 Progress Bar.

But how do I do that?  This is my first time programming.

View Article


VB 2010 Progress Bar.

In order to report progress you need something to report status.Mark the best replies as answers. "Fooling computers since 1971."

View Article

VB 2010 Progress Bar.

Okay.  I figured it out now, thanks guys.  But now back to the Progress Bar.  I think I might have mentions this, but I am making my own GUI for x264.  I want it to have a progress bar for when the...

View Article

VB 2010 Progress Bar.

I could not find out or understand the way of "Overriding" the OpenTextFile method.  Also, ANSI was not listed in the encoding list.The site reference that I provided is the override for the method...

View Article


VB 2010 Progress Bar.

I could not find out or understand the way of "Overriding" the OpenTextFile method.  Also, ANSI was not listed in the encoding list.The difference between the batch file that Visual Basic made and one...

View Article

VB 2010 Progress Bar.

What happened when you nominated a different encoding in the override of the OpenTextFile method?   What encodings did you try?    Have you compared the file that works against the file that doesn't,...

View Article

VB 2010 Progress Bar.

Thanks.  The batch file encoding that Visual Basic used was UTF-8.  So I made a batch file with notepad and made it UTF-8, and I got the same result as what happened with the batch file that was...

View Article

VB 2010 Progress Bar.

That is way to complex for me.  There was 102 errors.  I am using Visual Studio 2010, Visual Basic 2010.  I do not get any of that.  I really don't know if there is a difference between VB.Net and...

View Article



VB 2010 Progress Bar.

Does this thread help? Note the loop that is called in the worker_DoWork method, which is an event handler.how to add a progress bar in visual studio 2005/2008 (vb.net) when ...  Mark the best replies...

View Article

VB 2010 Progress Bar.

What encodings did you try for that batch file?  Have you looked at your two example filess (that did work, and didn't work) using a binary (hex) editor, to determine the exact difference between them...

View Article

VB 2010 Progress Bar.

I know it is the encoding because I opened up the batch file that I made with Visual Basic, went to save as, then changed the encoding to ANSI.  Then I did the same thing to another batch file that I...

View Article

VB 2010 Progress Bar.

That is way to complex for me.  There was 102 errors. I am using Visual Studio 2010, Visual Basic 2010.  I do not get any of that. I really don't know if there is a difference between VB.Net and...

View Article


VB 2010 Progress Bar.

Your way helped me out a lot.  But the only problem is that it is UTF-8.  How do I make it to be ANSI?  If it is UTF-8, and I have @Echo Off at the top, it still shows the current directories and...

View Article

VB 2010 Progress Bar.

Your way helped me out a lot.  But the only problem is that it is UTF-8.  How do I make it to be ANSI?  If it is UTF-8, and I have @Echo Off at the top, it still shows the current directories and...

View Article

VB 2010 Progress Bar.

To write text to a file, you can use one of the procedures described here:http://msdn.microsoft.com/en-us/library/microsoft.visualbasic.fileio.filesystem.aspxTo include quotes in a string literal, use...

View Article


VB 2010 Progress Bar.

That is way to complex for me.  There was 102 errors.  I am using Visual Studio 2010, Visual Basic 2010.  I do not get any of that.  I really don't know if there is a difference between VB.Net and...

View Article


VB 2010 Progress Bar.

Does this thread help? Note the loop that is called in the worker_DoWork method, which is an event handler.how to add a progress bar in visual studio 2005/2008 (vb.net) when ... Mark the best replies...

View Article

VB 2010 Progress Bar.

But when I copy the files, the app freezes. I am copying big files at when ever I copy files. I wouldn't have to if I knew how to output text to a text file and save it as .bat. The way I am doing that...

View Article

VB 2010 Progress Bar.

There's no need to make a progress bar for a file copy.  You can do a file copy using a method that provides the progress bar for you.  See:http://msdn.microsoft.com/en-us/library/36xbexyf(VS.90).aspx...

View Article

VB 2010 Progress Bar.

Hey.  I have been looking all over the internet to find out how to make a progress bar for copying a file.  I found somethings, but I did not understand them.  This is the first application that I am...

View Article

Browsing latest articles
Browse All 41 View Live




Latest Images