Sends the specified message to a window or windows. The SendMessage function calls the window procedure for the specified window and does not return until the window procedure has processed the message.

learn more… | top users | synonyms

1
vote
2answers
59 views

C++ SendMessage trying to receive string

Working with C++, I've spent way to many hours already trying to figure this out. This code is from a working program, I'm rewriting it in C#, but there is some things happening I do not understand. ...
-1
votes
1answer
20 views

WM_LBUTTONDOWN + WM_LBUTTONUP combination making drag view

I am using below code in my application's view on particular event to simulate a left mouse click. SendMessage(WM_LBUTTONDOWN); SendMessage(WM_LBUTTONUP); Once this code executed a mouse drag view ...
0
votes
0answers
28 views

Code needed to SendMessage using WM_USER for interprocess communication

OK, all you smart coders out there. I have been able to code a number of Visual Basic executable routines to do special things to control my home security system program, but have gotten stumped on ...
1
vote
0answers
37 views

C# SendMessage Without knowing TextBox ID

I'm trying to send a string to an external program, but I only have a sample program of what I will be working with, so I do not know what the actual textBox IDs will end up being. Obviously this is ...
0
votes
0answers
29 views

Group desktop items via Sendmessage

is it possible to group the items of the desktop listview via sendmessage? Or, other question, is it generally posibble to group listview items via sendmessage? Thank you!
0
votes
1answer
68 views

SendMessage does not work with Word app

I am making a little aplication and I need to make a click over a position in a word document. I am using "sendMessage, although I also was using "postMessage" getting the same result. #include ...
0
votes
1answer
21 views

SendMessage stuck after button click

Strange issue I can't put my finger on. Search for the main window, then I search for the button control with the caption "Start". After it finds start and sends the button click, it just sits and ...
0
votes
1answer
63 views

Chrome Extension - From the DOM to Popup.js message passing

I'm trying to get a simple Google Chrome extension working where a message/variable flows through each of the following steps ... DOM content (from specific HTML tag) Contentscript.js Background.js ...
0
votes
1answer
81 views

Sending a Custom windows message…custom data marshalling

I have a WPF application that needs to interface with another application. This application has about 20 custom Windows Messages (WM_USER+50...WM_USER+70). Summary of what I'm trying to accomplish: ...
0
votes
2answers
36 views

What is the correct declaration for SendMessage and how do I convert my code to use its parameters?

I am confused by various declarations SendMessage. How do I know which one is correct? In my c# winforms application (Windows 7) I use the following; public class NativeMethods { ...
0
votes
2answers
68 views

How to send/receive windows messages between VB6 and c#?

I am not a good programmer of C#, thus I need a small piece of code to send and receive messages between a C# and VB6 program, I have tried many examples from web but not succeeded due complexity of ...
0
votes
0answers
82 views

Do a Bot Help Bug C#

to start i'm french ^^ so,sorry for my english ! I would like to create "bot".With sendmessage Or Postmessage.But in My Game i can't no get the class... ! → picture of my probleme ...
0
votes
1answer
77 views

Sending “click” Message to a Internet Explorer_Server window link

Iam trying to automate a process in a little game which uses Internet Explorer_Server windows with links as "buttons". I managed to get the handle of the window and also got the html code from it ...
0
votes
1answer
51 views

Custom image in facebook send dialog?

I am trying to send a facebook private message via facebook send dialog in my facebook app, i have a problem while setting the custom image each time user clicks on it, i am sending the parameters as ...
1
vote
3answers
81 views

How can I send a message to a specific process by process id rather than by window handle?

To work around the limitations of GenerateConsoleCtrlEvent, I have to create an intermediate "middle-man" process to handle launching some console applications. The process's main purpose is to call ...
-2
votes
2answers
155 views

C++ Why Sendmessage doesnt work?

In C#, this SendMessage function raise up volume successfull: [DllImport("user32.dll")] public static extern IntPtr SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam); SendMessage(Handle, ...
2
votes
0answers
51 views

C++ How to Sendmessage volume up?

How can I send message volume up? I tried the code bellow but it doesnt work. Please help me. Thank you very much! void main() { HWND hwnd = GetConsoleWindow(); SendMessage(hwnd, ...
1
vote
0answers
16 views

How do I get text from an Afxwnd40 control in a 3rd-party application, using API calls in VBA?

I am a novice VBA programmer, and I am trying to write a script to interact with a lookup form in a 3rd-party application. The form has a number of text boxes, corresponding to fields like "phone ...
0
votes
1answer
65 views

VB.NET SendMessage to Another Form in Project

I have a 3 form project. I want form3 to use sendmessage to form2 but i can't ever get it to work. If it makes any difference form2 has a flash object on it (a game particularly) i want to send those ...
0
votes
0answers
58 views

Send special key to application not in focus

I wonder if I can send (using API or not) a combination of keys like "CTRL+SHIFT+X" to a window without focus? I have done a function to send a string to a window without focus, but I don't know if I ...
1
vote
0answers
54 views

Port error: Could not establish connection. Receiving end does not exist.

Port error: Could not establish connection. Receiving end does not exist. I want to send message to content_script.js from background.js but it show the message: Port error: Could not establish ...
-1
votes
1answer
65 views

Basic Send() and Recv() TCP server and client C++

Still trying to understand the send() and recv() functions. Why isn't this working? Nothing prints out on the server output.(except for some Test "cout"s) This is basically the part of the code I'm ...
1
vote
2answers
245 views

Sending Keystroke to another application using WinAPI

I have to control another application by sending keystrokes to it like CTRLS or CTRLSHIFTC or CTRLF. I've tried a lot of things, but I can't get it working. So I'm trying to get this right on a ...
2
votes
1answer
149 views

VB 2010 SendMessage: sending binary data to another app

I'm trying to send structured data from a VB 2010 app that I'm developing to an existing library which expects strings to be converted into byte arrays. I'm having trouble with the sending the data ...
0
votes
2answers
60 views

Send Enum value in another script?

I would like to pass an enum value in a function of another script (in C#, and Unity3d), if I directly pass them through public variables, I have got an "Inconsistent accessibility" error (field type ...
0
votes
3answers
308 views

mfc - sendmessage/postmessage with custom parameters

I want to have a message handler in MFC which accepts whatever parameters I define in the message-map. For example, static UINT UWM_STATUS_MSG = RegisterWindowMessage("Status message"); static UINT ...
0
votes
1answer
93 views

Taking an Integer Input through a Edit Box using sendmessage() function in WIN32 API (C) [duplicate]

Im using WIN32 API. I want to take an integer lets suppose 1000 as input through an edit box. I am Using sendmessage() function for taking input but it can take only string input. How can I take an ...
-1
votes
1answer
101 views

SendMessage Max Receivers

I have a main application and 4 client applications, I communicate back to the main application using SendMessage. I can use any three of the client apps without any problems but as soon as I add a ...
1
vote
2answers
125 views

Send text to app (not specific phone number)

I don't know if this is even possible, couldn't find anything usefull on the internet. I wanted to make an app, that me and some of my friends could send a message trough "my app" and that everyone ...
1
vote
2answers
229 views

Facebook UI, how to check if a user can send facebook message to another user

I want to follow up this question. I use FB.ui to send link and got exactly the same error for some users. Is there anyway to check it and decide whether to display the ui to the user ? API Error ...
0
votes
1answer
81 views

Shared Memory: SendMessage from VB6 to third-party DLL, retrieve data from passed struct?

An SDK tells me that, to retrieve certain data, my app needs to use SendMessage to pass a pointer to a C struct and then retrieve the data from the struct. My app is an entirely separate process. As ...
1
vote
1answer
258 views

Send an XMPP message with Python

I'm trying to send an XMPP message using Python but I can't get it to work. It seems to be failing at the authentication step. I took this example from a previous question and set up a gmail account ...
0
votes
1answer
267 views

How to get text from a windows control's textbox? and how do I know it's a textbox?

I've used spy++ to find the right handle of the wanted windows control, which belongs to a standalone application which isn't managed. Note that the spy++ "property inspector" mentions that this ...
0
votes
1answer
137 views

Java JNA sendMessage() not found

I'm trying to use JNA (Overview) to send messages to an application when minimized or not on top (mouse click for example), and the I found that people are using ...
0
votes
0answers
39 views

EM_GETLINECOUNT

I have a scrollable window (set up for scrolling in the wm_scroll event) with a hidden text box as a control object for the text that is printed in a static window. I am wanting to automatically ...
2
votes
3answers
187 views

PostMessage with WM_USER doesn't seem to arrive when MsgWaitForMultipleObjectsEx is used to check for it

I have a program with a few thread loops that you can post tasks to. One of these thread loops is the UI thread loop. It has to handle window messages as well as the posted tasks, so I send WM_USER ...
0
votes
1answer
178 views

How to send an alert message to a special online user with firebase

I'm trying to make a "FourConnect"-game with javascript. I want, that there is a list from all online users. This list I've made with the example on the firebase site. Now I want that I can choose one ...
0
votes
1answer
199 views

API SendMessage() does not work for external app dialog

I created a form that has 2 buttons. One button pops a msgbox and the other runs form frmAPI (code is listed below) listed below. If I open the msgbox and leave it open and then run the frmAPI it will ...
0
votes
1answer
171 views

Send mouse events to inactive and hidden windows/WPF forms

I'm developing an app that needs to generate mouse events on a window Win32/WPF which may be minimized or hidden from view on the desktop. I have tried the user32.dll APIs SendInput, SendMessage, ...
0
votes
1answer
177 views

Python win32api SendMesage

trying to clarify win32api for me. And just made a simple example. Get the notepad window, move mouse to position click and write string. But it does not work. What's problem? And will be anybody so ...
0
votes
0answers
141 views

Sending text with SendMessage to another program that has changing control id's and class names that are the same

Details: I recently started coding in C# and I am remaking a program that I made in AutoIT3. Its basically a program that pulls text from html and sends it to another program then clicks some buttons. ...
0
votes
0answers
92 views

user32.dll injection to modify sendmessage()

My plan is modifying user32.dll to manipulate sendmessage API. There's a problem in my computer, which randomly and frequently happens. When I press any key, the effect of 'LBUTTONDOWN' appears like ...
0
votes
0answers
178 views

Using SELCHANGE to tell ShowSaveAsDialog that the combobox has changed with webbrowser component

For background I am testing wing Win 7 VS2010 & c# under x86 and AnyCPU compile. I have a WebBrowser component in my app in order to capture website info rendered on screen as an MHT file (There ...
1
vote
1answer
237 views

Sending WM_CLOSE to C# application works unexpected

I'm facing with unexpected behavior when using WM_CLOSE message to close C# application. In my scenario I need to ensure that C# application is closed when its MSI installation package is running. MSI ...
0
votes
0answers
148 views

C# SendMessage/PostMessage and Drag and Drop [closed]

I've spent quite a bit hours looking for a solution of this problem: I'd like to implement a file drag and drop between two apps, from which the destination one is some code-closed application and ...
0
votes
0answers
55 views

sendmessage for excel(save)

i'm making auto save program for ms office.(ex. word. powerpoint, excel) very important point is sendmessage for ms office. i try to sendmessage, postmessage. i try to sendmessage, postmessage. ...
0
votes
0answers
66 views

Translation of Graphics object doesn't affect WM_PRINT call

I'm currently using a WM_PRINT call to render a control into a graphics object: GraphicsState backup = graphics.Save(); graphics.TranslateTransform(50, 50); IntPtr destHdc = graphics.GetHdc(); ...
0
votes
0answers
76 views

facebook API Viewer cannot message specified recipients

<script src="http://connect.facebook.net/en_US/all.js" type="text/javascript"></script> <script type="text/javascript"> function facebook_send_message(to, from) { ...
1
vote
0answers
721 views

Using User32.dll SendMessage to send string to another Windows Forms application

I have a strange problem. I am using SendMessage to send a string to all running instances of the same Windows Forms application. I can successfully send the string representation of the numeric ...
1
vote
1answer
953 views

Chrome extension: sendMessage from background to content script doesn't work

I know that question has been repeatedly asked in different ways, but I tried to go through all the answers (hopefully I didn't miss anyone) and none of them worked for me. Here is my extension's ...

1 2 3 4 5 7