Click here to Skip to main content
15,920,801 members
Home / Discussions / Windows Forms
   

Windows Forms

 
GeneralRe: Its not a repost but a bit more specific questoin let me explain Pin
Richard MacCutchan31-Aug-10 12:00
mveRichard MacCutchan31-Aug-10 12:00 
GeneralRe: Its not a repost but a bit more specific questoin let me explain Pin
imak31-Aug-10 20:30
imak31-Aug-10 20:30 
AnswerRe: i am asking for answers and not lectures from you guys Pin
Tom Deketelaere31-Aug-10 22:06
professionalTom Deketelaere31-Aug-10 22:06 
AnswerRe: Read winform control properties via reflection Pin
dan!sh 31-Aug-10 8:20
professional dan!sh 31-Aug-10 8:20 
QuestionSOLVED - Secure the Software [modified] Pin
All Time Programming31-Aug-10 0:05
All Time Programming31-Aug-10 0:05 
AnswerRe: Secure the Software Pin
dan!sh 31-Aug-10 1:01
professional dan!sh 31-Aug-10 1:01 
GeneralRe: Secure the Software Pin
All Time Programming31-Aug-10 3:27
All Time Programming31-Aug-10 3:27 
GeneralRe: Secure the Software Pin
dan!sh 31-Aug-10 5:13
professional dan!sh 31-Aug-10 5:13 
AnswerRe: Secure the Software Pin
Eddy Vluggen31-Aug-10 8:37
professionalEddy Vluggen31-Aug-10 8:37 
AnswerRe: Secure the Software Pin
Expert Coming31-Aug-10 20:31
Expert Coming31-Aug-10 20:31 
AnswerRe: Secure the Software Pin
All Time Programming2-Sep-10 22:16
All Time Programming2-Sep-10 22:16 
Questiondatagridview cell color Pin
jogisarge27-Aug-10 8:27
jogisarge27-Aug-10 8:27 
AnswerRe: datagridview cell color Pin
Dave Kreskowiak27-Aug-10 10:45
mveDave Kreskowiak27-Aug-10 10:45 
AnswerRe: datagridview cell color Pin
Eddy Vluggen30-Aug-10 9:09
professionalEddy Vluggen30-Aug-10 9:09 
AnswerRe: datagridview cell color Pin
All Time Programming2-Sep-10 22:41
All Time Programming2-Sep-10 22:41 
QuestionHow to find/copy image stored into ImageList controls Pin
Samarjeet Singh@india27-Aug-10 1:10
Samarjeet Singh@india27-Aug-10 1:10 
AnswerRe: How to find/copy image stored into ImageList controls Pin
Goutam Patra27-Aug-10 3:34
professionalGoutam Patra27-Aug-10 3:34 
GeneralRe: How to find/copy image stored into ImageList controls Pin
Samarjeet Singh@india27-Aug-10 4:57
Samarjeet Singh@india27-Aug-10 4:57 
QuestionPass value from One form to another Pin
.NetDeveloper0921-Aug-10 22:19
.NetDeveloper0921-Aug-10 22:19 
Hi i have a form1 with one textbox1 and button1 when i click the button another form2 loads which has one textbox1 and button one when i type alfanumeric values in the textbox of form2 and press the button1 of form2 it is not displaying the value in form1 textbox1.

I am using property approach.

My code is as:

Form One:
<pre>
Public Class Form1

Public _form2 As Form2 = New Form2

Private Sub btnList_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnList.Click
_form2.Show()

End Sub

Public WriteOnly Property _textBox() As String

Set(ByVal Value As String)

tbxVal.Text = Value

End Set

End Property

End Class
</pre>

Form Two
<pre>
Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOK.Click

Dim frm As Form1 = New Form1
Value = _textBox1
Me.Close()

End Sub

Public ReadOnly Property _textBox1() As String
Get
Return tbxValue1.Text
End Get
End Property

Private Sub Form2_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing
Dim fm As Form1 = New Form1
fm.tbxVal.Text = Value
End Sub
</pre>
AnswerRe: Pass value from One form to another Pin
Abhinav S21-Aug-10 22:43
Abhinav S21-Aug-10 22:43 
GeneralRe: Pass value from One form to another Pin
.NetDeveloper0921-Aug-10 22:51
.NetDeveloper0921-Aug-10 22:51 
GeneralRe: Pass value from One form to another Pin
.NetDeveloper0922-Aug-10 2:01
.NetDeveloper0922-Aug-10 2:01 
GeneralRe: Pass value from One form to another Pin
johannesnestler26-Aug-10 3:33
johannesnestler26-Aug-10 3:33 
GeneralRe: Pass value from One form to another Pin
.NetDeveloper0926-Aug-10 9:59
.NetDeveloper0926-Aug-10 9:59 
GeneralRe: Pass value from One form to another Pin
Luc Pattyn26-Aug-10 10:45
sitebuilderLuc Pattyn26-Aug-10 10:45 

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.