YOU CAN CODE!

 

With The Case Of UCanCode.net  Release The Power OF  Visual C++ !   HomeProducts | PurchaseSupport | Downloads  
View in English
View in Japanese
View in
참고
View in Français
View in Italiano
View in 中文(繁體)
Download Evaluation
Pricing & Purchase?
E-XD++Visual C++/ MFC Products
Overview
Features Tour 
Electronic Form Solution
Visualization & HMI Solution
Power system HMI Solution
CAD Drawing and Printing Solution

Bar code labeling Solution
Workflow Solution

Coal industry HMI Solution
Instrumentation Gauge Solution

Report Printing Solution
Graphical modeling Solution
GIS mapping solution

Visio graphics solution
Industrial control SCADA &HMI Solution
BPM business process Solution

Industrial monitoring Solution
Flowchart and diagramming Solution
Organization Diagram Solution

Graphic editor Source Code
UML drawing editor Source Code
Map Diagramming Solution

Architectural Graphic Drawing Solution
Request Evaluation
Purchase
ActiveX COM Products
Overview
Download
Purchase
Technical Support
  General Q & A
Discussion Board
Contact Us

Links

Get Ready to Unleash the Power of UCanCode .NET


UCanCode Software focuses on general application software development. We provide complete solution for developers. No matter you want to develop a simple database workflow application, or an large flow/diagram based system, our product will provide a complete solution for you. Our product had been used by hundreds of top companies around the world!

"100% source code provided! Free you from not daring to use components because of unable to master the key technology of components!"


Visual C++ Addin: CFileDialog AddIn, Download Example

 
 By Chuck Conn

Environment: Visual Studio 6

Description

I really liked the idea of the CFileDialog macro posted here, but the interface was somewhat lacking versus the nice addin's I've gotten in the past. So using this idea I created an addin for myself and thought I would share. I tried to use the same type of interface as that of the MessageBox addin that is so nice and posted here. Enjoy!

Usage

Set all options you want then click "Copy to Clipboard" and paste into your .cpp file.

Example

Using the settings in the above image will output:
CFileDialog cFileDlg (
   TRUE,
   (LPCTSTR)NULL,
   _T("Initial Filename"),
   OFN_ENABLESIZING|OFN_ENABLEHOOK|OFN_EXPLORER|OFN_LONGNAMES|
           OFN_OVERWRITEPROMPT|OFN_CREATEPROMPT,
   _T("All Files (*.*)|*.*|"),
   this );
   cFileDlg.m_ofn.lpstrTitle = _T("Your Title Here!");
   // TODO: set the hook function
   //cFileDlg.m_ofn.lpfnHook = ;

Installing the Add-In

To install the add-in, follow these steps:
  1. Unzip the .dll file to the addin folder (default is \program files\microsoft visual studio\Common\MSDev98\AddIns)
  2. Go to Tools menu, Customize
  3. Go to the "Add-ins and Macro Files" tab
  4. Select the "CFileDialog AddIn" add-in and assign it to a hot key or put on a toolbar

Downloads

Download compiled dll - [18] Kb
Download source - [26] Kb

 

 

 

Copyright ?1998-2024 UCanCode.Net Software , all rights reserved.
Other product and company names herein may be the trademarks of their respective owners.

Please direct your questions or comments to webmaster@ucancode.net