LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11
Default .XLT with user programming not working through Intranet.

I have .XLT file with a sheet that I have placed a button on that saves the
file with a specific name and folder location.
In a stand alone setting on our network drive it works fine.
If I point to it through the our intranet using the same mapped drive, it
does nothing when I click the button.
I assume the problem is because it is opening inside IE but I have very
little experience with web stuff so I have no idea how to troubleshoot this.

Here is the code that gets executed when I click the Save And Exit Button

Private Sub btnSaveAndExit_Click()

Dim DT As Date
Dim strProjectDescription As String
Dim strProjectNumber As String
Dim strProjectFolder As String
Dim strInitials As String
Dim strDate As String

DT = Date

strDate = Format(DT, "dd-mmm-yy")
strProjectDescription = Range("c15")
strProjectNumber = Range("H5")
strProjectFolder = Replace(UCase(strProjectNumber), ".S.", "_")
strInitials = GetInitials()

ActiveWorkbook.Close SaveChanges:=True, Filename:="G:\Projects\" &
strProjectFolder & "\wp\PS" & strProjectFolder & "_" & strDate & "_" &
strInitials & ".xls"

End Sub

Any Ideas?

Thanks

Steve


 
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
formula not working when opened by another user K Excel Discussion (Misc queries) 0 October 27th 08 03:18 PM
Formula only working for 1 user on 1 computer shebe Excel Discussion (Misc queries) 3 February 29th 08 06:01 PM
ComboBox programming not working DontKnowWhatImDoing Excel Programming 2 April 15th 04 02:43 PM
NEED HELP PROGRAMMING EXCEL TO AUTHENTICATE EXCEL USER ID AND LICENSE NUMBER WHEN TEMPLATES ARE USED Marcello do Guzman Excel Programming 1 August 21st 03 03:40 AM
User-Defined function not working Guy Gagnon Excel Programming 3 July 14th 03 03:26 AM


All times are GMT +1. The time now is 10:08 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"