×
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS

Log In

Come Join Us!

Are you an
Engineering professional?
Join Eng-Tips Forums!
  • 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!
  • Students Click Here

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

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Jobs

Program to open predefined files by click ....

Program to open predefined files by click ....

Program to open predefined files by click ....

(OP)
I have directory named like /bda, /bdb, /bdc, ..../bdl
in each directory I have sub-directory /bda100, , /bda1000, /bda2000, /bda3000, .... /bda16000
each directory contains files like bda13200.arf (this is in /bda13000 directory)
I want to have program that have text box and command botton and allowed me to open the file once I tape the filename.
I can use VB6 but I need help to open the exe program and routine to open directories.
any help !
(I can't access to eng-tek)

RE: Program to open predefined files by click ....

You can do what you want by using the ShellExecute command from inside a VB or VC program.  As long as the file type is defined on your system and you have the software to open it, this will work.  In fact, Windows calls ShellExecute when you double-click a filename.

RE: Program to open predefined files by click ....

(OP)
how to execute command once the exe program opened ?
Do you have code ?

RE: Program to open predefined files by click ....

I use this function to open any document with it's associated exe:

CODE

Public Function OpenDocument(DocumentWithPath As String) As Long
    OpenDocument = Shell("RUNDLL32.EXE URL.DLL,FileProtocolHandler " & DocumentWithPath, vbNormalFocus)
End Function

Good Luck
johnwm
________________________________________________________
To get the best from these forums read FAQ731-376 before posting

Steam Engine enthusiasts: www.essexsteam.co.uk

RE: Program to open predefined files by click ....

I realize that this is a late post, but you can use the DirList control to navigate to the right directory.  Along with a DriveList control and FileList control, you can get right down to the file if you like.

It will save you from having to fat finger in the directory structure, and it returns a string that you can use to populate your text box.

Good luck!


--
pansophic

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Eng-Tips Forums free from inappropriate posts.
The Eng-Tips staff will check this out and take appropriate action.

Reply To This Thread

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

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


Resources