Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
751 views

Beagleboard: How do I send/receive data to/from the DSP?

I have a beagleboard with TMS320C64x+ DSP. I'm working on an image processing beagleboard application. Here's how it's going to work: The ARM reads an image from a file and puts the image in a 2D ...
5
votes
2answers
431 views

WPF: How to interact with inactive window?

Is it possible to interact with an inactive window from another window? I want to focus a textbox in a window without making it active, and then send keystrokes and mouse events to it. It seem to be ...
5
votes
1answer
861 views

How to programmatically choose a context menu item in another app?

The target app is written in Delphi (win32 not .NET) and is closed-source. The action I want to invoke is called Copy, but there is no obvious keyboard shortcut. (Ctrl+Insert does the wrong thing and ...
4
votes
1answer
203 views

Thread message loop for a thread with a hidden window?

I have a Delphi 6 application that has a thread dedicated to communicating with a foreign application that uses SendMessage() and WM_COPYDATA messages to interface with external programs. Therefore, ...
4
votes
1answer
142 views

Get ListView item text from other window

I want to make a little application that changes the default playback device in windows 7. The only solution was to interact with the Sound Applet. I succeeded to get the handle to the SysListView32 ...
4
votes
3answers
158 views

Why does this program sometimes crash, and sometimes not?

The following program turns off the monitor. It sometimes crashes when I run it, and it sometimes doesn't. The disassembly just points to a random location like 0x00011000, and has no real ...
4
votes
4answers
5k views

Thread communication using SendMessage

my question is : how can I use SendMessage() to implement thread communication between two threads, one with a window (GUI) and the other with no window? The problem is that SendMessage() needs a ...
3
votes
3answers
147 views

How can I close an app without a modal dialog box being shown?

I have an app that can optionally open PDF's after it creates them. If two reports are generated in succession with the same name, the second attempt fails if the first copy of acrobat still has the ...
3
votes
1answer
123 views

How can I write color text to a textbox using python and the win32 api's?

Basically I want to write colored text to a textbox window of another application using python. The general idea is to: win32gui.SendMessage( hwnd, EM_SETCHARFORMAT, SCF_SELECTION, format); where ...
3
votes
4answers
376 views

SendMessage vs PostMessage + WaitForSingleObject

I was wondering what's the difference between calling SendMessage (which blocks) and calling PostMessage in conjunction with WaitForSingleObject. Thoughts?
3
votes
1answer
475 views

Write text to notepad with C#/Win32

I'm messing around with Win32 API and windows messaging trying to figure out how things work and I found this question very helpful. I'd like to improve upon the solution provided there so that it ...
3
votes
4answers
322 views

When I send and convert std string with win32 SendMessage I'm getting weird characters

I need to append text to win32 edit control i have working function to do this , but the text that printed in the edit control is gibrish why ? the sample code taken from microsoft example from here ...
3
votes
2answers
2k views

Sending an application keystrokes with “SendMessage” (vb.net)

So far, I have all the handle capturing and gui set up. I'm stumped as to how to perform the actual step. I have this code: SendMessage(New IntPtr(CurrentHandle), WHAT,GOES,HERE?) I've been ...
3
votes
8answers
3k views

Can I send email programmatically in iPhone app?

I need to be able to send a pre-formatted email or SMS text message programmatically from within an iphone app. Can this be done? I have looked at apple's MFMailComposeViewController class, but this ...
3
votes
4answers
233 views

How to close (not kill) another application that doesn't have a visible window? (C#)

I have an installation program in which I would like to make sure my application is not currently running. If it is, I would like to close it (not kill it, since the app has to save some data on ...
3
votes
2answers
679 views

C# SendMessage to C++ WinProc

I need to send a string from C# to a C++ WindowProc. There are a number of related questions on SO related to this, but none of the answers have worked for me. Here's the situation: PInvoke: ...
3
votes
3answers
1k views

RichTextBox: How to determine if text extends beyond the control bounds? - Horizontal Scrollbar appearing when it shouldn't after sending EM_SETTARGETDEVICE and then resizing the control

I have extended the RichTextBox control to implement much of the missing functionality provided in the native RichEdit class. I'm running into an issue where if the control is set to wrap to the ...
3
votes
3answers
799 views

How to send backspace using sendmessage(C#) to cmd.exe

I am trying to send keystrokes to cmd.exe that I launch from my app. In doing so, I am able to send all the keyboard characters, but if I try to send Backspace, it doesnt seem to take effect. The ...
3
votes
4answers
3k views

.NET webbrowser control automation

I'm trying to automate some stuff on a flash game running in a webbrowser control in my C# program. Using user32's sendmessage dll I've been able to click at coordinates on regular pages such as ...
3
votes
4answers
2k views

Simulate Mouse move/click/keyPress in an application that is not active

I know how to simulate mouse and keyboard events, but they act as if the user did them, so they will affect the window that is active. What I need is to simulate one of those inputs, but in a Window ...
3
votes
1answer
1k views

using FindWindow with multiple root windows

So I'm building an app that uses win32's SendMessage as IPC. I'm using FindWindow to get the hWnd based on className and windowName. This has all being going fine and dandy until I want to talk to a ...
2
votes
2answers
81 views

Send SMS to multiple numbers in android

In my application I do not want to use the default message sender. For doing that I followed the following link In Android is it possible to send sms message to more than one recipient in code? And ...
2
votes
2answers
77 views

How to send a string to other application including Microsoft Word

I was trying to accomplish this but did not get good results. I used GetForegroundWindow(), AttachThreadInput(uint,uint,bool) and GetFocus() functions to send the strings to another window. It works ...
2
votes
1answer
165 views

Using Windows API commands to close child windows

--Update 12/9/11 Last night I wrote a crummy little C# project to demonstrate. I have created an example in C# using Visual Studio 2010. Maybe someone can explain this behavior. To clarify, the ...
2
votes
2answers
213 views

Send fast textinput to another process (Window)

I am writing a C# WPF program which sends text messages to another program's window. I have a macro program as part of my keyboard drivers (Logitech g15) which already does this, though it does not ...
2
votes
2answers
94 views

A simple MPI program

I appreciate it if somebody tell me why this simple MPI send and receive code doesn't run on two processors, when the value of n=40(at line 20), but works for n <=30. In other words, if the message ...
2
votes
1answer
52 views

Can I turn off a monitor via ajax and get a response?

I'm working on a web application that will run on a kiosk and used via a touch screen interface. We're wanting to turn off the screen from an administrative page, so using Windows power management ...
2
votes
3answers
334 views

Minimize/restore windows programmatically skipping the animation effect

I need to perform several operations on a list of windows (minimize some of them, restore others) in order to switch between two or more set of windows at once. The problem with this are those ...
2
votes
1answer
258 views

WM_GETICON sometimes returns no icon handle

I'm trying to show all window titles including the corresponding icons, much like Windows Task Manager does. This works only to a certain extent though - although I am able to get the windows' title ...
2
votes
3answers
3k views

How to send an email through iOS simulator?

I want to know if it's possible to send email through iPhone simulator. I have seen the tutorial for sending an email through iphone as below: ...
2
votes
1answer
626 views

Send message taken from Spy++

Hey guys, I am trying to send a message to a game (to automate text commands), the problem is that I can't figure out how to use the information from spy++ to write a C# sendmessage function. I was ...
2
votes
3answers
260 views

How can I cope with 32bit/64bit mismatches when doing IPC via SendMessage?

I have a piece of C++ code which reads out the text of a tree item (as contained in a plain Common Controls Tree View) using the TVM_GETITEM window message. The tree view which receives the mesage is ...
2
votes
2answers
869 views

Using WM_SHOWWINDOW to Show a Window instead of ShowWindow()

I’m trying to use the SendMessage function of a hotkey utility (or NirCMD, etc.) to get a hidden window to pop up. I can for example get windows to close by sending 0x0010 (WM_CLOSE), but when I try ...
2
votes
1answer
391 views

Programmatic RDP Login and SendMessage

I have the need to programmatically RDP to a virtual machine(XP SP3 / .NET3.5 / VS 2008), (credentials have been saved in .rdp file) and do UI automation testing. Because of our domain security, I ...
2
votes
1answer
808 views

C# and SendMessage (keys) is not working

I tried to send a key to an application. For an easy test I just used notepad. That's what the code looks like: [DllImport("USER32.DLL", EntryPoint = "SendMessageW", SetLastError = true, ...
2
votes
3answers
866 views

PostMessage does not seem to be working

I am trying to use PostMessage to send a tab key. Here is my code: // This class allows us to send a tab key when the the enter key // is pressed for the mooseworks mask control. public class ...
2
votes
3answers
801 views

Window screenshot using WinAPI

How to make a screenshot of program window using WinAPI & C#? I sending WM_PAINT (0x000F) message to window, which I want to screenshot, wParam = HDChandle, but no screenshot in my picturebox. If ...
2
votes
1answer
1k views

Capture Highlighted Text from any window using C#

How to read the highlighted/Selected Text from any window using c#. i tried 2 approaches. Send "^c" whenever user selects some thing. But in this case my clipboard is flooded with lots of ...
2
votes
3answers
563 views

Send Email in .Net 3.5

I need to send a basic email from my site when someone registers for my site. Is their an easy way? or a site to reference?
2
votes
4answers
427 views

Can SendMessage return early if the receiving thread starts pumping messages?

How precisely does windows decide that SendMessage should return- that is, how does it decide the receiving thread has finished processing the sent message? Detailed scenario: I've got thread A using ...
2
votes
1answer
895 views

Alternative to SendKeys that does NOT require an unlocked session

Situation: A GUI app contains functionality (off a menu option) that produces a frequently updated image to a directory. A logged-in, running instance of the app is the ONLY source for this image ...
2
votes
4answers
2k views

Get text from another application

I'd like to retrieve text from textbox in my another application. ProcessName from second application is 'TestTextBox', TextBox's name is 'textBox1'. My code, which returns empty string: ...
2
votes
5answers
7k views

I can't understand how to use SendMessage or PostMessage calls :(

I need to simulate a keypress in a third party application. Let's say I have a C# application that needs to send an "8" to the Calculator application. I can't use the SendKeys of .Net or the ...
2
votes
1answer
1k views

Retrieve text from a scintilla control using SendMessage

I'm attempting to retrieve the document text in Notepad++ using SendMessage in C#. Below is my current code. The first call to SendMessage correctly returns the length of the text. The second call to ...
1
vote
1answer
28 views

Android: Apparent memory leak when sending lots of messages through a Handler

I've got an app where a thread is trying to send lots of Location objects via a Handler to the UI thread, where they get analyzed and passed on to other threads. I've noticed the app has a memory ...
1
vote
0answers
100 views

Hide ComboBox Button Delphi without setting Style to csSimple

I am trying to hide the dropdown button in a third party component that derives from TComboBox. I tried setting the style to csSimple, but this solution does not work for me... There is code in the ...
1
vote
1answer
129 views

Taking control of another application with sendkeys or window’s API is not working

I have tried to control another application to automate a process we do 100 times a day. It is simple enough, a few key strokes is all but I have been foiled in all attempts. ROUND 1: I have tried ...
1
vote
1answer
121 views

get itemtext from SysListView32

i am trying to get the text in SysListView32 from another app by C#. i can get the LVM_GETITEMCOUNT well but LVM_GETITEMW = 0x1000 + 13 always returns -1. how can i get the text by C#? i am new. ...
1
vote
2answers
180 views

SendMessageA and SendMessageW in Win7 migrated from WinXP

EDIT: Working code posted below, nonworking code commented out. You must use the same CHAR_T for retrieving data from windows as you used to create them in Win7. I have a dialog written in C that ...
1
vote
1answer
111 views

can't use SendMessage_EX twice in my c# program

I am facing a very strange problem and couldn't figure out where's the mistake. I'm using SendMessage_EX to get a specified line's text: SendMessage_Ex(hr.Handle, EM_GETLINE, l, buffer); then I ...

1 2 3 4