2016-03-28 93 views
-3

這次我打開了一個reciveText.txt並與此txt文件中的焦點相關,我想在其上寫入一些文本;並同時在FormtextBox中寫入相同的文本,這些文本將在secon平面中,我的意思是,沒有焦點。如何在第二層發送notepadtextBox的文字?將文本從記事本發送到未聚焦的Form1

有可能嗎?

PS:在實際情況條形碼閱讀器將在特定NotePadFilestrings,但將在第二平面上運行(如backgroundprocess或無焦點)其他應用程序會讀取這些strings當檢測到一些這種問題的應用程序將通知我們一個視覺警報...我只需要知道如何發送條形碼讀取器剛剛閱讀到一個未聚焦Form ...

請幫助!

+0

你製作的本質上是一個鍵盤記錄器。查找如何在C#中構建一個# – Martheen

回答

-2

我會評論,但我不能。

無論如何,我會做一些內存黑客: http://www.codeproject.com/Articles/670373/Csharp-Read-Write-another-Process-Memory

訪問使用記事本的內存(RAM)。你可以看到明文。

內存黑客通常被忽視,並沒有給予太多的信貸。每個人都有鍵盤鍵或其他東西,但這是不必要的。只是這樣做:

這裏是CodePlex上:

using System; 
using System.Diagnostics; 
using System.Runtime.InteropServices; 
using System.Text; 

public class MemoryRead 
{ 
const int PROCESS_WM_READ = 0x0010; 

[DllImport("kernel32.dll")] 
public static extern IntPtr OpenProcess(int dwDesiredAccess, bool bInheritHandle, int dwProcessId); 

[DllImport("kernel32.dll")] 
public static extern bool ReadProcessMemory(int hProcess, 
    int lpBaseAddress, byte[] lpBuffer, int dwSize, ref int lpNumberOfBytesRead); 

public static void Main() 
{ 
    Process process = Process.GetProcessesByName("notepad")[0]; 
    IntPtr processHandle = OpenProcess(PROCESS_WM_READ, false, process.Id); 

    int bytesRead = 0; 
    byte[] buffer = new byte[24]; //'Hello World!' takes 12*2 bytes because of Unicode 


    // 0x0046A3B8 is the address where I found the string, replace it with what you found 
    ReadProcessMemory((int)processHandle, 0x0046A3B8, buffer, buffer.Length, ref bytesRead); 

    Console.WriteLine(Encoding.Unicode.GetString(buffer) + 
     " (" + bytesRead.ToString() + "bytes)"); 
    Console.ReadLine(); 
} 
} 

UPDATE複製並粘貼錯誤的代碼。以上是新的

+0

我真的不知道爲什麼stackoverflow downvotes完美的問題。奧爾多的問題是偉大的 – CTR12

+0

感謝@ CTR12回答我的帖子,我會嘗試此代碼,然後讓你知道發生了什麼,因爲我100%肯定我會有其他問題...如果stackoverflow downvote我,它doesn'不管怎樣,因爲你幫了我很多。再次感謝... –

相關問題