Click here to Skip to main content
15,899,825 members
Home / Discussions / C#
   

C#

 
GeneralRe: ClickOnce Deployment Error Pin
pashitech15-May-07 5:03
pashitech15-May-07 5:03 
GeneralRe: ClickOnce Deployment Error Pin
Judah Gabriel Himango15-May-07 7:16
sponsorJudah Gabriel Himango15-May-07 7:16 
GeneralRe: ClickOnce Deployment Error Pin
Judah Gabriel Himango16-May-07 4:32
sponsorJudah Gabriel Himango16-May-07 4:32 
GeneralRe: ClickOnce Deployment Error Pin
Judah Gabriel Himango16-May-07 4:33
sponsorJudah Gabriel Himango16-May-07 4:33 
GeneralRe: ClickOnce Deployment Error Pin
Judah Gabriel Himango16-May-07 4:39
sponsorJudah Gabriel Himango16-May-07 4:39 
GeneralRe: ClickOnce Deployment Error Pin
pashitech16-May-07 5:21
pashitech16-May-07 5:21 
GeneralRe: ClickOnce Deployment Error Pin
Judah Gabriel Himango16-May-07 5:40
sponsorJudah Gabriel Himango16-May-07 5:40 
QuestionWriting with WriteProcessMemory Pin
Webtijn15-May-07 3:22
Webtijn15-May-07 3:22 
Hi,

I hope someone can help me, I'm new at this forum too Wink | ;) I've writed a trainer for WinMine (Windows Minesweeper). This is the code I now have:

// Action thing:
Buffertje = new byte[6];
Buffertje[0] = System.Convert.ToByte(0x90);
Buffertje[1] = System.Convert.ToByte(0x90);
Buffertje[2] = System.Convert.ToByte(0x90);
Buffertje[3] = System.Convert.ToByte(0x90);
Buffertje[4] = System.Convert.ToByte(0x90);
Buffertje[5] = System.Convert.ToByte(0x90);

WriteProc("winmine", Buffertje, 0x1002FF5);


// WriteProc function (Don't think the InitProc function is needed to show ;))
public bool WriteProc(string Proc, byte[] Bytebuffer, int Address)
{
bool Success = WriteProcessMemory(InitProc( Proc ), Address, Bytebuffer, Bytebuffer.Length, 0)
return Success;
}


The programme freezes the time of WinMine to 1 now! So in fact, it's working. But now I'm trying to change the code to let it also work for Windows Pinball. The address of the score in Pinball is 0x011CAEBA, but my problem is my var "Buffertje". I don't get what does 0x90 means? I know it is an OpCode, but don't know how to change those opcodes..

Can someone help me?
AnswerRe: Writing with WriteProcessMemory Pin
Judah Gabriel Himango15-May-07 4:24
sponsorJudah Gabriel Himango15-May-07 4:24 
QuestionNetwork Bandwidth in Socket Programming Pin
SakthiSurya15-May-07 3:18
SakthiSurya15-May-07 3:18 
AnswerRe: Network Bandwidth in Socket Programming Pin
Dave Kreskowiak15-May-07 4:47
mveDave Kreskowiak15-May-07 4:47 
GeneralRe: Network Bandwidth in Socket Programming Pin
SakthiSurya15-May-07 18:52
SakthiSurya15-May-07 18:52 
GeneralRe: Network Bandwidth in Socket Programming Pin
Dave Kreskowiak16-May-07 13:19
mveDave Kreskowiak16-May-07 13:19 
QuestionHAShTable Value Pin
Jabeerbe15-May-07 3:11
Jabeerbe15-May-07 3:11 
AnswerRe: HAShTable Value Pin
Martin#15-May-07 3:16
Martin#15-May-07 3:16 
Questionsearch relational data in some tables and show result to treeView Pin
hdv21215-May-07 2:49
hdv21215-May-07 2:49 
QuestionAccess denied... Pin
simplicitylabs15-May-07 2:31
simplicitylabs15-May-07 2:31 
AnswerRe: Access denied... Pin
sam#15-May-07 2:38
sam#15-May-07 2:38 
GeneralRe: Access denied... Pin
simplicitylabs15-May-07 2:49
simplicitylabs15-May-07 2:49 
GeneralRe: Access denied... Pin
sam#15-May-07 3:01
sam#15-May-07 3:01 
AnswerRe: Access denied... Pin
Martin#15-May-07 2:50
Martin#15-May-07 2:50 
GeneralRe: Access denied... Pin
simplicitylabs15-May-07 3:01
simplicitylabs15-May-07 3:01 
GeneralRe: Access denied... Pin
Martin#15-May-07 3:04
Martin#15-May-07 3:04 
QuestionCustom WinForm Inheritance Pin
3green15-May-07 2:27
3green15-May-07 2:27 
AnswerRe: Custom WinForm Inheritance Pin
Martin#15-May-07 2:34
Martin#15-May-07 2:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.