Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Office Assistant went away w/2007 - Now What?

I am not a proggrammer but what one would call a super user. Over the years,
I have created over 50 spreadsheets for my accounting department using macros
/ VBA coding. Many of these call up the office assistant to ask the user a
question or for the user to select from a choice of options. A sample is :

With Assistant.NewBalloon
.Heading = "Selecting Customer and Product"
.Text = "Select the Product Grouping you wish to view."
.CheckBoxes(1).Text = "Gasoline"
.CheckBoxes(2).Text = "Diesel"
.Button = msoButtonSetOkCancel

If .Show = msoBalloonButtonOK Then

If .CheckBoxes(1).Checked = True And .CheckBoxes(2).Checked =
False Then
Group = "Gasoline"
GoTo Line1:
ElseIf .CheckBoxes(1).Checked = False And .CheckBoxes(2).Checked
= True Then
Group = "Diesel"
GoTo Line1:
Else
Set MyBalloon = Assistant.NewBalloon

With MyBalloon
.BalloonType = msoBalloonTypeBullets
.Heading = "Selecting Customer and Product"
.Text = "You Must select only one product grouping."
.Show

End With
GoTo Line0:

End If
End If
Set MyBalloon = Assistant.NewBalloon

With MyBalloon
.BalloonType = msoBalloonTypeBullets
.Heading = "Selecting Customer and Product"
.Text = "The process has been canceled."
.Show

End With

This coding does not seem to work in Excel 2007. The good news is that we
are slowly rolling out Excel 2007. The bad news is in about six months - We
will no longer have access to Excel 2003. I can't believe that they removed
this functionility completely.

Any thought on How I can keep / create something very close to what I have?

Thanks in Advance!!
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,501
Default Office Assistant went away w/2007 - Now What?

Not really help because I've no experience of 2007 but if Microsoft have
killed off that annoying pest then that's the first good reason I've heard of
for upgrading to to it.

Mike

"Steady-Stedis" wrote:

I am not a proggrammer but what one would call a super user. Over the years,
I have created over 50 spreadsheets for my accounting department using macros
/ VBA coding. Many of these call up the office assistant to ask the user a
question or for the user to select from a choice of options. A sample is :

With Assistant.NewBalloon
.Heading = "Selecting Customer and Product"
.Text = "Select the Product Grouping you wish to view."
.CheckBoxes(1).Text = "Gasoline"
.CheckBoxes(2).Text = "Diesel"
.Button = msoButtonSetOkCancel

If .Show = msoBalloonButtonOK Then

If .CheckBoxes(1).Checked = True And .CheckBoxes(2).Checked =
False Then
Group = "Gasoline"
GoTo Line1:
ElseIf .CheckBoxes(1).Checked = False And .CheckBoxes(2).Checked
= True Then
Group = "Diesel"
GoTo Line1:
Else
Set MyBalloon = Assistant.NewBalloon

With MyBalloon
.BalloonType = msoBalloonTypeBullets
.Heading = "Selecting Customer and Product"
.Text = "You Must select only one product grouping."
.Show

End With
GoTo Line0:

End If
End If
Set MyBalloon = Assistant.NewBalloon

With MyBalloon
.BalloonType = msoBalloonTypeBullets
.Heading = "Selecting Customer and Product"
.Text = "The process has been canceled."
.Show

End With

This coding does not seem to work in Excel 2007. The good news is that we
are slowly rolling out Excel 2007. The bad news is in about six months - We
will no longer have access to Excel 2003. I can't believe that they removed
this functionility completely.

Any thought on How I can keep / create something very close to what I have?

Thanks in Advance!!

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10,124
Default Office Assistant went away w/2007 - Now What?

No one liked the little ba_ _ard anyway.

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Steady-Stedis" wrote in message
...
I am not a proggrammer but what one would call a super user. Over the
years,
I have created over 50 spreadsheets for my accounting department using
macros
/ VBA coding. Many of these call up the office assistant to ask the user
a
question or for the user to select from a choice of options. A sample is
:

With Assistant.NewBalloon
.Heading = "Selecting Customer and Product"
.Text = "Select the Product Grouping you wish to view."
.CheckBoxes(1).Text = "Gasoline"
.CheckBoxes(2).Text = "Diesel"
.Button = msoButtonSetOkCancel

If .Show = msoBalloonButtonOK Then

If .CheckBoxes(1).Checked = True And .CheckBoxes(2).Checked =
False Then
Group = "Gasoline"
GoTo Line1:
ElseIf .CheckBoxes(1).Checked = False And
.CheckBoxes(2).Checked
= True Then
Group = "Diesel"
GoTo Line1:
Else
Set MyBalloon = Assistant.NewBalloon

With MyBalloon
.BalloonType = msoBalloonTypeBullets
.Heading = "Selecting Customer and Product"
.Text = "You Must select only one product grouping."
.Show

End With
GoTo Line0:

End If
End If
Set MyBalloon = Assistant.NewBalloon

With MyBalloon
.BalloonType = msoBalloonTypeBullets
.Heading = "Selecting Customer and Product"
.Text = "The process has been canceled."
.Show

End With

This coding does not seem to work in Excel 2007. The good news is that we
are slowly rolling out Excel 2007. The bad news is in about six months -
We
will no longer have access to Excel 2003. I can't believe that they
removed
this functionility completely.

Any thought on How I can keep / create something very close to what I
have?

Thanks in Advance!!


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,494
Default Office Assistant went away w/2007 - Now What?

use a form or inputbox, as the other replies echo my sentiments.

--


Gary

"Steady-Stedis" wrote in message
...
I am not a proggrammer but what one would call a super user. Over the years,
I have created over 50 spreadsheets for my accounting department using macros
/ VBA coding. Many of these call up the office assistant to ask the user a
question or for the user to select from a choice of options. A sample is :

With Assistant.NewBalloon
.Heading = "Selecting Customer and Product"
.Text = "Select the Product Grouping you wish to view."
.CheckBoxes(1).Text = "Gasoline"
.CheckBoxes(2).Text = "Diesel"
.Button = msoButtonSetOkCancel

If .Show = msoBalloonButtonOK Then

If .CheckBoxes(1).Checked = True And .CheckBoxes(2).Checked =
False Then
Group = "Gasoline"
GoTo Line1:
ElseIf .CheckBoxes(1).Checked = False And .CheckBoxes(2).Checked
= True Then
Group = "Diesel"
GoTo Line1:
Else
Set MyBalloon = Assistant.NewBalloon

With MyBalloon
.BalloonType = msoBalloonTypeBullets
.Heading = "Selecting Customer and Product"
.Text = "You Must select only one product grouping."
.Show

End With
GoTo Line0:

End If
End If
Set MyBalloon = Assistant.NewBalloon

With MyBalloon
.BalloonType = msoBalloonTypeBullets
.Heading = "Selecting Customer and Product"
.Text = "The process has been canceled."
.Show

End With

This coding does not seem to work in Excel 2007. The good news is that we
are slowly rolling out Excel 2007. The bad news is in about six months - We
will no longer have access to Excel 2003. I can't believe that they removed
this functionility completely.

Any thought on How I can keep / create something very close to what I have?

Thanks in Advance!!



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,549
Default Office Assistant went away w/2007 - Now What?

You can use a built-in Message box or built-in Inputbox or
create a custom UserForm.
Rough examples follow for Msgbox and Input box...
'--
MsgBox "Gasoline This Time?", vbQuestion + vbYesNoCancel, "Blame Stedis"
'--
Dim strResponse As String
strResponse = InputBox("Enter G for Gasoline or D for Diesel.", "Blame the Other Guy", "Gasoline")
--
Jim Cone
Portland, Oregon USA



"Steady-Stedis"
wrote in message
I am not a proggrammer but what one would call a super user. Over the years,
I have created over 50 spreadsheets for my accounting department using macros
/ VBA coding. Many of these call up the office assistant to ask the user a
question or for the user to select from a choice of options. A sample is :

With Assistant.NewBalloon
.Heading = "Selecting Customer and Product"
.Text = "Select the Product Grouping you wish to view."
.CheckBoxes(1).Text = "Gasoline"
.CheckBoxes(2).Text = "Diesel"
.Button = msoButtonSetOkCancel

If .Show = msoBalloonButtonOK Then

If .CheckBoxes(1).Checked = True And .CheckBoxes(2).Checked =
False Then
Group = "Gasoline"
GoTo Line1:
ElseIf .CheckBoxes(1).Checked = False And .CheckBoxes(2).Checked
= True Then
Group = "Diesel"
GoTo Line1:
Else
Set MyBalloon = Assistant.NewBalloon

With MyBalloon
.BalloonType = msoBalloonTypeBullets
.Heading = "Selecting Customer and Product"
.Text = "You Must select only one product grouping."
.Show

End With
GoTo Line0:

End If
End If
Set MyBalloon = Assistant.NewBalloon

With MyBalloon
.BalloonType = msoBalloonTypeBullets
.Heading = "Selecting Customer and Product"
.Text = "The process has been canceled."
.Show

End With

This coding does not seem to work in Excel 2007. The good news is that we
are slowly rolling out Excel 2007. The bad news is in about six months - We
will no longer have access to Excel 2003. I can't believe that they removed
this functionility completely.

Any thought on How I can keep / create something very close to what I have?

Thanks in Advance!!


  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,986
Default Office Assistant went away w/2007 - Now What?

Excellent opportunity to expand your programming skills. The demise of
MACRO4.0 froced me to learn VBA. You can do things with drawing objects,
word art and the things other responders have mentioned. It can be a fun
learning experience, or a pain in the posterior, depending on the individual
attitude. Good riddance to the Office Assistant.

"Steady-Stedis" wrote:

I am not a proggrammer but what one would call a super user. Over the years,
I have created over 50 spreadsheets for my accounting department using macros
/ VBA coding. Many of these call up the office assistant to ask the user a
question or for the user to select from a choice of options. A sample is :

With Assistant.NewBalloon
.Heading = "Selecting Customer and Product"
.Text = "Select the Product Grouping you wish to view."
.CheckBoxes(1).Text = "Gasoline"
.CheckBoxes(2).Text = "Diesel"
.Button = msoButtonSetOkCancel

If .Show = msoBalloonButtonOK Then

If .CheckBoxes(1).Checked = True And .CheckBoxes(2).Checked =
False Then
Group = "Gasoline"
GoTo Line1:
ElseIf .CheckBoxes(1).Checked = False And .CheckBoxes(2).Checked
= True Then
Group = "Diesel"
GoTo Line1:
Else
Set MyBalloon = Assistant.NewBalloon

With MyBalloon
.BalloonType = msoBalloonTypeBullets
.Heading = "Selecting Customer and Product"
.Text = "You Must select only one product grouping."
.Show

End With
GoTo Line0:

End If
End If
Set MyBalloon = Assistant.NewBalloon

With MyBalloon
.BalloonType = msoBalloonTypeBullets
.Heading = "Selecting Customer and Product"
.Text = "The process has been canceled."
.Show

End With

This coding does not seem to work in Excel 2007. The good news is that we
are slowly rolling out Excel 2007. The bad news is in about six months - We
will no longer have access to Excel 2003. I can't believe that they removed
this functionility completely.

Any thought on How I can keep / create something very close to what I have?

Thanks in Advance!!

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
How I add an office assistant NERY Excel Discussion (Misc queries) 2 August 26th 09 10:33 PM
Help with Office Assistant VBA Mojo Excel Discussion (Misc queries) 1 July 20th 09 09:53 PM
how do i get the office assistant to install in office 2003? MONASTERYRN Excel Discussion (Misc queries) 1 December 15th 05 09:15 PM
Office Assistant ... SIGE Excel Programming 1 April 27th 05 06:42 PM
Office Assistant Sunflower Excel Discussion (Misc queries) 0 March 30th 05 06:51 AM


All times are GMT +1. The time now is 10:34 PM.

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"