Click here to Skip to main content
15,892,059 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralVertical Scrolling Only Panel Pin
Jamie Nordmeyer12-Nov-02 10:22
Jamie Nordmeyer12-Nov-02 10:22 
Generalevent driven/object oriented Pin
helping hand12-Nov-02 1:59
helping hand12-Nov-02 1:59 
GeneralRe: event driven/object oriented Pin
Vasek12-Nov-02 3:48
Vasek12-Nov-02 3:48 
GeneralRe: event driven/object oriented Pin
Nick Seng12-Nov-02 19:22
Nick Seng12-Nov-02 19:22 
GeneralDisabled image Pin
AlexV12-Nov-02 1:28
AlexV12-Nov-02 1:28 
GeneralRe: Disabled image Pin
mikasa30-Nov-02 9:23
mikasa30-Nov-02 9:23 
GeneralApplication with an Online Upgrade Feature Pin
Antosha11-Nov-02 18:26
Antosha11-Nov-02 18:26 
GeneralRe: Application with an Online Upgrade Feature Pin
Andrew Stampor18-Nov-02 11:46
Andrew Stampor18-Nov-02 11:46 
I don't know if this is the best way, but since it has been some time since you posted this, I'll take a shot at it.

You could use a Microsoft Internet Transfer Control to check versions listed in an html file.

<br />
    Dim sTest as String<br />
    Dim sUrl as String<br />
    sUrl = "http://www.your-url-goes-here.com/versions.txt"<br />
    Inet1.AccessType = icUseDefault<br />
    sTest = Inet1.OpenURL(sUrl)<br />


Then, you would need to compare the versions that you stored in that file with the versions of the files on the user's computer. There is likely a way to access the versioning information (I cannot find it right now,) but you could always have your application maintain a similar file on the user's computer that could would contain the versioning info.

Then, you could use the "OpenURL" to grab any needed files (saving them as binary.)

Here is the sample from MSDN
<br />
Dim b() As Byte<br />
Dim strURL As String<br />
' Set the strURL to a valid address.<br />
strURL = "FTP://ftp.GreatSite.com/China.exe"<br />
b() = Inet1.OpenURL(strURL, icByteArray)<br />
<br />
Open "C:\Temp\China.exe" For Binary Access _<br />
Write As #1<br />
Put #1, , b()<br />
Close #1<br />


Hope that helps.
GeneralNew Kid On The Block Needs Help Pin
ChrisK11-Nov-02 9:06
ChrisK11-Nov-02 9:06 
GeneralRe: New Kid On The Block Needs Help Pin
robrtb13-Nov-02 5:02
robrtb13-Nov-02 5:02 
GeneralSubs and Functions w/ Optional Args Pin
Eldon Zacek11-Nov-02 7:24
Eldon Zacek11-Nov-02 7:24 
GeneralRe: Subs and Functions w/ Optional Args Pin
Richard Deeming11-Nov-02 23:55
mveRichard Deeming11-Nov-02 23:55 
GeneralMonochrome Bitmap Pin
Jamie Nordmeyer11-Nov-02 6:41
Jamie Nordmeyer11-Nov-02 6:41 
Generalnework folder connection problem using vb.net Pin
pampatipraveen10-Nov-02 14:12
pampatipraveen10-Nov-02 14:12 
GeneralRe: nework folder connection problem using vb.net Pin
Ravi_Shankar11-Nov-02 2:35
Ravi_Shankar11-Nov-02 2:35 
GeneralSocket/TCPclient (Seriazlation) Pin
DeSerializeMe10-Nov-02 12:52
sussDeSerializeMe10-Nov-02 12:52 
GeneralPrinting on dot-matrix printer in .NET Pin
Derec Roofie10-Nov-02 10:53
Derec Roofie10-Nov-02 10:53 
GeneralAxInterop.AXRfaxVwRctrLLib Pin
Zulfikar Ali8-Nov-02 12:57
Zulfikar Ali8-Nov-02 12:57 
QuestionObject behaviour of simple data types? Pin
Jan Tielens8-Nov-02 0:37
Jan Tielens8-Nov-02 0:37 
AnswerRe: Object behaviour of simple data types? Pin
Richard Deeming8-Nov-02 7:07
mveRichard Deeming8-Nov-02 7:07 
GeneralTreeView redraw lag.. Pin
dazinith7-Nov-02 10:41
dazinith7-Nov-02 10:41 
GeneralRe: TreeView redraw lag.. Pin
mikasa7-Nov-02 11:10
mikasa7-Nov-02 11:10 
GeneralRe: TreeView redraw lag.. Pin
mikasa7-Nov-02 11:14
mikasa7-Nov-02 11:14 
GeneralRe: TreeView redraw lag.. Pin
dazinith11-Nov-02 4:32
dazinith11-Nov-02 4:32 
GeneralRe: TreeView redraw lag.. Pin
mikasa26-Mar-03 3:31
mikasa26-Mar-03 3:31 

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.