Click here to Skip to main content
15,901,426 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: RTF IMAGE INSERTION Pin
The Man from U.N.C.L.E.13-Jul-10 6:54
The Man from U.N.C.L.E.13-Jul-10 6:54 
GeneralRe: RTF IMAGE INSERTION Pin
djdrew15-Jul-10 5:23
djdrew15-Jul-10 5:23 
Questionclick one treenode but it didn't response ,why Pin
sanyexian12-Jul-10 3:18
sanyexian12-Jul-10 3:18 
AnswerRe: click one treenode but it didn't response ,why Pin
Simon_Whale12-Jul-10 3:26
Simon_Whale12-Jul-10 3:26 
GeneralRe: click one treenode but it didn't response ,why Pin
sanyexian12-Jul-10 4:34
sanyexian12-Jul-10 4:34 
GeneralRe: click one treenode but it didn't response ,why Pin
Simon_Whale12-Jul-10 4:41
Simon_Whale12-Jul-10 4:41 
GeneralRe: click one treenode but it didn't response ,why Pin
sanyexian12-Jul-10 5:06
sanyexian12-Jul-10 5:06 
AnswerRe: click one treenode but it didn't response ,why Pin
Аslam Iqbal12-Jul-10 11:54
professionalАslam Iqbal12-Jul-10 11:54 
If panel1 is a child of panel2 OR Panel2 is a child of Panel1 you'll never see child panelin your form.
Check the following Code:
VB
Private Sub treeQiaoTi_NodeMouseClick(ByVal sender As Object, ByVal e As System.Windows.Forms.TreeNodeMouseClickEventArgs) Handles treeQiaoTi.NodeMouseClick
        Me.Text = e.Node.Text ' real text in clicked node.
        If e.Node.Text = "abc" Then 'Check this abc
            panJieGuan2.Visible = False
            Panel1.Visible = True
            Panel1.BringToFront() 'Check it
        Else
            Panel1.Visible = False
            panJieGuan2.Visible = True
            panJieGuan2.BringToFront() 'It too
        End If
    End Sub

This is not Necessary yet:
VB
Private Sub treeQiaoTi_AfterSelect(ByVal sender As System.Object, ByVal e As System.Windows.Forms.TreeViewEventArgs) Handles treeQiaoTi.AfterSelect
End Sub

Use <pre lang="vb"> Visual Basic Code Here.</pre>

GeneralRe: click one treenode but it didn't response ,why Pin
sanyexian12-Jul-10 20:50
sanyexian12-Jul-10 20:50 
QuestionCopy data from one excel file to another excel file Pin
priyaahh12-Jul-10 0:49
priyaahh12-Jul-10 0:49 
AnswerRe: Copy data from one excel file to another excel file Pin
Syed Wayez Ahmed12-Jul-10 2:49
Syed Wayez Ahmed12-Jul-10 2:49 
GeneralRe: Copy data from one excel file to another excel file Pin
Syed Wayez Ahmed12-Jul-10 3:13
Syed Wayez Ahmed12-Jul-10 3:13 
GeneralRe: Copy data from one excel file to another excel file Pin
priyaahh12-Jul-10 5:22
priyaahh12-Jul-10 5:22 
AnswerRe: Copy data from one excel file to another excel file Pin
Sonhospa12-Jul-10 11:58
Sonhospa12-Jul-10 11:58 
GeneralRe: Copy data from one excel file to another excel file Pin
priyaahh12-Jul-10 18:32
priyaahh12-Jul-10 18:32 
GeneralRe: Copy data from one excel file to another excel file Pin
Syed Wayez Ahmed12-Jul-10 21:18
Syed Wayez Ahmed12-Jul-10 21:18 
AnswerRe: Copy data from one excel file to another excel file Pin
Sonhospa12-Jul-10 22:36
Sonhospa12-Jul-10 22:36 
AnswerRe: Copy data from one excel file to another excel file Pin
Sonhospa13-Jul-10 7:08
Sonhospa13-Jul-10 7:08 
GeneralRe: Copy data from one excel file to another excel file Pin
priyaahh13-Jul-10 7:17
priyaahh13-Jul-10 7:17 
GeneralRe: Copy data from one excel file to another excel file Pin
Sonhospa13-Jul-10 9:20
Sonhospa13-Jul-10 9:20 
Questionretrieve the salt from a mysql database for a password. [modified] Pin
malcomhfc11-Jul-10 9:09
malcomhfc11-Jul-10 9:09 
AnswerRe: retrieve the salt from a mysql database for a password. Pin
DaveAuld11-Jul-10 9:41
professionalDaveAuld11-Jul-10 9:41 
GeneralRe: retrieve the salt from a mysql database for a password. Pin
malcomhfc11-Jul-10 9:55
malcomhfc11-Jul-10 9:55 
GeneralRe: retrieve the salt from a mysql database for a password. Pin
malcomhfc11-Jul-10 10:10
malcomhfc11-Jul-10 10:10 
GeneralRe: retrieve the salt from a mysql database for a password. Pin
DaveAuld11-Jul-10 10:37
professionalDaveAuld11-Jul-10 10:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.