PDA

View Full Version : help in making this app!


ahamednishadh
12-10-2008, 08:06 PM
hey there.

i need to make this small app for sum fella. its lyk this.

it shud be a desktop application. there r fields and stuff in the application and the values for the fields have to be fetched from a seperate file that is to be hosted in a web server as this seperate file will be updated regularly. and also da application shud have a function where it shud auto reload da contents from da external file and display it without the user having to close and reopen this.

is there n e way to do this?? da scene is i can use only Visual Basic, Java(which i dont know) or a flash AIR app.

n e body who can help me pls PM me k!

thanks in advance!

digitaldjs
12-10-2008, 08:14 PM
hello i'm a c# programmer, i can help you. give me all details of your app if it wiil not take a lot of time i will build it for you.

kosandpol
12-10-2008, 08:15 PM
You can do this with VB6 alone.

ahamednishadh
12-10-2008, 08:33 PM
You can do this with VB6 alone.

ya but the thing is hw. can u jst tell me da basic structure of it??

kosandpol
12-10-2008, 08:35 PM
ya but the thing is hw. can u jst tell me da basic structure of it??
you can use sockets to access the site and get the file, then read the values and display it.
Or use the IE control and download the file and then read it and load the values.

ahamednishadh
12-10-2008, 09:07 PM
you can use sockets to access the site and get the file, then read the values and display it.
Or use the IE control and download the file and then read it and load the values.

hmm still dont get it man.:baffled: :baffled: :baffled:

got n e tutorials or sumthing??

digitaldjs
12-10-2008, 09:24 PM
here is the basic if you need more info plz pm me:

'Coded by Kavinga Bilhan
System.IO.File.Create(AppDomain.CurrentDomain.Base Directory & "\index.html")
Dim myClient As New System.Net.WebClient()
myClient.DownloadFile("http://google.com/index.html", AppDomain.CurrentDomain.BaseDirectory & "\index.html")
Dim str As String = System.IO.File.ReadAllText(AppDomain.CurrentDomain .BaseDirectory & "\index.html")

digitaldjs
12-10-2008, 09:25 PM
here is the basic if you need more info plz pm me:

'Coded by Kavinga Bilhan
System.IO.File.Create(AppDomain.CurrentDomain.Base Directory & "\index.html")
Dim myClient As New System.Net.WebClient()
myClient.DownloadFile("http://google.com/index.html", AppDomain.CurrentDomain.BaseDirectory & "\index.html")
Dim str As String = System.IO.File.ReadAllText(AppDomain.CurrentDomain .BaseDirectory & "\index.html")

i wrote this sample in c# and converted it to vb, if there are errors pm me