Форум программистов, компьютерный форум, киберфорум
C/C++: WinAPI
Войти
Регистрация
Восстановить пароль
Карта форума Темы раздела Блоги Сообщество Поиск Заказать работу  
 
Рейтинг 4.57/7: Рейтинг темы: голосов - 7, средняя оценка - 4.57
9 / 9 / 5
Регистрация: 03.07.2012
Сообщений: 60
1

Взаимодействие с windows по средством формы

11.06.2013, 18:18. Показов 1319. Ответов 3
Метки нет (Все метки)

Author24 — интернет-сервис помощи студентам
Ув. форумчане, подскажите чем можно реализовать такие действия:
К примеру у меня есть чистое окно(Форма программы) и я бы хотел перетащить на него, ну скажем ехе файл и получить с этого ехе файла какие то данные? И вообще это возможно реализовать?
0
Programming
Эксперт
94731 / 64177 / 26122
Регистрация: 12.04.2006
Сообщений: 116,782
11.06.2013, 18:18
Ответы с готовыми решениями:

Как получить фокус на записи формы по средством VBA
Доброго дня! Проблема в следующем, имеется , а также поле формы в котором отображаются значения...

Формы , их взаимодействие
Всем привет с 8-го класса! Есть одна проблемка ,которая связанна с формами. Сижу, пишу игру (это...

Взаимодействие формы Html с БД
Доброе время суток ! Имеется форма написанная на Html и php, теперь ее нужно перевести на html и...

Взаимодействие формы и классов
Здравствуйте, у меня такая проблема, есть одна форма и отдельный класс. Хочу применить алгоритм...

3
500 / 474 / 63
Регистрация: 26.01.2011
Сообщений: 2,033
11.06.2013, 20:32 2
C++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#include <windows.h>
 
/*  Declare Windows procedure  */
LRESULT CALLBACK WindowProcedure (HWND, UINT, WPARAM, LPARAM);
 
/*  Make the class name into a global variable  */
char szClassName[ ] = "WindowsApp";
 
void OnDropFiles(HWND hWnd, HDROP hDrop);
 
HWND hwnd; 
 
int WINAPI WinMain (HINSTANCE hThisInstance,
                    HINSTANCE hPrevInstance,
                    LPSTR lpszArgument,
                    int nFunsterStil)
 
{
                  /* This is the handle for our window */
    MSG messages;            /* Here messages to the application are saved */
    WNDCLASSEX wincl;        /* Data structure for the windowclass */
 
    /* The Window structure */
    wincl.hInstance = hThisInstance;
    wincl.lpszClassName = szClassName;
    wincl.lpfnWndProc = WindowProcedure;      /* This function is called by windows */
    wincl.style = CS_DBLCLKS;                 /* Catch double-clicks */
    wincl.cbSize = sizeof (WNDCLASSEX);
 
    /* Use default icon and mouse-pointer */
    wincl.hIcon = LoadIcon (NULL, IDI_APPLICATION);
    wincl.hIconSm = LoadIcon (NULL, IDI_APPLICATION);
    wincl.hCursor = LoadCursor (NULL, IDC_ARROW);
    wincl.lpszMenuName = NULL;                 /* No menu */
    wincl.cbClsExtra = 0;                      /* No extra bytes after the window class */
    wincl.cbWndExtra = 0;                      /* structure or the window instance */
    /* Use Windows's default color as the background of the window */
    wincl.hbrBackground = (HBRUSH) COLOR_BACKGROUND;
 
    /* Register the window class, and if it fails quit the program */
    if (!RegisterClassEx (&wincl))
        return 0;
 
    /* The class is registered, let's create the program*/
    hwnd = CreateWindowEx (
           0,                   /* Extended possibilites for variation */
           szClassName,         /* Classname */
           "Ïåðåòàùè íà ìåíÿ ôàéë(û)",       /* Title Text */
           WS_OVERLAPPEDWINDOW, /* default window */
           CW_USEDEFAULT,       /* Windows decides the position */
           CW_USEDEFAULT,       /* where the window ends up on the screen */
           544,                 /* The programs width */
           375,                 /* and height in pixels */
           HWND_DESKTOP,        /* The window is a child-window to desktop */
           NULL,                /* No menu */
           hThisInstance,       /* Program Instance handler */
           NULL                 /* No Window Creation data */
           );
 
    /* Make the window visible on the screen */
    ShowWindow (hwnd, nFunsterStil);
 
    /* Run the message loop. It will run until GetMessage() returns 0 */
    while (GetMessage (&messages, NULL, 0, 0))
    {
        /* Translate virtual-key messages into character messages */
        TranslateMessage(&messages);
        /* Send message to WindowProcedure */
        DispatchMessage(&messages);
    }
 
    /* The program return-value is 0 - The value that PostQuitMessage() gave */
    return messages.wParam;
}
 
 
/*  This function is called by the Windows function DispatchMessage()  */
 
LRESULT CALLBACK WindowProcedure (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
                
     static   HDROP hDrop;
        
    switch (message)                  /* handle the messages */
    {
           
    case WM_CREATE:
         
DragAcceptFiles(hwnd, TRUE);
         
         break;
           
           case  WM_DROPFILES:
           
 hDrop = (HDROP) wParam;      
OnDropFiles(hwnd, hDrop);
                
                break;
           
        case WM_DESTROY:
            PostQuitMessage (0);       /* send a WM_QUIT to the message queue */
            break;
        default:                      /* for messages that we don't deal with */
            return DefWindowProc (hwnd, message, wParam, lParam);
    }
 
    return 0;
}
void OnDropFiles(HWND hWnd, HDROP hDrop)
{
 
    TCHAR szFileName[MAX_PATH];
    
    DWORD dwCount = DragQueryFileA(hDrop, 0xFFFFFFFF, szFileName, MAX_PATH);
    
    for(int i = 0; i < dwCount; i++)
    {
        DragQueryFileA(hDrop, i, szFileName, MAX_PATH);
      
        MessageBox(hWnd, szFileName, "Èíôîðìàöèÿ", MB_OK);
    }
    
    DragFinish(hDrop);
 
}
1
9 / 9 / 5
Регистрация: 03.07.2012
Сообщений: 60
12.06.2013, 20:41  [ТС] 3
Цитата Сообщение от Игорь с++ Посмотреть сообщение
Кликните здесь для просмотра всего текста
C++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#include <windows.h>
 
/*  Declare Windows procedure  */
LRESULT CALLBACK WindowProcedure (HWND, UINT, WPARAM, LPARAM);
 
/*  Make the class name into a global variable  */
char szClassName[ ] = "WindowsApp";
 
void OnDropFiles(HWND hWnd, HDROP hDrop);
 
HWND hwnd; 
 
int WINAPI WinMain (HINSTANCE hThisInstance,
                    HINSTANCE hPrevInstance,
                    LPSTR lpszArgument,
                    int nFunsterStil)
 
{
                  /* This is the handle for our window */
    MSG messages;            /* Here messages to the application are saved */
    WNDCLASSEX wincl;        /* Data structure for the windowclass */
 
    /* The Window structure */
    wincl.hInstance = hThisInstance;
    wincl.lpszClassName = szClassName;
    wincl.lpfnWndProc = WindowProcedure;      /* This function is called by windows */
    wincl.style = CS_DBLCLKS;                 /* Catch double-clicks */
    wincl.cbSize = sizeof (WNDCLASSEX);
 
    /* Use default icon and mouse-pointer */
    wincl.hIcon = LoadIcon (NULL, IDI_APPLICATION);
    wincl.hIconSm = LoadIcon (NULL, IDI_APPLICATION);
    wincl.hCursor = LoadCursor (NULL, IDC_ARROW);
    wincl.lpszMenuName = NULL;                 /* No menu */
    wincl.cbClsExtra = 0;                      /* No extra bytes after the window class */
    wincl.cbWndExtra = 0;                      /* structure or the window instance */
    /* Use Windows's default color as the background of the window */
    wincl.hbrBackground = (HBRUSH) COLOR_BACKGROUND;
 
    /* Register the window class, and if it fails quit the program */
    if (!RegisterClassEx (&wincl))
        return 0;
 
    /* The class is registered, let's create the program*/
    hwnd = CreateWindowEx (
           0,                   /* Extended possibilites for variation */
           szClassName,         /* Classname */
           "Ïåðåòàùè íà ìåíÿ ôàéë(û)",       /* Title Text */
           WS_OVERLAPPEDWINDOW, /* default window */
           CW_USEDEFAULT,       /* Windows decides the position */
           CW_USEDEFAULT,       /* where the window ends up on the screen */
           544,                 /* The programs width */
           375,                 /* and height in pixels */
           HWND_DESKTOP,        /* The window is a child-window to desktop */
           NULL,                /* No menu */
           hThisInstance,       /* Program Instance handler */
           NULL                 /* No Window Creation data */
           );
 
    /* Make the window visible on the screen */
    ShowWindow (hwnd, nFunsterStil);
 
    /* Run the message loop. It will run until GetMessage() returns 0 */
    while (GetMessage (&messages, NULL, 0, 0))
    {
        /* Translate virtual-key messages into character messages */
        TranslateMessage(&messages);
        /* Send message to WindowProcedure */
        DispatchMessage(&messages);
    }
 
    /* The program return-value is 0 - The value that PostQuitMessage() gave */
    return messages.wParam;
}
 
 
/*  This function is called by the Windows function DispatchMessage()  */
 
LRESULT CALLBACK WindowProcedure (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
                
     static   HDROP hDrop;
        
    switch (message)                  /* handle the messages */
    {
           
    case WM_CREATE:
         
DragAcceptFiles(hwnd, TRUE);
         
         break;
           
           case  WM_DROPFILES:
           
 hDrop = (HDROP) wParam;      
OnDropFiles(hwnd, hDrop);
                
                break;
           
        case WM_DESTROY:
            PostQuitMessage (0);       /* send a WM_QUIT to the message queue */
            break;
        default:                      /* for messages that we don't deal with */
            return DefWindowProc (hwnd, message, wParam, lParam);
    }
 
    return 0;
}
void OnDropFiles(HWND hWnd, HDROP hDrop)
{
 
    TCHAR szFileName[MAX_PATH];
    
    DWORD dwCount = DragQueryFileA(hDrop, 0xFFFFFFFF, szFileName, MAX_PATH);
    
    for(int i = 0; i < dwCount; i++)
    {
        DragQueryFileA(hDrop, i, szFileName, MAX_PATH);
      
        MessageBox(hWnd, szFileName, "Èíôîðìàöèÿ", MB_OK);
    }
    
    DragFinish(hDrop);
 
}
Спасибо за пример, сейчас буду редактировать под Rad Studio уж больно он привередлив к типам данных(

Добавлено через 22 минуты
C++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*  Declare Windows procedure  */
LRESULT CALLBACK WindowProcedure (HWND, UINT, WPARAM, LPARAM);
 
/*  Make the class name into a global variable  */
UnicodeString szClassName = "WindowsApp";
 
void OnDropFiles(HWND hWnd, HDROP hDrop);
 
HWND hwnd;
 
int WINAPI WinMain (HINSTANCE hThisInstance,
                    HINSTANCE hPrevInstance,
                    LPSTR lpszArgument,
                    int nFunsterStil)
 
{
                  /* This is the handle for our window */
    MSG messages;            /* Here messages to the application are saved */
    WNDCLASSEX wincl;        /* Data structure for the windowclass */
 
    /* The Window structure */
    wincl.hInstance = hThisInstance;
    wincl.lpszClassName = szClassName.c_str();
    wincl.lpfnWndProc = WindowProcedure;      /* This function is called by windows */
    wincl.style = CS_DBLCLKS;                 /* Catch double-clicks */
    wincl.cbSize = sizeof (WNDCLASSEX);
 
    /* Use default icon and mouse-pointer */
    wincl.hIcon = LoadIcon (NULL, IDI_APPLICATION);
    wincl.hIconSm = LoadIcon (NULL, IDI_APPLICATION);
    wincl.hCursor = LoadCursor (NULL, IDC_ARROW);
    wincl.lpszMenuName = NULL;                 /* No menu */
    wincl.cbClsExtra = 0;                      /* No extra bytes after the window class */
    wincl.cbWndExtra = 0;                      /* structure or the window instance */
    /* Use Windows's default color as the background of the window */
    wincl.hbrBackground = (HBRUSH) COLOR_BACKGROUND;
 
    /* Register the window class, and if it fails quit the program */
    if (!RegisterClassEx (&wincl))
        return 0;
 
        UnicodeString pere = "Перетащи на меня файл(ы)";
 
    /* The class is registered, let's create the program*/
    hwnd = CreateWindowEx (
           0,                   /* Extended possibilites for variation */
           szClassName.c_str(),         /* Classname */
           pere.c_str(),       /* Title Text */
           WS_OVERLAPPEDWINDOW, /* default window */
           CW_USEDEFAULT,       /* Windows decides the position */
           CW_USEDEFAULT,       /* where the window ends up on the screen */
           544,                 /* The programs width */
           375,                 /* and height in pixels */
           HWND_DESKTOP,        /* The window is a child-window to desktop */
           NULL,                /* No menu */
           hThisInstance,       /* Program Instance handler */
           NULL                 /* No Window Creation data */
           );
 
    /* Make the window visible on the screen */
    ShowWindow (hwnd, nFunsterStil);
 
    /* Run the message loop. It will run until GetMessage() returns 0 */
    while (GetMessage (&messages, NULL, 0, 0))
    {
        /* Translate virtual-key messages into character messages */
        TranslateMessage(&messages);
        /* Send message to WindowProcedure */
        DispatchMessage(&messages);
    }
 
    /* The program return-value is 0 - The value that PostQuitMessage() gave */
    return messages.wParam;
}
 
 
/*  This function is called by the Windows function DispatchMessage()  */
 
LRESULT CALLBACK WindowProcedure (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
 
     static   HDROP hDrop;
 
    switch (message)                  /* handle the messages */
    {
 
    case WM_CREATE:
 
DragAcceptFiles(hwnd, TRUE);
 
         break;
 
           case  WM_DROPFILES:
 
 hDrop = (HDROP) wParam;
OnDropFiles(hwnd, hDrop);
 
                break;
 
        case WM_DESTROY:
            PostQuitMessage (0);       /* send a WM_QUIT to the message queue */
            break;
        default:                      /* for messages that we don't deal with */
            return DefWindowProc (hwnd, message, wParam, lParam);
    }
 
    return 0;
}
void OnDropFiles(HWND hWnd, HDROP hDrop)
{
 
    AnsiString szFileName;
 
    DWORD dwCount = DragQueryFileA(hDrop, 0xFFFFFFFF, szFileName.c_str(), MAX_PATH);
 
    for(int i = 0; i < dwCount; i++)
    {
        DragQueryFileA(hDrop, i, szFileName.c_str(), MAX_PATH);
        UnicodeString szFileNameUS = szFileName;
        UnicodeString info = "Информация";
        MessageBox(hWnd, szFileNameUS.c_str(), info.c_str() , MB_OK);
    }
 
    DragFinish(hDrop);
 
}
Вообщем я переделал типы данных, только не пойму как это все должно работать? Не могли бы вы разъяснить? Имею в виду то что когда я переношу выбранный ехе файл ничего не происходит ((

Добавлено через 17 минут
О я понял походу дела, функции нужно связать с формой через события???

Добавлено через 13 минут
Значит все это называется Drag & Drop походу я разобрался)

Добавлено через 2 часа 7 минут
Все я в тупике, я использовал компонент ApplicationEvents для перехвата сообщения
C++
1
WM_DROPFILES
что вообщем то дало успех! Далее я так подумал что:
C++
1
2
3
4
5
6
7
void __fastcall TForm4::ApplicationEvents1Message(tagMSG &Msg, bool &Handled)
{
UnicodeString szFileName;
if(Msg.message == WM_DROPFILES) {
DragQueryFile(HDROP (Msg.message), 0, szFileName.c_str(), szFileName.Length());
Form4->Caption = szFileName.c_str();
}
Но ничего я так и не увидел...

Добавлено через 1 минуту
C++
1
2
3
4
void __fastcall TForm4::FormCreate(TObject *Sender)
{
DragAcceptFiles(Form4->Handle,True);
}
И это конечно же сделал!

Добавлено через 21 час 2 минуты
C++
1
2
3
4
5
6
7
HDROP drop_handle = (HDROP)Message.Drop;
   UnicodeString fName;
   DWORD a;
   //int filenum = DragQueryFileW(drop_handle, -1, NULL, NULL);
   //for(int i = 0; i < filenum; i++){
   a =  DragQueryFile(drop_handle, 0, fName.c_str(), MAXPATH);
   RichEdit1->Text = a
Так все работает, но текст отображается не полностью!
0
Croessmah
13.06.2013, 08:45     Взаимодействие с windows по средством формы
  #4

Не по теме:

Цитата Сообщение от incrome Посмотреть сообщение
Вообщем я переделал типы данных, только не пойму как это все должно работать?
Вообще-то на форуме есть раздел C++ Builder

А раз запостили в WinAPI, то и ответ получили соответствующий :) отсюда и непонимание

0
IT_Exp
Эксперт
87844 / 49110 / 22898
Регистрация: 17.06.2006
Сообщений: 92,604
13.06.2013, 08:45

Взаимодействие потоков и формы
Я что-то смотрел читал и тдп. Так и не понял как можно реализовывать норм выполнение функций в...

Взаимодействие WPF, Windows Forms и Windows XP
Товарищи! Всю голову сломал, выручайте. Если приложение на нетфреймворке 4 на windows forms. В нем...

Взаимодействие 3 формы. 1 главная и 2 дочерних
Есть 1 главная форма, на ней две кнопки. Первая вызывает первую дочернюю форму, а вторая вторую. Со...

Взаимодействие формы и запроса на добавление.
Проблема следующая: есть форма, в которой пользователь вводит некоторые данные(текст), путем...


Искать еще темы с ответами

Или воспользуйтесь поиском по форуму:
4
Ответ Создать тему
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2024, CyberForum.ru