Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Opening Different Programs using Excel.


I am not sure whether this is possible or not. I have created a front
end screen so that I can open a series of spreadsheets I need
throughout the day. However, there are a couple of problems I need help
with.

1) Is it possible to open a 'Project' file using this front end?
2) Is it possible I can create it so that just the front end comes up
rather than the spreadsheet it was created on.

Any help would be much appreciated.


--
ronaldo444
------------------------------------------------------------------------
ronaldo444's Profile: http://www.excelforum.com/member.php...o&userid=36233
View this thread: http://www.excelforum.com/showthread...hreadid=564672

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default Opening Different Programs using Excel.

When you say a front end screen do you mean a User Form in Excel?


ronaldo444 wrote:
I am not sure whether this is possible or not. I have created a front
end screen so that I can open a series of spreadsheets I need
throughout the day. However, there are a couple of problems I need help
with.

1) Is it possible to open a 'Project' file using this front end?
2) Is it possible I can create it so that just the front end comes up
rather than the spreadsheet it was created on.

Any help would be much appreciated.


--
ronaldo444
------------------------------------------------------------------------
ronaldo444's Profile: http://www.excelforum.com/member.php...o&userid=36233
View this thread: http://www.excelforum.com/showthread...hreadid=564672


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Opening Different Programs using Excel.


Yes, I am sorry if it was not clear. It's just that i need to get this
sorted fairly soon as I am due to take on a managerial role at work and
I will need to use these spreadsheets a lot.


--
ronaldo444
------------------------------------------------------------------------
ronaldo444's Profile: http://www.excelforum.com/member.php...o&userid=36233
View this thread: http://www.excelforum.com/showthread...hreadid=564672

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 82
Default Opening Different Programs using Excel.

Never tried it with Project, but here's some code that I use to open an MS
Access database. Might give you an idea. You might have to modify the
"oApp.OpenCurrentDatabase" line to suit MS Project.

Sub OpenAccess()

Dim LPath As String
Dim LCategoryID As Long

Application.DisplayAlerts = False


'Path to Access database
LPath = "C:\Reporting.mdb"

'Open Access and make visible
Set oApp = CreateObject("Access.Application")
oApp.Visible = True

'Open Access database as defined by LPath variable
oApp.OpenCurrentDatabase LPath

'Open form called Categories filtering by CategoryID
'LCategoryID = Range("A2").Value
'oApp.DoCmd.OpenForm "Categories", , , "CategoryID = " & LCategoryID

Application.DisplayAlerts = True

End Sub
--
HTH

JonR


"ronaldo444" wrote:


I am not sure whether this is possible or not. I have created a front
end screen so that I can open a series of spreadsheets I need
throughout the day. However, there are a couple of problems I need help
with.

1) Is it possible to open a 'Project' file using this front end?
2) Is it possible I can create it so that just the front end comes up
rather than the spreadsheet it was created on.

Any help would be much appreciated.


--
ronaldo444
------------------------------------------------------------------------
ronaldo444's Profile: http://www.excelforum.com/member.php...o&userid=36233
View this thread: http://www.excelforum.com/showthread...hreadid=564672


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
Problem opening excel files from email DXC001 Excel Discussion (Misc queries) 1 October 3rd 05 07:56 PM
Keep Excel from opening new instance widman Excel Discussion (Misc queries) 7 October 1st 05 01:53 AM
opening different programs with excel macro buttons shrek Excel Worksheet Functions 0 September 30th 05 12:41 PM
Opening multiple Excel files that contain varied selected sheets MLBrownewell Excel Worksheet Functions 0 September 14th 05 05:48 PM
Opening an Excel file Sheldon Zaklow Excel Discussion (Misc queries) 0 March 3rd 05 10:29 PM


All times are GMT +1. The time now is 02:56 PM.

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"