Smart questions
Smart answers
Smart people
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Member Login

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips now!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

Join Tek-Tips
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

LINK TO THIS FORUM!

Add Stickiness To Your Site By Linking To This Professionally Managed Technical Forum.
Just copy and paste the
code below into your site.

Partner With Us!

"Best Of Breed" Forums Add Stickiness To Your Site
Partner Button
(Download This Button Today!)

Feedback

"...An excellent site which has quite possibly prevented me from having a mental/nervous breakdown..."

Geography

Where in the world do Tek-Tips members come from?
indswamy (Programmer)
5 Mar 09 10:26
i am trying to browse select open the file
i have error in appExcel line object value set to nothing.
could you help me

Set appExcel = CreateObject("Excel.Application")
        appExcel = Application.GetOpenFilename(FileFilter:="Excel Files (*.xls), *.xls", Title:="Please select a file")


     If appExcel Is Nothing Then
        MsgBox ("Could not open Excel.")
        Exit Sub
     End If
     
     appExcel.DisplayAlerts=false   
SkipVought (Programmer)
5 Mar 09 10:41


Hi,

CODE

  Dim appExcel as object, sName, xlWkbk as Object
  Set appExcel = CreateObject("Excel.Application")
  sName = appExcel.GetOpenFilename(FileFilter:="Excel Files (*.xls), *.xls", Title:="Please select a file")
All that GetOpenFilename does is get a STRING that is the name of a workbook.

So then...

CODE

if sName <> False then
  set xlWkbk = appExcel.Workbooks.Open(sName)
end if

 

Skip,
glassesDon't let the Diatribe...
talk you to death!tongue

glassesJust traded in my old subtlety...
for a NUANCE!tongue

indswamy (Programmer)
5 Mar 09 11:18
thanks Skip

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members!

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close