Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Shadowrift
 
Posts: n/a
Default editing custom dialog boxes

Hi,

Im updating an excel sheet to incorporate some business changes. The
problem is, i can edit the sheet and the code, but i cannot edit the dialog
boxes. Can someone explain how to bring up a dialog box explorer? or editor?

I see in the code there are instances of CustomDialogBoxName.Show

So the objects must be hidden in excel somehow. I need to incorporate
changes to them and if anyone can give me some help it will be much
appreciated!


  #2   Report Post  
Michael R Middleton
 
Posts: n/a
Default

Shadowrift -

Mayabe they are dialog boxes (Excel 95 and earlier) instead of user forms
(Excel 97 and later). If so, they appear on a dialog box sheet tab, which is
in Excel (along with other worksheet tabs). The older dialog boxes are not
viewable in the VBA Visual Basic Editor.

- Mike
www.mikemiddleton.com

"Shadowrift" wrote in message
...
Hi,

Im updating an excel sheet to incorporate some business changes. The
problem is, i can edit the sheet and the code, but i cannot edit the
dialog
boxes. Can someone explain how to bring up a dialog box explorer? or
editor?

I see in the code there are instances of CustomDialogBoxName.Show

So the objects must be hidden in excel somehow. I need to incorporate
changes to them and if anyone can give me some help it will be much
appreciated!




  #3   Report Post  
Shadowrift
 
Posts: n/a
Default

Thanks for replying Michael,

It is possible that this sheet might date back to an instance of excel 95 in
the beginning. However, I am unsure how to locate the "dialog box sheet
tab". I have 8 worksheets that are plain excel, but no dialog box sheet at
the bottom that i can see.

Is it possible this sheet is hidden? if not, how and where do i access the
invisible user forms (dialog boxes) ?

Thanks



"Michael R Middleton" wrote:

Shadowrift -

Mayabe they are dialog boxes (Excel 95 and earlier) instead of user forms
(Excel 97 and later). If so, they appear on a dialog box sheet tab, which is
in Excel (along with other worksheet tabs). The older dialog boxes are not
viewable in the VBA Visual Basic Editor.

- Mike
www.mikemiddleton.com

"Shadowrift" wrote in message
...
Hi,

Im updating an excel sheet to incorporate some business changes. The
problem is, i can edit the sheet and the code, but i cannot edit the
dialog
boxes. Can someone explain how to bring up a dialog box explorer? or
editor?

I see in the code there are instances of CustomDialogBoxName.Show

So the objects must be hidden in excel somehow. I need to incorporate
changes to them and if anyone can give me some help it will be much
appreciated!





  #4   Report Post  
Shadowrift
 
Posts: n/a
Default

the vba code is as follows:
Sub ShowProjectDescriptionDlg()
With ActiveWorkbook.DialogSheets("dlgProjectDescription ")
.Show
End With
End Sub

-the button calls a macro ShowProjectDescriptionDlg()
-a dialog box is then displayed

"Shadowrift" wrote:

Thanks for replying Michael,

It is possible that this sheet might date back to an instance of excel 95 in
the beginning. However, I am unsure how to locate the "dialog box sheet
tab". I have 8 worksheets that are plain excel, but no dialog box sheet at
the bottom that i can see.

Is it possible this sheet is hidden? if not, how and where do i access the
invisible user forms (dialog boxes) ?

Thanks



"Michael R Middleton" wrote:

Shadowrift -

Mayabe they are dialog boxes (Excel 95 and earlier) instead of user forms
(Excel 97 and later). If so, they appear on a dialog box sheet tab, which is
in Excel (along with other worksheet tabs). The older dialog boxes are not
viewable in the VBA Visual Basic Editor.

- Mike
www.mikemiddleton.com

"Shadowrift" wrote in message
...
Hi,

Im updating an excel sheet to incorporate some business changes. The
problem is, i can edit the sheet and the code, but i cannot edit the
dialog
boxes. Can someone explain how to bring up a dialog box explorer? or
editor?

I see in the code there are instances of CustomDialogBoxName.Show

So the objects must be hidden in excel somehow. I need to incorporate
changes to them and if anyone can give me some help it will be much
appreciated!





  #5   Report Post  
Shadowrift
 
Posts: n/a
Default

does anyone know how i can find and edit this dialog sheet??


"Shadowrift" wrote:

the vba code is as follows:
Sub ShowProjectDescriptionDlg()
With ActiveWorkbook.DialogSheets("dlgProjectDescription ")
.Show
End With
End Sub

-the button calls a macro ShowProjectDescriptionDlg()
-a dialog box is then displayed

"Shadowrift" wrote:

Thanks for replying Michael,

It is possible that this sheet might date back to an instance of excel 95 in
the beginning. However, I am unsure how to locate the "dialog box sheet
tab". I have 8 worksheets that are plain excel, but no dialog box sheet at
the bottom that i can see.

Is it possible this sheet is hidden? if not, how and where do i access the
invisible user forms (dialog boxes) ?

Thanks



"Michael R Middleton" wrote:

Shadowrift -

Mayabe they are dialog boxes (Excel 95 and earlier) instead of user forms
(Excel 97 and later). If so, they appear on a dialog box sheet tab, which is
in Excel (along with other worksheet tabs). The older dialog boxes are not
viewable in the VBA Visual Basic Editor.

- Mike
www.mikemiddleton.com

"Shadowrift" wrote in message
...
Hi,

Im updating an excel sheet to incorporate some business changes. The
problem is, i can edit the sheet and the code, but i cannot edit the
dialog
boxes. Can someone explain how to bring up a dialog box explorer? or
editor?

I see in the code there are instances of CustomDialogBoxName.Show

So the objects must be hidden in excel somehow. I need to incorporate
changes to them and if anyone can give me some help it will be much
appreciated!







  #6   Report Post  
Vasant Nanavati
 
Posts: n/a
Default

Try:

Format | Sheet | Unhide and see if a dialog sheet is listed.

--

Vasant


"Shadowrift" wrote in message
...
does anyone know how i can find and edit this dialog sheet??


"Shadowrift" wrote:

the vba code is as follows:
Sub ShowProjectDescriptionDlg()
With ActiveWorkbook.DialogSheets("dlgProjectDescription ")
.Show
End With
End Sub

-the button calls a macro ShowProjectDescriptionDlg()
-a dialog box is then displayed

"Shadowrift" wrote:

Thanks for replying Michael,

It is possible that this sheet might date back to an instance of excel
95 in
the beginning. However, I am unsure how to locate the "dialog box
sheet
tab". I have 8 worksheets that are plain excel, but no dialog box sheet
at
the bottom that i can see.

Is it possible this sheet is hidden? if not, how and where do i access
the
invisible user forms (dialog boxes) ?

Thanks



"Michael R Middleton" wrote:

Shadowrift -

Mayabe they are dialog boxes (Excel 95 and earlier) instead of user
forms
(Excel 97 and later). If so, they appear on a dialog box sheet tab,
which is
in Excel (along with other worksheet tabs). The older dialog boxes
are not
viewable in the VBA Visual Basic Editor.

- Mike
www.mikemiddleton.com

"Shadowrift" wrote in message
...
Hi,

Im updating an excel sheet to incorporate some business changes.
The
problem is, i can edit the sheet and the code, but i cannot edit
the
dialog
boxes. Can someone explain how to bring up a dialog box explorer?
or
editor?

I see in the code there are instances of CustomDialogBoxName.Show

So the objects must be hidden in excel somehow. I need to
incorporate
changes to them and if anyone can give me some help it will be much
appreciated!







Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Automatically Close Dialog Boxes chriskane Excel Worksheet Functions 2 August 9th 05 12:14 PM
Creating Custom Dialog Boxex (Popup) Brad Sumner Excel Discussion (Misc queries) 9 June 17th 05 02:14 PM
Editing XL95 custom menus with XL97 windsurferLA Excel Worksheet Functions 11 February 1st 05 06:26 PM
Copying and Pasting in dialog boxes Robert Excel Discussion (Misc queries) 1 January 19th 05 11:22 PM
How can I change the size of dialog boxes? Dale Hildebrand Excel Discussion (Misc queries) 2 December 2nd 04 05:12 PM


All times are GMT +1. The time now is 09:14 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"