以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  TabControl页面问题  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=185452)

--  作者:HJG_HB950207
--  发布时间:2023/2/23 19:09:00
--  TabControl页面问题
请教,窗口建TabControl页面,双击页面名称时,系统提醒:未找到类型“TabControl”的公共成员“Current”是啥原因?如何调试啊?谢谢

--  作者:HJG_HB950207
--  发布时间:2023/2/23 20:11:00
--  
估计是treeview 的双击代码 有问题

Dim lr As WinForm.ListViewRow = e.Sender.Current
Dim a As String = lr.TEXT
  Tables("图片").filter = ""
Dim t As Table = Tables("图片")
Dim dr As DataRow
  
dr = DataTables("图片").Find("[图片] =\'" & a & "\'")
If dr IsNot Nothing Then
    Dim wz As Integer = Tables("图片").FindRow(dr)
    If wz >= 0 Then
        Tables("图片").Position = wz
        
        Dim proc As New Process
    proc.File = ProjectPath & "图片/" & A
    proc.Start

        
    End If
    
    
End If\'

--  作者:有点蓝
--  发布时间:2023/2/23 20:23:00
--  
代码放错事件了吧
--  作者:HJG_HB950207
--  发布时间:2023/2/23 20:43:00
--  
我发在双击选择TreeVIEW 节点后 ,即 TREEVIEW 的Doubleclick 
--  作者:有点蓝
--  发布时间:2023/2/23 20:44:00
--  
检查TabControl的事件
--  作者:HJG_HB950207
--  发布时间:2023/2/23 20:44:00
--  
不好意思,是LISTVIEW