If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > Delphi, C etc > Multiple Forms - Type Mismatch Error

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 06-18-03, 13:31
sgskumar sgskumar is offline
Registered User
 
Join Date: Jun 2003
Posts: 8
Multiple Forms - Type Mismatch Error

Hi,


I am using the following code in my VB project,

In Form1 I have:

Private Sub Form_Load()
Dim Frm3 As New Form3
Frm3.ShowPage (Me)
......
.....
.....
End Sub

In Form3 I have:

Private firstForm As Form1
Public Sub ShowPage(ByRef frm As Form1)
firstForm = frm
End Sub

When I run it I get a runtime error '13' - Type Mismatch.

Please help me get rid of this error.
Reply With Quote
  #2 (permalink)  
Old 06-19-03, 15:34
Ad Dieleman Ad Dieleman is offline
Registered User
 
Join Date: Jan 2003
Location: Dordrecht, The Netherlands
Posts: 95
Re: Multiple Forms - Type Mismatch Error

Try:

Set firstForm = frm

Ad.


Quote:
Originally posted by sgskumar
Hi,


I am using the following code in my VB project,

In Form1 I have:

Private Sub Form_Load()
Dim Frm3 As New Form3
Frm3.ShowPage (Me)
......
.....
.....
End Sub

In Form3 I have:

Private firstForm As Form1
Public Sub ShowPage(ByRef frm As Form1)
firstForm = frm
End Sub

When I run it I get a runtime error '13' - Type Mismatch.

Please help me get rid of this error.
Reply With Quote
  #3 (permalink)  
Old 06-19-03, 17:24
sgskumar sgskumar is offline
Registered User
 
Join Date: Jun 2003
Posts: 8
Re: Multiple Forms - Type Mismatch Error

Quote:
Originally posted by Ad Dieleman
Try:

Set firstForm = frm

Ad.

Hi,

I tried it but didnt work. Thanks anyway.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On