PDA

View Full Version : لیست نشدن نوشته های txt



xrezax
سه شنبه 30 خرداد 1396, 04:29 صبح
سلام دوستان
من یک فایل txt را از بصورت لیست نوشتم و روی سایت آپلو کردم. حالا وقتی اون فایل را توی text فراخوانی میکنم به صورت لیست نمیاد. چکار کنم بصورت لیست بیاد ؟؟؟
عکش ضمیمه رو ببینید لطفا

isaac23
سه شنبه 30 خرداد 1396, 16:53 عصر
نمونه کدی که استفاده کردی چی هست .

xrezax
سه شنبه 30 خرداد 1396, 20:08 عصر
Private Declare Function InternetOpen Lib "wininet.dll" Alias "InternetOpenA" (ByVal sAgent As String, ByVal lAccessType As Long, ByVal sProxyName As String, ByVal sProxyBypass As String, ByVal lFlags As Long) As Long

Private Declare Function InternetOpenUrl Lib "wininet.dll" Alias "InternetOpenUrlA" (ByVal hInternetSession As Long, ByVal sURL As String, ByVal sHeaders As String, ByVal lHeadersLength As Long, ByVal lFlags As Long, ByVal lContext As Long) As Long

Private Declare Function InternetReadFile Lib "wininet.dll" (ByVal hFile As Long, ByVal sBuffer As String, ByVal lNumBytesToRead As Long, lNumberOfBytesRead As Long) As Integer

Private Declare Function InternetCloseHandle Lib "wininet.dll" (ByVal hInet As Long) As Integer

Private Const IF_FROM_CACHE = &H1000000

Private Const IF_MAKE_PERSISTENT = &H2000000

Private Const IF_NO_CACHE_WRITE = &H4000000

Private Const BUFFER_LEN = 256

Public Function GetUrlSource(sURL As String) As String

Dim sBuffer As String * BUFFER_LEN, iResult As Integer, sData As String

Dim hInternet As Long, hSession As Long, lReturn As Long

hSession = InternetOpen("vb wininet", 1, vbNullString, vbNullString, 0)

If hSession Then hInternet = InternetOpenUrl(hSession, sURL, vbNullString, 0, IF_NO_CACHE_WRITE, 0)

If hInternet Then

iResult = InternetReadFile(hInternet, sBuffer, BUFFER_LEN, lReturn)

sData = sBuffer

Do While lReturn <> 0

iResult = InternetReadFile(hInternet, sBuffer, BUFFER_LEN, lReturn)

sData = sData + Mid(sBuffer, 1, lReturn)

Loop

End If

iResult = InternetCloseHandle(hInternet)

GetUrlSource = sData

End Function




-------------------------------

Dim s As Variant

s = GetUrlSource("http://dl.artavil.ir/7zgtv0b05prys04avf4403qyceiqrj1497918196.txt")

Text1.Text = s

vbhamed
پنج شنبه 01 تیر 1396, 13:40 عصر
سلام

Dim s As Variant

s = GetUrlSource("http://dl.artavil.ir/7zgtv0b05prys04avf4403qyceiqrj1497918196.txt")

s = Replace(s, vbLf, vbCrLf)


Text1 = s


خاصیت MutiLine تکست باکس هم باید True باشه