06-18-2017، 01:29 AM
06-22-2017، 11:31 AM
کد:
Public Function getextension(filename As String) As String
For i = Len(filename) To 2 Step -1
c = Mid(filename, i, 1)
If c = "." Then
pos = i + 1
End If
Next
getextension = Mid(filename, pos, (Len(filename) + 1 - pos))
End Function
'Function to get filetitle from full path
Public Function getfiletitle(filename As String) As String
For i = Len(filename) To 2 Step -1
c = Mid(filename, i, 1)
If c = "\" Then
pos = i + 1
End If
Next
getfiletitle = Mid(filename, pos, (Len(filename) + 1 - pos))
End Function
06-23-2017، 04:26 PM
(06-22-2017، 11:31 AM)Amin_Mansouri نوشته: [ -> ]کد:Public Function getextension(filename As String) As String
For i = Len(filename) To 2 Step -1
c = Mid(filename, i, 1)
If c = "." Then
pos = i + 1
End If
Next
getextension = Mid(filename, pos, (Len(filename) + 1 - pos))
End Function
'Function to get filetitle from full path
Public Function getfiletitle(filename As String) As String
For i = Len(filename) To 2 Step -1
c = Mid(filename, i, 1)
If c = "\" Then
pos = i + 1
End If
Next
getfiletitle = Mid(filename, pos, (Len(filename) + 1 - pos))
End Function
درود
آقا ممنونم بابت کمک شما
فقط اگر امکنش هست یکم توضیح بدید یا راهنمایی کنید
بنده فایل متنی رو لود کردم اما این کد چطوری نشون میده میده کدینگ و فورمتش رو ؟
06-26-2017، 10:22 AM
سلام
کدینگ رو نمیشه بررسی کرد
خیلی بحث مفصله
مثلا کدینگ فایل اجرای با تصاویر فرق داره
کدینگ رو نمیشه بررسی کرد
خیلی بحث مفصله
مثلا کدینگ فایل اجرای با تصاویر فرق داره
06-28-2017، 02:45 PM
یسری کد پیدا کردم فقط باید یسری تغییرات بدم و چنتا کد جدید وارد کنم