منتدى فيجوال بيسك لكل العرب | منتدى المبرمجين العرب

نسخة كاملة : How to Load txt file into flexgird
أنت حالياً تتصفح نسخة خفيفة من المنتدى . مشاهدة نسخة كاملة مع جميع الأشكال الجمالية .
عاوز احمل الملف ده داخل flexgrid
ماهو الكود المناسب
جرب هذا الكود
PHP كود :
Private Sub Command1_Click()
 
   
    Dim txt 
As String
    Open App
.Path "\attachment.txt" For Input As 1
        txt 
StrConv(InputB(LOF(1), 1), vbUnicode)
 
   Close #1
 
       
    Dim arr
() As String
    arr 
Split(txtvbNewLine)
 
   
    With MSFlexGrid1
        
.Rows 1
        Dim t 
As Variant
        For Each t In arr
            
.Rows = .Rows 1
            
.TextMatrix(.Rows 10) = Mid$(t17)
 
           .TextMatrix(.Rows 11) = Mid$(t1021)
 
           .TextMatrix(.Rows 12) = Mid$(t324)
 
           .TextMatrix(.Rows 13) = Mid$(t397)
 
           .TextMatrix(.Rows 14) = Mid$(t482)
 
           .TextMatrix(.Rows 15) = Mid$(t523)
 
       Next
        
.Rows = .Rows 1
    End With
    
End Sub