1676e can EXCEL file sick on the FORM?
Sign Up |  Live StatsLive Stats    Articles 37,315| Comments 177,120| Members 19,399, Newest hsingh777| Online 479
Home Contact
 (Forgotten?): 
    Sikhism
    For best SPN experience, use Firefox Internet Browser!


                                                                   Your Banner Here!    




can EXCEL file sick on the FORM?

Our Donation Goal : Why Donate? : Donate Today! : Donate Anonymously (ਗੁਪਤ) : Our Family of Supporters
Goal this month: 500 USD, Received: 115 USD (23%)
Please Donate...
     
Related Topics...
Thread Thread Starter Forum Replies Last Post
Importing excel file into Access Robert Information Technology 0 28-Jul-2006 08:42 AM
Open Excel Template File? dogmelissa Information Technology 2 28-Jul-2006 08:02 AM
Re: #Name? error message when linking Excel file Ron2006 Information Technology 0 28-Jul-2006 08:00 AM
I want to attach an Excel file on the Access Form Martin Information Technology 2 05-Nov-2005 12:48 PM
Re: how to execute SQL query in excel file Junior728 Information Technology 2 03-Nov-2005 11:34 AM


Tags
excel, file, sick, form
Reply Post New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!
  #1 (permalink)  
Old 28-Jul-2006, 08:14 AM
Martin \(Martin Lee\)'s Avatar Martin \(Martin Lee\)
Guest
 
Posts: n/a
   
   
can EXCEL file sick on the FORM?

  Donate Today!   Email to Friend  Tell a Friend   Show Printable Version  Print   Contact sikhphilosophy.net Administraion for any Suggestions, Ideas, Feedback.  Feedback  

Register to Remove Advertisements
How can I "stick" one of my own WORD file or EXCEL file on an ACCESS FORM ?

When the users open this FORM, they only need to click the WORD(or EXCEL)
icon to open my WORD or EXCEL file.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/information-technology/10651-can-excel-file-sick-on-form.html

Thanks!



*







Got anything to share on This Topic? Why not share your immediate thoughts/reaction with us! Login Now! or Sign Up Today! to share your views... Gurfateh!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 28-Jul-2006, 08:14 AM
Arthur's Avatar Arthur
Guest
 
Posts: n/a
   
   
Re: can EXCEL file sick on the FORM?


Ayon kay Martin (Martin Lee):
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=10651
> How can I "stick" one of my own WORD file or EXCEL file on an ACCESS FORM ?
>
> When the users open this FORM, they only need to click the WORD(or EXCEL)
> icon to open my WORD or EXCEL file.
>
> Thanks!


hi martin,

you can open an excel file using this vba.
say you have a commandbutton, copy and paste the
code below to the click event of that button.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=10651

Dim ExcelApp As Object
Set ExcelApp = CreateObject("Excel.Application")
Shell ExcelApp.Path & "\excel.exe " & "C:\book1.xls"
Set ExcelApp = Nothing

you have to replace "C:\book1.xls" with the path of your
excel file.

if you would like to open a word document use this instead

Dim WordApp As Object
Set WordApp = CreateObject("Word.Application")
Shell WordApp.Path & "\winword.exe " & "C:\arthur.doc"
Set WordApp = Nothing

HTH

Reply With Quote
  #3 (permalink)  
Old 28-Jul-2006, 08:14 AM
Martin \(Martin Lee\)'s Avatar Martin \(Martin Lee\)
Guest
 
Posts: n/a
   
   
Re: can EXCEL file sick on the FORM?

No, this is not I want. I want the EXCEL file be carried by the ACESS file.
So that I could send e-mail to my friends only attach one ACCESS file (which
contain the EXCEL file in it).

Thanks anyway.

Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=10651
"Arthur"
??????:1149138185.018655.102220@i40g2000cwc.google groups.com...
>
> Ayon kay Martin (Martin Lee):
>> How can I "stick" one of my own WORD file or EXCEL file on an ACCESS FORM
>> ?
>>
>> When the users open this FORM, they only need to click the WORD(or EXCEL)
>> icon to open my WORD or EXCEL file.
>>
>> Thanks!

>
> hi martin,
>
> you can open an excel file using this vba.
> say you have a commandbutton, copy and paste the
> code below to the click event of that button.
>
> Dim ExcelApp As Object
> Set ExcelApp = CreateObject("Excel.Application")
> Shell ExcelApp.Path & "\excel.exe " & "C:\book1.xls"
> Set ExcelApp = Nothing
>
> you have to replace "C:\book1.xls" with the path of your
> excel file.
>
> if you would like to open a word document use this instead
>
> Dim WordApp As Object
> Set WordApp = CreateObject("Word.Application")
> Shell WordApp.Path & "\winword.exe " & "C:\arthur.doc"
> Set WordApp = Nothing
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=10651
>
> HTH
>



Reply With Quote
  #4 (permalink)  
Old 28-Jul-2006, 08:14 AM
Arthur's Avatar Arthur
Guest
 
Posts: n/a
   
   
Re: can EXCEL file sick on the FORM?

Hi martin

Use the Unbound Object Frame.

Create a form in design view then
add a unbound Object frame in that form
then a wizard will be prompted to you.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=10651
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=10651

in that wizard choose "Create from files"
then browse for the file you want to embed
and dont forget to checked the "Display as Icon"

then after you have added the control you need to
set its property

special effect = flat
back color = same with back color of the form
border color = same with back color of the form
enabled = Yes


after that run the form
double click the icon.

hope this will help

Reply With Quote
  #5 (permalink)  
Old 28-Jul-2006, 08:14 AM
Martin \(Martin Lee\)'s Avatar Martin \(Martin Lee\)
Guest
 
Posts: n/a
   
   
Re: can EXCEL file sick on the FORM?

  Donate Today!  
Thank you!
This two attribute is extremely easy to forget:

enabled = Yes
lock = No

"Arthur"
??????:1149141842.299055.271960@g10g2000cwb.google groups.com...
> Hi martin
>
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=10651
> Use the Unbound Object Frame.
>
> Create a form in design view then
> add a unbound Object frame in that form
> then a wizard will be prompted to you.
>
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=10651
> in that wizard choose "Create from files"
> then browse for the file you want to embed
> and dont forget to checked the "Display as Icon"
>
> then after you have added the control you need to
> set its property
>
> special effect = flat
> back color = same with back color of the form
> border color = same with back color of the form
> enabled = Yes
>
>
> after that run the form
> double click the icon.
>
> hope this will help
>



Reply With Quote
   Click Here to Donate Now!

Support Us!
Become a Promoter!
Gurfateh ji, you can become a SPN Promoter by Donating as little as $10 each month. With limited resources & high operational costs, your donations make it possible for us to deliver a quality website and spread the teachings of the Sri Guru Granth Sahib Ji, to serve & uplift humanity. Every contribution counts. Donate Generously. Gurfateh!
ReplyPost New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!

Bookmarks


(View-All Members who have read this thread : 0
There are no names to display.

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Tools Search
Search:

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 On
Trackbacks are On
Pingbacks are On
Refbacks are On

» Active Discussions
Rozana Reports (ਪੰਜਾਬੀ...
Today 01:46 AM
304 Replies, 7,464 Views
Thought of the Moment!
Today 01:46 AM
108 Replies, 5,065 Views
30 Day Amrit Vel 'a'...
Today 01:27 AM
25 Replies, 162 Views
Sikh Spokesman (ਪੰਜਾਬੀ...
Today 01:18 AM
173 Replies, 4,353 Views
Should SPN Keep the...
Today 01:07 AM
18 Replies, 475 Views
Student Compares Toilet...
Today 01:05 AM
1 Replies, 18 Views
What Do You Think of...
Today 00:53 AM
34 Replies, 596 Views
Amrit
Yesterday 23:38 PM
4 Replies, 334 Views
What I believe Hukam to...
Yesterday 23:36 PM
12 Replies, 97 Views
Map shows world's 'most...
Yesterday 18:58 PM
16 Replies, 265 Views
Do you believe in...
Yesterday 13:15 PM
180 Replies, 3,765 Views
BHOOTS (Ghosts) and...
Yesterday 13:08 PM
102 Replies, 13,879 Views
How does Sikhi help you...
Yesterday 12:44 PM
17 Replies, 637 Views
Why are There so Many...
Yesterday 10:23 AM
70 Replies, 5,044 Views
Biography of a Scholar:...
Yesterday 06:10 AM
1 Replies, 73 Views
» Books You Should Read...
Powered by vBadvanced CMPS v3.2.3
All times are GMT +6.5. The time now is 01:53 AM.
Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2013, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2 Copyright © 2004-12, All Rights Reserved. Sikh Philosophy Network


Page generated in 0.46219 seconds with 32 queries
0