VS 2010 - Create A Download ETA For Their Application?
Sep 5, 2011Some coding in visual basic 2010. How does one create a download ETA for their application? Here's a picture to show you what I'm trying to achieve.
View 4 RepliesSome coding in visual basic 2010. How does one create a download ETA for their application? Here's a picture to show you what I'm trying to achieve.
View 4 RepliesEvery time I compile my application, during install I get the error:Cannot download application, the application is missing required files
View 3 RepliesI've use VB net to create a application that can download the real-time data from a device for every second. Now I want to upload the data to a website in real time. (So some who is far away, can also check the data through the website)
View 3 RepliesI am wanting to create an application that will monitor the upload/download traffic of a user. Can someone point me too some code that I can have a look at?I have found SharpPcap - A Packet Capture Framework for .NET, but cannot find any vb.net code for it.
I have found this code:
Dim Properties As IPGlobalProperties
Dim StatV4 As IPGlobalStatistics
Properties = IPGlobalProperties.GetIPGlobalProperties
StatV4 = Properties.GetIPv4GlobalStatistics
Dim Packets As Long = StatV4.ReceivedPackets
What actually is a 'packet'? Can I calculate the download/upload from this code by maybe multiplying the recievedPackets by packet size... or something like that?
Is it possible to download an image from web directly to our application?
View 9 RepliesI was thinking to make an app to save images [or download images] to local hard disk. But to keep it easy, I want this app to create a small picturebox on form to show the thumbnail of downloaded image. Lets say a 5 pictureboxes has to be added with the thumbnails to show the recent downloads. A user can save the location where he wants to save the files on hard disk. A listbox or a dropdown menu will help in categorizing the images, like image1 in friends section, image2 in family section, image3 in others, etc... When the program restarts all the latest 5 thumbnails has to be loaded in pictureboxes and the directory that was chosen. Finally, a button that shows the downloaded images into original image file size one by one or a slide show. Is it possible to make such program?
View 2 RepliesI hope thisis the right forum for my question. if not, sorry. I am using VB 2010 to create a WPF Web Browser application. I need to open a new page after clicking a button. How do i do this? In vb it would be like form1.show for example. How would it be in this case?
View 1 RepliesSo i'm trying to create a save configuration file and I found the Application Configuration file which seems like it'll do what I want it to do what
View 3 Repliesi am new to visual basic and have recently made a quiz with 16 forms. I have built the project but when I attempt to email it (with hotmail) the person at the other end recieves it but then as he recieves it the following message is displayed "Cannot download the application. The application is missing required files. Contact application vendor for assistance."
View 1 RepliesI'm just wondering if it is possible to create an vb.net application to compress files, without using a 3rd party app. If yes, can you please point me in the right direction, give me some tips, tutorials or sample code?
View 5 Replies[Code]...
I need some trick to make some good and safe "Login" to application system with username and password.
I have to create an application that lets a user enter as much grades he wants. The grades are between 0 and 100 and they can't be negative. Whenever the user type -1, the application is done and it shows the average of the grades, the lowest and the highest grades.I absolutly have no idea where to start but i must be using loop/do/while.
View 4 RepliesBasically i am creating a console application that will create and store client information as a .txt file it is going okay but i have come across a slight hick up i want to use something on the lines of this .....
dim lastname as string
Do Until Integer.TryParse(Console.ReadLine(), LastName) = False
Console.WriteLine("Invalid input, Please try again")
Console.Write("LastName:-")
[code].....
this works fine to trap out numbers from letters but the problem i am getting is when the program calls uppon LastName it is recording 0 and wanted to know if there is a way of getting past this ..... so basically i need a way to allow letter but not numbers and symbols and then dispay a pernolised error message but at the same time use Stream writer to save was the answer is in a .txt file.
I'd like to create a asp.net download page. I receive the file from a dataservice as a byte array. The file size can be up to 10gb. So I need to transfer the file "in parts".
Here is my code:
Response.ContentType = "application/octet-stream"
Response.AddHeader("Content-Disposition", _
"attachment; filename=" & HttpUtility.UrlEncode(file.Name))
[code]....
The code snippet works but I have a big problem. The download already starts before the user confirmed the browser download dialog. If the user waits 5min he has already downloaded the 10gb file without accepting it.
How to create a download manger for my web browser?
View 4 RepliesI use these codes to download/upload to my FTP host , they work perfectly but since i have to handles few download/upload , sometimes the application freeze during download
'Upload :
Try
' set up request...
Dim clsRequest As System.Net.FtpWebRequest = _
[Code].....
I has a download button in my web application. When I click the button, it will search for the particular path in my local pc and get the file for the user to download. May I know is it possible to do so using vb.net for web application?
View 5 Repliesi am using System.Net.WebRequest.Create(url) to download html code, but it missed some data. if i use IE to view page and click "view source", all data will be showed.
my code:
Dim req As System.Net.WebRequest
Dim resp As System.Net.WebResponse
req = System.Net.WebRequest.Create(url)
resp = req.GetResponse()
[code]....
My application get hang after i download log from hardware unit.Basically hardware protocol is custom design(no modbus).there are huge number of records(minimum 1000) which i have to show in grid at the time of download process takes place i add new rows into grid to show record function works on but after function execution over application gets hang. No process is pending after that function.
Private Sub manikPro_DownloadDataReceive(ByVal packet As String) Handles manikPro.DownloadDataReceive
Dim str As String = ""
[code].....
I have downloaded an application that uses .net remoting.
The problem is that I don't know how to configure it to communicate over the internet.
From the blog [url] says to set the tcp 192.168.1.100 . As far as I know this is the intranet IP. My external IP is different. Do I need a server or a Static IP from my provider?
how can I download file form another computer and save it to my computer..
View 1 RepliesI got two issues getting my application to download a file. One small and one rather big.The downloader seems to have an issue using the users full download capability while the downloaded size is under 1 MB. As soon as it hits that, it seems to speed up with 10-100 times the previous speed.(Snippet at the end of the post)It seems to have to do with the filesize, which is about 5GB. As soon as my application hits about 1GB it completely locks up. (Without an error message, which I do have built in with a try...catch statement)I actually have to force quit the app to make it stop.It works perfectly fine with a 20MB file.I have the idea it's because of the int64's I use. But I need to use those (afaik) due to the big file size.[code]
View 2 RepliesI currently have a program that allows users to download files into a folder of there choice. I currently have 10 different forms all with a text box to show folder location and a browse button for user to find it, but what I want to do is create a form that will appear at the start where the end user can enter the folder location so that they don't have to enter the folder path for every download they want to do. How would I go about doing this I have a textbox, browse button and an OK button but have no idea what to do next.
View 1 RepliesI'm trying to code a program that can download multiple files at once (on different threads of course).I have created a custom listview component that will allow me to add a progressbar directly to it.What my real question is, how can i take a url given by the user from an input box and create a new webclient to handle the download asynchronously and also report the progress without disturbing all of the other downloads in progress?
View 10 RepliesI recently had to format my PC, So I moved my project files and build files to my External Hard Drive, and continued to work on my project.. I started to receive emails saying that the application is saying "Cannot download the application. The application is missing required files. Contact application vendor for assistance." After clicked view details, I found this:
+ Downloading file:///C:/Users/myuser/Downloads/Browser.application
did not succeed.
The .application file is not in Downloads, its supposed to download it from my website. And if I were to open my project on a computer with it already installed, it won't check for updates - it opens really quick without the "Viewing Application Requirements" window.
I want to prompt users to save file instead of opening file in application. For example if user click a mp3 file link....mp3 file must not be open in win media player...instead user promoted to download that file.
View 2 Repliesim trying to download a file to the exact area of the application where ever it might be on hte computer the code im using now only downloads it to the computer and this cant work becuase all computers are diffrent
[code...]
could any one show me how that code could work but instead of to the computer but to where the application is so that who ever uses it can move there application folder where every they want and it will still work
how can made download manager application in vb.net 2008?
View 1 RepliesIs there any code to download entire website to my start path of application?
View 14 RepliesI am creating a windows application using visual studio. I want somehow to insert an excel file into the application so the user will be able to download it from the program and save it to his computer. This means that the file will be a part of the program. There will be a button that will prompt the user to save the particular file somewhere so he can then view it.
What should I do in order to "embody" the excel file to the application? And what code should I write to link the file with the button?