Click here to Skip to main content
15,912,329 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionCall Crystal report viewer to VB.net Pin
Yose Antony27-May-09 0:45
Yose Antony27-May-09 0:45 
AnswerRe: Call Crystal report viewer to VB.net Pin
Kschuler27-May-09 9:13
Kschuler27-May-09 9:13 
GeneralRe: Call Crystal report viewer to VB.net [modified] Pin
Yose Antony27-May-09 22:49
Yose Antony27-May-09 22:49 
QuestionThe 'Me' keyword Pin
Jay Royall27-May-09 0:06
Jay Royall27-May-09 0:06 
AnswerRe: The 'Me' keyword Pin
Henry Minute27-May-09 0:21
Henry Minute27-May-09 0:21 
GeneralRe: The 'Me' keyword Pin
Jay Royall27-May-09 0:33
Jay Royall27-May-09 0:33 
QuestionStructure within structure - Help needed [modified] Pin
tiagu26-May-09 23:46
tiagu26-May-09 23:46 
AnswerRe: Structure within structure - Help needed Pin
Eddy Vluggen27-May-09 0:52
professionalEddy Vluggen27-May-09 0:52 
Something like this?
Public Structure InnerStruct
    Public InnerTest As String
End Structure
Public Structure RootStruct
    Public Test As String
    Public myStruct As InnerStruct
End Structure

Public Class Form1

    Public Sub ShowInnerText(ByVal whatStruct As RootStruct)
        MessageBox.Show(whatStruct.myStruct.InnerTest)
    End Sub

    Private Sub Button1_Click(ByVal sender As System.Object, _
      ByVal e As System.EventArgs) Handles Button1.Click

        Dim newStruct As RootStruct
        newStruct.myStruct.InnerTest = "Hello world"
        ShowInnerText(newStruct)

    End Sub

End Class


I are troll Smile | :)

GeneralRe: Structure within structure - Help needed Pin
Jon_Boy27-May-09 1:46
Jon_Boy27-May-09 1:46 
GeneralRe: Structure within structure - Help needed Pin
tiagu27-May-09 2:01
tiagu27-May-09 2:01 
GeneralRe: Structure within structure - Help needed Pin
Eddy Vluggen27-May-09 3:03
professionalEddy Vluggen27-May-09 3:03 
GeneralRe: Structure within structure - Help needed Pin
tiagu27-May-09 4:48
tiagu27-May-09 4:48 
QuestionPause, freeze external process launched a ShellExecuteEx (VB6) Pin
Rienzi Garberoglio26-May-09 22:55
Rienzi Garberoglio26-May-09 22:55 
AnswerRe: Pause, freeze external process launched a ShellExecuteEx (VB6) Pin
Dave Kreskowiak27-May-09 1:47
mveDave Kreskowiak27-May-09 1:47 
QuestionBootable Program Pin
Anubhava Dimri26-May-09 20:07
Anubhava Dimri26-May-09 20:07 
AnswerRe: Bootable Program Pin
_Damian S_26-May-09 20:18
professional_Damian S_26-May-09 20:18 
GeneralRe: Bootable Program Pin
Anubhava Dimri26-May-09 20:41
Anubhava Dimri26-May-09 20:41 
GeneralRe: Bootable Program Pin
Eddy Vluggen26-May-09 20:58
professionalEddy Vluggen26-May-09 20:58 
AnswerRe: Bootable Program Pin
0x3c026-May-09 21:44
0x3c026-May-09 21:44 
GeneralRe: Bootable Program Pin
Anubhava Dimri26-May-09 22:28
Anubhava Dimri26-May-09 22:28 
GeneralRe: Bootable Program Pin
Dave Kreskowiak27-May-09 1:45
mveDave Kreskowiak27-May-09 1:45 
GeneralRe: Bootable Program Pin
0x3c027-May-09 2:30
0x3c027-May-09 2:30 
AnswerRe: Bootable Program Pin
Dave Kreskowiak27-May-09 1:46
mveDave Kreskowiak27-May-09 1:46 
AnswerRe: Bootable Program Pin
DidiKunz28-May-09 23:44
DidiKunz28-May-09 23:44 
GeneralRe: Bootable Program Pin
Anubhava Dimri29-May-09 0:29
Anubhava Dimri29-May-09 0:29 

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.