Jump to content
xisto Community
Sign in to follow this  
iGuest

visual basic

Recommended Posts

ok i have a pice of code that loads an IP and a discription to a list box from a text file and nomaly it should load the full ip (like 23.435.12.34) but instead it will load 23.435 can anyone help here the code

Private Sub Form_Load()Open App.Path & "config.txt" For Input As #1Dim stra As StringInput #1, stratxtPath.Text = straDim fora As IntegerInput #1, DICountIf DICount = 1 Then    Input #1, IPs(1)    Input #1, Descs(1)    lstServer.AddItem IPs(1) & " -" & Descs(1) & "-"Else    For fora = 1 To DICount    Input #1, IPs(fora)    Input #1, Descs(fora)    lstServer.AddItem IPs(fora) & " -" & Descs(fora) & "-"    Next foraEnd IfClose #1'DICount = 0End Sub

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.