If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > PC based Database Applications > Microsoft Excel > Using differant PC's

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 04-27-04, 22:44
allmad allmad is offline
Registered User
 
Join Date: Mar 2004
Posts: 13
Using differant PC's

When I write something in vb it put the link in from were the file is

ie
__________________________________________________ _____________
Private Sub CommandButton1_Click()
ChDir "C:\Documents and Settings\Mad1\Desktop\New Folder"
Workbooks.Open Filename:= _
"C:\Documents and Settings\Mad1\Desktop\New Folder\Week One.xls"
Sheets("Home W1").Select
End Sub
__________________________________________________ _____________

how can I put this onto another PC so it doesnt look for my PC, it just looks in the folder were the files are

Mark
Reply With Quote
  #2 (permalink)  
Old 04-27-04, 22:51
Smitty Smitty is offline
Registered User
 
Join Date: Dec 2003
Location: San Diego, CA
Posts: 153
I use the All Users Profile:
Code:
"C:\Documents and Settings\All Users\Desktop\New Folder\Week One.xls"
'  Sheets("Home W1").Select
'  Edit: No need to select
   Application.Goto Reference:=['Home'!W1]
End Sub
Just make sure that you code it to save there.

Hope that helps,

Smitty

Last edited by Smitty; 04-27-04 at 22:53.
Reply With Quote
  #3 (permalink)  
Old 04-28-04, 14:22
allmad allmad is offline
Registered User
 
Join Date: Mar 2004
Posts: 13
Thx

Yes that helps thank you
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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