WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

 
 
Thread Tools Rate Thread Display Modes
Prev Previous Post   Next Post Next
  #3  
Old 06-27-2006, 11:30 PM
tobin tobin is offline
WorldViz Team Member
 
Join Date: Feb 2003
Posts: 251
Vizard comes standard with pythonwin's win32api, win32gui, and win32ui modules. To do what you're looking for, simply:

Code:
import win32ui

inFileDlg = win32ui.CreateFileDialog(1, '', 'foo.txt')
inFileDlg.DoModal()

outFileDlg = win32ui.CreateFileDialog(0, '', 'foo.doc')
outFileDlg.DoModal()

inFileName  = inFileDlg.GetPathName()
outFileName = outFileDlg.GetPathName()

print inFileName
print outFileName
You can find more detailed doc on the win32ui methods here:

http://aspn.activestate.com/ASPN/doc...2/win32ui.html
Reply With Quote
 

Thread Tools
Display Modes Rate This Thread
Rate This Thread:

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

Forum Jump


All times are GMT -7. The time now is 04:12 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Copyright 2002-2023 WorldViz LLC