#1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 41
Default Call Issue

I have a workbook that has ComboBoxes, InputBoxes and CommandButtons in the
top 20 rows.

I need to be able to control those items so that if a user happens to have
his cursor placed on rows 1 through 20, the buttons and boxes will give him
an error message saying he needs to be in the lower part of the workbook.

I have adjusted one of the click subs as follows:

If ActiveCell.Row < 21 Then TooHighUp Else
myCell = "A" & ActiveCell.Row
Range(myCell).Offset(0, 0).Range("A1:AJ1").Select
Selection.Interior.ColorIndex = xlNone
ActiveCell.Select


The routine TooHighUp is shown below:

Private Sub TooHighUp()
MsgBox ("You need to be in the lower part of the workbook.")
End Sub

Part of the coding is working correctly. If the user is below row 20, the
macro runs as it should, if the user is above row 20 the macro displays the
Message Box, but then the sub TooHighUp returns control to my click event and
that program runs.

How do I tell the macro to run the Sub TooHighUp and then stop?

Thanks for your help, once again.

Tofer
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 41
Default Call Issue


I placed the word End on the line below this one and my problem is fixed.

MsgBox ("You need to be in the lower part of the workbook.")

Thanks, guys.

"ToferKing" wrote:

I have a workbook that has ComboBoxes, InputBoxes and CommandButtons in the
top 20 rows.

I need to be able to control those items so that if a user happens to have
his cursor placed on rows 1 through 20, the buttons and boxes will give him
an error message saying he needs to be in the lower part of the workbook.

I have adjusted one of the click subs as follows:

If ActiveCell.Row < 21 Then TooHighUp Else
myCell = "A" & ActiveCell.Row
Range(myCell).Offset(0, 0).Range("A1:AJ1").Select
Selection.Interior.ColorIndex = xlNone
ActiveCell.Select


The routine TooHighUp is shown below:

Private Sub TooHighUp()
MsgBox ("You need to be in the lower part of the workbook.")
End Sub

Part of the coding is working correctly. If the user is below row 20, the
macro runs as it should, if the user is above row 20 the macro displays the
Message Box, but then the sub TooHighUp returns control to my click event and
that program runs.

How do I tell the macro to run the Sub TooHighUp and then stop?

Thanks for your help, once again.

Tofer

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,290
Default Call Issue

Change the first two lines to these four lines...

If ActiveCell.Row < 21 Then
TooHighUp
Exit Sub
End If
--------
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware



"ToferKing"

wrote in message
I have a workbook that has ComboBoxes, InputBoxes and CommandButtons
in the top 20 rows.
I need to be able to control those items so that if a user happens to have
his cursor placed on rows 1 through 20, the buttons and boxes will give him
an error message saying he needs to be in the lower part of the workbook.

I have adjusted one of the click subs as follows:
If ActiveCell.Row < 21 Then TooHighUp Else
myCell = "A" & ActiveCell.Row
Range(myCell).Offset(0, 0).Range("A1:AJ1").Select
Selection.Interior.ColorIndex = xlNone
ActiveCell.Select


The routine TooHighUp is shown below:
Private Sub TooHighUp()
MsgBox ("You need to be in the lower part of the workbook.")
End Sub

Part of the coding is working correctly. If the user is below row 20, the
macro runs as it should, if the user is above row 20 the macro displays the
Message Box, but then the sub TooHighUp returns control to my click event and
that program runs.
How do I tell the macro to run the Sub TooHighUp and then stop?
Thanks for your help, once again.
Tofer
  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 41
Default Call Issue

Hey, Jim,

That works too.

Thanks - Tofer

"Jim Cone" wrote:

Change the first two lines to these four lines...

If ActiveCell.Row < 21 Then
TooHighUp
Exit Sub
End If
--------
Jim Cone
San Francisco, USA
http://www.realezsites.com/bus/primitivesoftware



"ToferKing"

wrote in message
I have a workbook that has ComboBoxes, InputBoxes and CommandButtons
in the top 20 rows.
I need to be able to control those items so that if a user happens to have
his cursor placed on rows 1 through 20, the buttons and boxes will give him
an error message saying he needs to be in the lower part of the workbook.

I have adjusted one of the click subs as follows:
If ActiveCell.Row < 21 Then TooHighUp Else
myCell = "A" & ActiveCell.Row
Range(myCell).Offset(0, 0).Range("A1:AJ1").Select
Selection.Interior.ColorIndex = xlNone
ActiveCell.Select


The routine TooHighUp is shown below:
Private Sub TooHighUp()
MsgBox ("You need to be in the lower part of the workbook.")
End Sub

Part of the coding is working correctly. If the user is below row 20, the
macro runs as it should, if the user is above row 20 the macro displays the
Message Box, but then the sub TooHighUp returns control to my click event and
that program runs.
How do I tell the macro to run the Sub TooHighUp and then stop?
Thanks for your help, once again.
Tofer

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
Wouldn't know what to call it! 1Fish2Fish Excel Worksheet Functions 5 August 26th 08 07:37 PM
I'm not sure what you'd call it, but is it possible to do this? nut_mom Excel Discussion (Misc queries) 3 June 28th 06 06:17 PM
Call Center Management: How to calculate 'cost per call' Denniso6 Excel Discussion (Misc queries) 2 June 25th 06 05:01 PM
Call Edmund Excel Programming 7 March 16th 06 04:44 PM
DLL Call No Name Excel Programming 1 October 16th 03 01:34 PM


All times are GMT +1. The time now is 05:03 AM.

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

About Us

"It's about Microsoft Excel"