Click here to Skip to main content
15,896,063 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: How to update form control from an embedded form Pin
EliottA6-Jan-09 11:11
EliottA6-Jan-09 11:11 
GeneralRe: How to update form control from an embedded form Pin
sohaib_a6-Jan-09 11:38
sohaib_a6-Jan-09 11:38 
GeneralRe: How to update form control from an embedded form Pin
Dave Kreskowiak6-Jan-09 12:09
mveDave Kreskowiak6-Jan-09 12:09 
GeneralRe: How to update form control from an embedded form Pin
sohaib_a6-Jan-09 22:48
sohaib_a6-Jan-09 22:48 
GeneralRe: How to update form control from an embedded form Pin
Dave Kreskowiak7-Jan-09 2:10
mveDave Kreskowiak7-Jan-09 2:10 
GeneralRe: How to update form control from an embedded form Pin
sohaib_a7-Jan-09 4:36
sohaib_a7-Jan-09 4:36 
GeneralRe: How to update form control from an embedded form Pin
Dave Kreskowiak7-Jan-09 9:56
mveDave Kreskowiak7-Jan-09 9:56 
GeneralRe: How to update form control from an embedded form Pin
sohaib_a10-Jan-09 23:06
sohaib_a10-Jan-09 23:06 
well I have done exactly as you said.


This is in the parent form,I have added this in the form load event of the parent form


Dim obj1 As New childform

AddHandler obj1.addtolist, AddressOf addtolistbox


and this is sub that is subscribed to the event..

Private Sub addtolistbox(ByVal str As String)

    ListBox1.Items.Add(str)
    End Sub





In the child form....

Public Event addtolist(ByVal s As String)



and in the sub where I want to add to listbox in parent form,

RaiseEvent addtolist(ds1.Tables(0).Rows(0)("Reader_location").ToString & " Connected ")
Questionhow can made login form in vb6 and vb.net?please send me coding Pin
mohammedali20066-Jan-09 6:39
mohammedali20066-Jan-09 6:39 
AnswerCP IGNORE Pin
leckey6-Jan-09 6:52
leckey6-Jan-09 6:52 
AnswerRe: how can made login form in vb6 and vb.net?please send me coding Pin
EliottA6-Jan-09 6:58
EliottA6-Jan-09 6:58 
AnswerRe: how can made login form in vb6 and vb.net?please send me coding Pin
Jon_Boy6-Jan-09 7:28
Jon_Boy6-Jan-09 7:28 
GeneralRe: how can made login form in vb6 and vb.net?please send me coding Pin
EliottA6-Jan-09 7:52
EliottA6-Jan-09 7:52 
GeneralRe: how can made login form in vb6 and vb.net?please send me coding Pin
Jon_Boy6-Jan-09 8:14
Jon_Boy6-Jan-09 8:14 
GeneralRe: how can made login form in vb6 and vb.net?please send me coding Pin
EliottA6-Jan-09 8:17
EliottA6-Jan-09 8:17 
GeneralRe: how can made login form in vb6 and vb.net?please send me coding Pin
leckey6-Jan-09 8:34
leckey6-Jan-09 8:34 
AnswerRe: how can made login form in vb6 and vb.net?please send me coding Pin
Dave Kreskowiak6-Jan-09 10:04
mveDave Kreskowiak6-Jan-09 10:04 
JokeRe: how can made login form in vb6 and vb.net?please send me coding Pin
0x3c06-Jan-09 20:30
0x3c06-Jan-09 20:30 
QuestionDataRow Pin
RELGERT6-Jan-09 4:23
RELGERT6-Jan-09 4:23 
AnswerRe: DataRow Pin
Dave Kreskowiak6-Jan-09 10:18
mveDave Kreskowiak6-Jan-09 10:18 
GeneralRe: DataRow Pin
RELGERT6-Jan-09 22:57
RELGERT6-Jan-09 22:57 
GeneralRe: DataRow Pin
Dave Kreskowiak7-Jan-09 2:12
mveDave Kreskowiak7-Jan-09 2:12 
GeneralRe: DataRow Pin
RELGERT7-Jan-09 2:26
RELGERT7-Jan-09 2:26 
QuestionTransparency working only on development computer Pin
fifothekid6-Jan-09 4:10
fifothekid6-Jan-09 4:10 
AnswerRe: Transparency working only on development computer Pin
Fu Manchu6-Jan-09 4:31
Fu Manchu6-Jan-09 4:31 

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.