Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is there any way to have a form modeless in Excel 2002
but model in Excel 97. I was playing with this If Val(Application.Version) = 8 Then frmLabel.Show Else: frmLabel.Show vbModeless End If but the Else clause causes an error in Excel 97 (which I can't trap out). Thanks - Kirk |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi kirkm,
You must use conditional compilation: #If VBA6 Then frmLabel.Show #Else frmLabel.Show vbModeless #End If MP "kirkm" a écrit dans le message de news: ... Is there any way to have a form modeless in Excel 2002 but model in Excel 97. I was playing with this If Val(Application.Version) = 8 Then frmLabel.Show Else: frmLabel.Show vbModeless End If but the Else clause causes an error in Excel 97 (which I can't trap out). Thanks - Kirk |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
The correct procedure is the reverse:
#If VBA6 Then frmLabel.Show vbModeless #Else frmLabel.Show #End If MP "Michel Pierron" a écrit dans le message de news: ... Hi kirkm, You must use conditional compilation: #If VBA6 Then frmLabel.Show #Else frmLabel.Show vbModeless #End If MP "kirkm" a écrit dans le message de news: ... Is there any way to have a form modeless in Excel 2002 but model in Excel 97. I was playing with this If Val(Application.Version) = 8 Then frmLabel.Show Else: frmLabel.Show vbModeless End If but the Else clause causes an error in Excel 97 (which I can't trap out). Thanks - Kirk |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On Sun, 22 Oct 2006 10:03:55 +0200, "Michel Pierron"
wrote: The correct procedure is the reverse: #If VBA6 Then frmLabel.Show vbModeless #Else frmLabel.Show #End If Many thanks Michael, That worked spot-on. Cheers - Kirk |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel Forms-Can i set the modal property? | Excel Programming | |||
How to make values of spreadsheet show in a modeless forms text bo | Excel Programming | |||
Forms that are modal in 97 are not modal in 2003 | Excel Discussion (Misc queries) | |||
Forms that are modal in 97 are not modal in 2003 | Excel Programming | |||
Modal Forms | Excel Programming |