Click here to Skip to main content
15,920,956 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionExecute SQL Server Report Service from VB6 Pin
QPun16-Oct-07 15:40
QPun16-Oct-07 15:40 
AnswerRe: Execute SQL Server Report Service from VB6 Pin
Vimalsoft(Pty) Ltd17-Oct-07 5:35
professionalVimalsoft(Pty) Ltd17-Oct-07 5:35 
GeneralRe: Execute SQL Server Report Service from VB6 Pin
QPun17-Oct-07 16:30
QPun17-Oct-07 16:30 
GeneralRe: Execute SQL Server Report Service from VB6 Pin
Vimalsoft(Pty) Ltd17-Oct-07 20:02
professionalVimalsoft(Pty) Ltd17-Oct-07 20:02 
QuestionI need a good vb.net 2005 book Pin
imonfiredammit16-Oct-07 9:46
imonfiredammit16-Oct-07 9:46 
AnswerRe: I need a good vb.net 2005 book Pin
Christian Graus16-Oct-07 10:08
protectorChristian Graus16-Oct-07 10:08 
Questionpassing data between open forms Pin
KimHeylen16-Oct-07 8:49
KimHeylen16-Oct-07 8:49 
AnswerRe: passing data between open forms Pin
DigiOz Multimedia16-Oct-07 9:12
DigiOz Multimedia16-Oct-07 9:12 
You mean like this?

Form 1:
<br />
Public Class Form1<br />
<br />
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load<br />
        Dim form2 As New Form2<br />
        form2.ShowDialog()<br />
    End Sub<br />
<br />
End Class<br />


Form 2:
<br />
Public Class Form2<br />
<br />
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click<br />
        Form1.TextBox1.Text = "test"<br />
        Me.Close()<br />
    End Sub<br />
<br />
End Class<br />


Or am I over simplifying it?


Pete Soheil
DigiOz Multimedia
http://www.digioz.com

GeneralRe: passing data between open forms Pin
KimHeylen16-Oct-07 9:50
KimHeylen16-Oct-07 9:50 
AnswerRe: passing data between open forms Pin
Christian Graus16-Oct-07 10:12
protectorChristian Graus16-Oct-07 10:12 
QuestionDot Net Remoting Pin
PJ_1234516-Oct-07 5:51
PJ_1234516-Oct-07 5:51 
AnswerRe: Dot Net Remoting Pin
Dave Kreskowiak16-Oct-07 6:14
mveDave Kreskowiak16-Oct-07 6:14 
GeneralRe: Dot Net Remoting Pin
PJ_1234516-Oct-07 20:44
PJ_1234516-Oct-07 20:44 
GeneralRe: Dot Net Remoting Pin
Dave Kreskowiak17-Oct-07 2:07
mveDave Kreskowiak17-Oct-07 2:07 
GeneralRe: Dot Net Remoting Pin
PJ_1234517-Oct-07 2:32
PJ_1234517-Oct-07 2:32 
GeneralRe: Dot Net Remoting Pin
PJ_1234517-Oct-07 3:17
PJ_1234517-Oct-07 3:17 
GeneralRe: Dot Net Remoting Pin
Dave Kreskowiak17-Oct-07 4:25
mveDave Kreskowiak17-Oct-07 4:25 
GeneralRe: Dot Net Remoting Pin
PJ_1234517-Oct-07 5:00
PJ_1234517-Oct-07 5:00 
GeneralRe: Dot Net Remoting Pin
Dave Kreskowiak17-Oct-07 6:50
mveDave Kreskowiak17-Oct-07 6:50 
GeneralRe: Dot Net Remoting Pin
PJ_1234517-Oct-07 21:12
PJ_1234517-Oct-07 21:12 
GeneralRe: Dot Net Remoting Pin
PJ_1234517-Oct-07 3:34
PJ_1234517-Oct-07 3:34 
GeneralRe: Dot Net Remoting Pin
PJ_1234517-Oct-07 3:50
PJ_1234517-Oct-07 3:50 
Question2 dimensional array ? Pin
Mr Oizo16-Oct-07 5:41
Mr Oizo16-Oct-07 5:41 
AnswerRe: 2 dimensional array ? Pin
Dave Kreskowiak16-Oct-07 5:48
mveDave Kreskowiak16-Oct-07 5:48 
GeneralRe: 2 dimensional array ? Pin
Mr Oizo16-Oct-07 5:57
Mr Oizo16-Oct-07 5:57 

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.