DlgDirSelectComboBoxExA
関数シグネチャ
// USER32.dll (ANSI / -A)
#include <windows.h>
BOOL DlgDirSelectComboBoxExA(
HWND hwndDlg,
LPSTR lpString,
INT cchOut,
INT idComboBox
);パラメーター
| 名前 | 型 | 方向 | 説明 |
|---|---|---|---|
| hwndDlg | HWND | in | コンボボックスを含むダイアログボックスへのハンドル。 |
| lpString | LPSTR | out | 選択されたパスを受け取るバッファーへのポインター。 |
| cchOut | INT | in | lpString パラメーターが指すバッファーの長さ(文字数)。 |
| idComboBox | INT | in | ダイアログボックス内のコンボボックスコントロールの整数識別子。 |
戻り値の型: BOOL
公式ドキュメント
DlgDirListComboBox 関数によって内容が設定されたコンボボックスから、現在の選択項目を取得します。選択項目はドライブ文字、ファイル、またはディレクトリ名として解釈されます。(ANSI)
戻り値
Type: BOOL
現在の選択項目がディレクトリ名である場合、戻り値は 0 以外になります。
現在の選択項目がディレクトリ名でない場合、戻り値は 0 になります。拡張エラー情報を取得するには、GetLastError を呼び出してください。
解説(Remarks)
現在の選択項目がディレクトリ名またはドライブ文字を指定している場合、DlgDirSelectComboBoxEx 関数は囲んでいる角かっこ(ドライブ文字の場合はハイフンも)を取り除き、その名前または文字を新しいパスやファイル名に挿入できる状態にします。選択項目がない場合、lpString が指すバッファーの内容は変更されません。
DlgDirSelectComboBoxEx 関数では、コンボボックスから複数のファイル名を返すことはできません。
文字列がバッファーと同じ長さか、それより長い場合、バッファーには終端の null 文字を含む切り詰められた文字列が格納されます。
DlgDirSelectComboBoxEx はコンボボックスに CB_GETCURSEL および CB_GETLBTEXT メッセージを送信します。
この関数は、3 種類すべてのコンボボックス(CBS_SIMPLE、CBS_DROPDOWN、および CBS_DROPDOWNLIST)で使用できます。
Security Warning: この関数を不適切に使用すると、アプリケーションに問題が生じる可能性があります。たとえば、nCount パラメーターは ANSI 版と Unicode 版の両方で適切に設定する必要があります。これを怠るとバッファーオーバーフローを引き起こすおそれがあります。続行する前に Security Considerations: Microsoft Windows Controls を確認してください。
Windows 95 以降: DlgDirSelectComboBoxExW は Microsoft Layer for Unicode (MSLU) によってサポートされています。これを使用するには、Microsoft Layer for Unicode on Windows Me/98/95 Systems で説明されているように、特定のファイルをアプリケーションに追加する必要があります。
winuser.h ヘッダーは DlgDirSelectComboBoxEx を、UNICODE プリプロセッサ定数の定義に基づいてこの関数の ANSI 版または Unicode 版を自動的に選択するエイリアスとして定義しています。エンコーディング中立のエイリアスの使用を、エンコーディング中立でないコードと混在させると、不一致が生じてコンパイルエラーや実行時エラーを引き起こす可能性があります。詳細については、Conventions for Function Prototypes を参照してください。
Microsoft 公式リファレンス: 英語 (en-us) · 日本語 (ja-jp) · 原文ソース (GitHub)
各言語での呼び出し定義
// USER32.dll (ANSI / -A)
#include <windows.h>
BOOL DlgDirSelectComboBoxExA(
HWND hwndDlg,
LPSTR lpString,
INT cchOut,
INT idComboBox
);[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("USER32.dll", CharSet = CharSet.Ansi, SetLastError = true, ExactSpelling = true)]
static extern bool DlgDirSelectComboBoxExA(
IntPtr hwndDlg, // HWND
[MarshalAs(UnmanagedType.LPStr)] System.Text.StringBuilder lpString, // LPSTR out
int cchOut, // INT
int idComboBox // INT
);<DllImport("USER32.dll", CharSet:=CharSet.Ansi, SetLastError:=True, ExactSpelling:=True)>
Public Shared Function DlgDirSelectComboBoxExA(
hwndDlg As IntPtr, ' HWND
<MarshalAs(UnmanagedType.LPStr)> lpString As System.Text.StringBuilder, ' LPSTR out
cchOut As Integer, ' INT
idComboBox As Integer ' INT
) As <MarshalAs(UnmanagedType.Bool)> Boolean
End Function' hwndDlg : HWND
' lpString : LPSTR out
' cchOut : INT
' idComboBox : INT
Declare PtrSafe Function DlgDirSelectComboBoxExA Lib "user32" ( _
ByVal hwndDlg As LongPtr, _
ByVal lpString As String, _
ByVal cchOut As Long, _
ByVal idComboBox As Long) As Long
' VBA7前提(PtrSafe)。32bit Office では LongPtr→Long。Integer=16bit / Long=32bit / LongLong=64bit。import ctypes
from ctypes import wintypes
DlgDirSelectComboBoxExA = ctypes.windll.user32.DlgDirSelectComboBoxExA
DlgDirSelectComboBoxExA.restype = wintypes.BOOL
DlgDirSelectComboBoxExA.argtypes = [
wintypes.HANDLE, # hwndDlg : HWND
wintypes.LPSTR, # lpString : LPSTR out
ctypes.c_int, # cchOut : INT
ctypes.c_int, # idComboBox : INT
]
# GetLastError: use ctypes.GetLastError() (or ctypes.WinDLL(use_last_error=True))require 'fiddle'
require 'fiddle/import'
lib = Fiddle.dlopen('USER32.dll')
DlgDirSelectComboBoxExA = Fiddle::Function.new(
lib['DlgDirSelectComboBoxExA'],
[
Fiddle::TYPE_VOIDP, # hwndDlg : HWND
Fiddle::TYPE_VOIDP, # lpString : LPSTR out
Fiddle::TYPE_INT, # cchOut : INT
Fiddle::TYPE_INT, # idComboBox : INT
],
Fiddle::TYPE_INT)#[link(name = "user32")]
extern "system" {
fn DlgDirSelectComboBoxExA(
hwndDlg: *mut core::ffi::c_void, // HWND
lpString: *mut u8, // LPSTR out
cchOut: i32, // INT
idComboBox: i32 // INT
) -> i32;
}
// crates: windows-sys provides ready-made bindings for this API.$sig = @"
[return: MarshalAs(UnmanagedType.Bool)]
[DllImport("USER32.dll", CharSet = CharSet.Ansi, SetLastError = true)]
public static extern bool DlgDirSelectComboBoxExA(IntPtr hwndDlg, [MarshalAs(UnmanagedType.LPStr)] System.Text.StringBuilder lpString, int cchOut, int idComboBox);
"@
$api = Add-Type -MemberDefinition $sig -Name 'USER32_DlgDirSelectComboBoxExA' -Namespace Win32 -PassThru
# $api::DlgDirSelectComboBoxExA(hwndDlg, lpString, cchOut, idComboBox)#uselib "USER32.dll"
#func global DlgDirSelectComboBoxExA "DlgDirSelectComboBoxExA" sptr, sptr, sptr, sptr
; DlgDirSelectComboBoxExA hwndDlg, varptr(lpString), cchOut, idComboBox ; 戻り値は stat
; hwndDlg : HWND -> "sptr"
; lpString : LPSTR out -> "sptr"
; cchOut : INT -> "sptr"
; idComboBox : INT -> "sptr"
; ※HSP3.7は #func のため戻り値はシステム変数 stat に格納されます。#uselib "USER32.dll" #cfunc global DlgDirSelectComboBoxExA "DlgDirSelectComboBoxExA" sptr, var, int, int ; res = DlgDirSelectComboBoxExA(hwndDlg, lpString, cchOut, idComboBox) ; hwndDlg : HWND -> "sptr" ; lpString : LPSTR out -> "var" ; cchOut : INT -> "int" ; idComboBox : INT -> "int" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。#uselib "USER32.dll" #cfunc global DlgDirSelectComboBoxExA "DlgDirSelectComboBoxExA" sptr, sptr, int, int ; res = DlgDirSelectComboBoxExA(hwndDlg, varptr(lpString), cchOut, idComboBox) ; hwndDlg : HWND -> "sptr" ; lpString : LPSTR out -> "sptr" ; cchOut : INT -> "int" ; idComboBox : INT -> "int" ; ※出力/バッファ引数はポインタ方式(token=sptr / 呼び出しは varptr(変数))。
; BOOL DlgDirSelectComboBoxExA(HWND hwndDlg, LPSTR lpString, INT cchOut, INT idComboBox) #uselib "USER32.dll" #cfunc global DlgDirSelectComboBoxExA "DlgDirSelectComboBoxExA" intptr, var, int, int ; res = DlgDirSelectComboBoxExA(hwndDlg, lpString, cchOut, idComboBox) ; hwndDlg : HWND -> "intptr" ; lpString : LPSTR out -> "var" ; cchOut : INT -> "int" ; idComboBox : INT -> "int" ; ※出力/バッファ引数は var 方式(変数を直接渡す)。varptr 方式にも切替可。; BOOL DlgDirSelectComboBoxExA(HWND hwndDlg, LPSTR lpString, INT cchOut, INT idComboBox) #uselib "USER32.dll" #cfunc global DlgDirSelectComboBoxExA "DlgDirSelectComboBoxExA" intptr, intptr, int, int ; res = DlgDirSelectComboBoxExA(hwndDlg, varptr(lpString), cchOut, idComboBox) ; hwndDlg : HWND -> "intptr" ; lpString : LPSTR out -> "intptr" ; cchOut : INT -> "int" ; idComboBox : INT -> "int" ; ※出力/バッファ引数はポインタ方式(token=intptr / 呼び出しは varptr(変数))。
import (
"golang.org/x/sys/windows"
"unsafe"
)
var (
user32 = windows.NewLazySystemDLL("USER32.dll")
procDlgDirSelectComboBoxExA = user32.NewProc("DlgDirSelectComboBoxExA")
)
// hwndDlg (HWND), lpString (LPSTR out), cchOut (INT), idComboBox (INT)
r1, _, err := procDlgDirSelectComboBoxExA.Call(
uintptr(hwndDlg),
uintptr(lpString),
uintptr(cchOut),
uintptr(idComboBox),
)
_ = err // syscall.Errno (valid when the call sets last-error)
_ = r1 // BOOLfunction DlgDirSelectComboBoxExA(
hwndDlg: THandle; // HWND
lpString: PAnsiChar; // LPSTR out
cchOut: Integer; // INT
idComboBox: Integer // INT
): BOOL; stdcall;
external 'USER32.dll' name 'DlgDirSelectComboBoxExA';result := DllCall("USER32\DlgDirSelectComboBoxExA"
, "Ptr", hwndDlg ; HWND
, "Ptr", lpString ; LPSTR out
, "Int", cchOut ; INT
, "Int", idComboBox ; INT
, "Int") ; return: BOOL●DlgDirSelectComboBoxExA(hwndDlg, lpString, cchOut, idComboBox) = DLL("USER32.dll", "bool DlgDirSelectComboBoxExA(void*, char*, int, int)")
# 呼び出し: DlgDirSelectComboBoxExA(hwndDlg, lpString, cchOut, idComboBox)
# hwndDlg : HWND -> "void*"
# lpString : LPSTR out -> "char*"
# cchOut : INT -> "int"
# idComboBox : INT -> "int"
# なでしこ1は32bit・ANSI(Shift_JIS)。文字列=char*(ANSI)、ポインタ/ハンドル=void*(4byte)。const std = @import("std");
extern "user32" fn DlgDirSelectComboBoxExA(
hwndDlg: ?*anyopaque, // HWND
lpString: [*c]u8, // LPSTR out
cchOut: i32, // INT
idComboBox: i32 // INT
) callconv(std.os.windows.WINAPI) i32;proc DlgDirSelectComboBoxExA(
hwndDlg: pointer, # HWND
lpString: ptr char, # LPSTR out
cchOut: int32, # INT
idComboBox: int32 # INT
): int32 {.importc: "DlgDirSelectComboBoxExA", stdcall, dynlib: "USER32.dll".}pragma(lib, "user32");
extern(Windows)
int DlgDirSelectComboBoxExA(
void* hwndDlg, // HWND
char* lpString, // LPSTR out
int cchOut, // INT
int idComboBox // INT
);ccall((:DlgDirSelectComboBoxExA, "USER32.dll"), stdcall, Int32,
(Ptr{Cvoid}, Ptr{UInt8}, Int32, Int32),
hwndDlg, lpString, cchOut, idComboBox)
# hwndDlg : HWND -> Ptr{Cvoid}
# lpString : LPSTR out -> Ptr{UInt8}
# cchOut : INT -> Int32
# idComboBox : INT -> Int32
# stdcall は 32bit のみ意味を持つ(x64 では無視)。local ffi = require("ffi")
ffi.cdef[[
int32_t DlgDirSelectComboBoxExA(
void* hwndDlg,
char* lpString,
int32_t cchOut,
int32_t idComboBox);
]]
local user32 = ffi.load("user32")
-- user32.DlgDirSelectComboBoxExA(hwndDlg, lpString, cchOut, idComboBox)
-- hwndDlg : HWND
-- lpString : LPSTR out
-- cchOut : INT
-- idComboBox : INT
-- 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。const koffi = require('koffi');
const lib = koffi.load('USER32.dll');
const DlgDirSelectComboBoxExA = lib.func('__stdcall', 'DlgDirSelectComboBoxExA', 'int32_t', ['void *', 'char *', 'int32_t', 'int32_t']);
// DlgDirSelectComboBoxExA(hwndDlg, lpString, cchOut, idComboBox)
// hwndDlg : HWND -> 'void *'
// lpString : LPSTR out -> 'char *'
// cchOut : INT -> 'int32_t'
// idComboBox : INT -> 'int32_t'
// 出力ポインタは koffi.out(...) で包む。構造体は koffi.struct で定義。const lib = Deno.dlopen("USER32.dll", {
DlgDirSelectComboBoxExA: { parameters: ["pointer", "buffer", "i32", "i32"], result: "i32" },
});
// lib.symbols.DlgDirSelectComboBoxExA(hwndDlg, lpString, cchOut, idComboBox)
// hwndDlg : HWND -> "pointer"
// lpString : LPSTR out -> "buffer"
// cchOut : INT -> "i32"
// idComboBox : INT -> "i32"
// 文字列は "buffer"。ANSI(-A) は new TextEncoder() で UTF-8/ANSI バイト列(末尾に \x00)を渡す。
// 値渡し構造体は { struct: [ ...field types... ] } を使用。<?php
$ffi = FFI::cdef(<<<C
int32_t DlgDirSelectComboBoxExA(
void* hwndDlg,
char* lpString,
int32_t cchOut,
int32_t idComboBox);
C, "USER32.dll");
// $ffi->DlgDirSelectComboBoxExA(hwndDlg, lpString, cchOut, idComboBox);
// hwndDlg : HWND
// lpString : LPSTR out
// cchOut : INT
// idComboBox : INT
// 構造体/GUIDへのポインタは cdef が通るよう void* で表記(実型は各引数コメント参照)。値渡し構造体・enum は対応する typedef を cdef に追加すること。
// WINAPI(stdcall): x64 では呼出規約が統一されるため問題なし。x86 では __stdcall 対応のラッパが必要な場合あり。import com.sun.jna.*;
import com.sun.jna.ptr.*;
import com.sun.jna.win32.StdCallLibrary;
import com.sun.jna.win32.W32APIOptions;
public interface User32 extends StdCallLibrary {
User32 INSTANCE = Native.load("user32", User32.class, W32APIOptions.ASCII_OPTIONS);
boolean DlgDirSelectComboBoxExA(
Pointer hwndDlg, // HWND
byte[] lpString, // LPSTR out
int cchOut, // INT
int idComboBox // INT
);
}@[Link("user32")]
lib LibUSER32
fun DlgDirSelectComboBoxExA = DlgDirSelectComboBoxExA(
hwndDlg : Void*, # HWND
lpString : UInt8*, # LPSTR out
cchOut : Int32, # INT
idComboBox : Int32 # INT
) : Int32
end
# 構造体/GUID/enum は lib 内に対応する型定義が必要。
# 呼出規約: x64 は規約統一のため OK。x86(32bit)は WINAPI=stdcall だが Crystal の fun に stdcall 付与構文がなく非対応。import 'dart:ffi';
import 'package:ffi/ffi.dart';
typedef DlgDirSelectComboBoxExANative = Int32 Function(Pointer<Void>, Pointer<Utf8>, Int32, Int32);
typedef DlgDirSelectComboBoxExADart = int Function(Pointer<Void>, Pointer<Utf8>, int, int);
final DlgDirSelectComboBoxExA = DynamicLibrary.open('USER32.dll')
.lookupFunction<DlgDirSelectComboBoxExANative, DlgDirSelectComboBoxExADart>('DlgDirSelectComboBoxExA');
// hwndDlg : HWND -> Pointer<Void>
// lpString : LPSTR out -> Pointer<Utf8>
// cchOut : INT -> Int32
// idComboBox : INT -> Int32
// 文字列は package:ffi の "...".toNativeUtf16()/toNativeUtf8() で変換。{$mode objfpc}{$H+}
function DlgDirSelectComboBoxExA(
hwndDlg: THandle; // HWND
lpString: PAnsiChar; // LPSTR out
cchOut: Integer; // INT
idComboBox: Integer // INT
): BOOL; stdcall;
external 'USER32.dll' name 'DlgDirSelectComboBoxExA';import Foreign
import Foreign.C.Types
import Foreign.C.String
foreign import stdcall safe "DlgDirSelectComboBoxExA"
c_DlgDirSelectComboBoxExA :: Ptr () -> CString -> Int32 -> Int32 -> IO CInt
-- hwndDlg : HWND -> Ptr ()
-- lpString : LPSTR out -> CString
-- cchOut : INT -> Int32
-- idComboBox : INT -> Int32
-- 要 GHC(Windows)。stdcall は x64 では ccall として扱われる。ブロックする API は safe 呼び出し推奨。open Ctypes
open Foreign
let dlgdirselectcomboboxexa =
foreign "DlgDirSelectComboBoxExA"
((ptr void) @-> string @-> int32_t @-> int32_t @-> returning int32_t)
(* hwndDlg : HWND -> (ptr void) *)
(* lpString : LPSTR out -> string *)
(* cchOut : INT -> int32_t *)
(* idComboBox : INT -> int32_t *)
(* foreign は cdecl 前提。x64 Windows では WINAPI と一致。構造体は ctypes structure を定義のこと。 *)(cffi:define-foreign-library user32 (t "USER32.dll"))
(cffi:use-foreign-library user32)
(cffi:defcfun ("DlgDirSelectComboBoxExA" dlg-dir-select-combo-box-ex-a :convention :stdcall) :int32
(hwnd-dlg :pointer) ; HWND
(lp-string :pointer) ; LPSTR out
(cch-out :int32) ; INT
(id-combo-box :int32)) ; INT
; isize/usize(INT_PTR/SIZE_T)は x64 前提で :int64/:uint64。x86 では :int32/:uint32。use Win32::API;
my $DlgDirSelectComboBoxExA = Win32::API::More->new('USER32',
'BOOL DlgDirSelectComboBoxExA(HANDLE hwndDlg, LPSTR lpString, int cchOut, int idComboBox)');
# my $ret = $DlgDirSelectComboBoxExA->Call($hwndDlg, $lpString, $cchOut, $idComboBox);
# hwndDlg : HWND -> HANDLE
# lpString : LPSTR out -> LPSTR
# cchOut : INT -> int
# idComboBox : INT -> int
# 値渡し構造体は pack() した文字列、または Win32::API::Struct を使用。関連項目
- f DlgDirSelectComboBoxExW (Unicode版) — コンボボックスで選択中のファイルやディレクトリ名を取得する(Unicode版)。
- f DlgDirListComboBoxA — ディレクトリ内容をダイアログのコンボボックスに一覧表示する(ANSI版)。