Search Result

Collapse
2 results in 0.0034 seconds.
Keywords
Members
Tags
download file
  •  

  • Rabbit
    started a topic How to Download A File From Internet using VBA

    How to Download A File From Internet using VBA

    I often use this to download a CSV to update data in a database.
    Code:
    Option Compare Database
    Option Explicit
    Private Declare Function URLDownloadToFile Lib "urlmon" Alias "URLDownloadToFileA" (ByVal pCaller As Long, ByVal szURL As String, ByVal szFileName As String, ByVal dwReserved As Long, ByVal lpfnCB As Long) As Long
    Private Declare Function InternetOpen Lib "wininet" Alias "InternetOpenA"
    ...
    See more | Go to post

  • Ivan Garcia
    started a topic how can I stop my applet freezing?
    in Java

    how can I stop my applet freezing?

    hi I'm completely new in Java's world, I made an applet that download a video file from the server, but here is the thing, when the recording process gets started my applet just freeze (doesn't accept any kind of event, like click button, enable or disable components) and when it finish then the applet come back to a normal state.


    here is the code :

    Code:
    public void startRecordingProcess(String file){
    ...
    See more | Go to post
Working...