Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 123751
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T04:20:10+00:00 2026-05-11T04:20:10+00:00

I know this is a darn simple question, but I’m very used to using

  • 0

I know this is a darn simple question, but I’m very used to using Borland and wrappers, so this is a bit of a new approach for me. Can someone simply tell me how I Can open an OpenDialog that only gets .obj files from a visual studio c++ console app?

It’s very much appreciated!

  • 1 1 Answer
  • 1 View
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T04:20:10+00:00Added an answer on May 11, 2026 at 4:20 am

    There isn’t really any difference between a console application and a GUI application, except for entry point (WinMain in a ‘GUI’ app), and a console app will have a console window opened during startup if not started from a console.

    All of the Win32 API is available, so you need to use the GetOpenFileName call, as follows:

    #define DEFAULT_EXTENSION L".obj"

    OPENFILENAME    ofn; wchar_t *FilterSpec =L"Object Files(*.obj)\0*.obj\0Text Files(*.txt)\0*.txt\0All Files(*.*)\0*.*\0"; wchar_t *Title =L"Open...."; wchar_t szFileName[MAX_PATH]; wchar_t szFileTitle[MAX_PATH]; int             Result; wchar_t filePath[MAX_PATH]; // Selected file and path  *szFileName = 0; *szFileTitle = 0;  /* fill in non-variant fields of OPENFILENAME struct. */ ofn.lStructSize       = sizeof(OPENFILENAME); ofn.hwndOwner         = GetFocus(); ofn.lpstrFilter       = FilterSpec; ofn.lpstrCustomFilter = NULL; ofn.nMaxCustFilter    = 0; ofn.nFilterIndex      = 0; ofn.lpstrFile         = szFileName; ofn.nMaxFile          = MAX_PATH; ofn.lpstrInitialDir   = L"."; // Initial directory. ofn.lpstrFileTitle    = szFileTitle; ofn.nMaxFileTitle     = MAX_PATH; ofn.lpstrTitle        = Title; ofn.lpstrDefExt   =     DEFAULT_EXTENSION;  ofn.Flags             = OFN_FILEMUSTEXIST|OFN_HIDEREADONLY;  if (!GetOpenFileName ((LPOPENFILENAME)&ofn)) {     return; // Failed or cancelled } else {     wcscpy_s(filePath,ofn.lpstrFile); } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know this question has been around, but I found answers a bit foggy,
I know this question sounds weird, but please, let me explain myself. I'm using
I know this isn't strictly a programming question but y'all must have experienced this.
I know this is a broad question, but I've inherited several poor performers and
I know this is a stupid question, but I can't find the answer anywhere.
I know this question has been asked and answered in several ways, but none
I know this question must have been covered endless of times, but I've searched
I know this is a pretty basic question, but I don't know how to
I know this is a pretty specific question but I managed to get some
I know this is a rookie question but whats actually happening with a progress

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.