I have address that i want to freeze its for a hex program i want to freeze the left time for the trial. what i mean is freezing the address value of that process
am using vb can some one give me a code for that so i can keep using the trial without needing to upgrade
Plz help me
am a choob
Set your desired value under a Timer_Tick event, with the said timer's interval to 1.
I don't understand the question, Is it you want to stop the timer for a period of time?
In which case you
Code:
Timer.enabled=False
If you want a slight pause in anything it is
Code:
System.Threading.Thread.Sleep (1000) '1000 = 1Second , it works in ms , so 500ms = ' '1/2 second
i want to make a dll file that i will inject to the process
and thanx for help i will try ur ideas
Originally Posted by fadee
i want to make a dll file that i will inject to the process
and thanx for help i will try ur ideas
this is in a better way
i want to freeze the value of an address of certain process using dll file injection way
Code:
Dim sample As String = "sample"
Do Until sample = "not sample"
'put value change/set here
Loop
It's a very simple "do" loop.
Pixiecorp dethroned? That is win.
Originally Posted by songkipark
Pixiecorp dethroned? That is win.
Get with the system here, champ.
Originally Posted by lolland
Code:
Dim sample As String = "sample"
Do Until sample = "not sample"
'put value change/set here
Loop
It's a very simple "do" loop.
First thanx for help
i got it but where i but the value like i want to freeze "0x001D462F" on "1"
i know am asking alot "i am a choob" don't get mad at me i want to learn
and again Thanx
Wrong Post, sorry.
Are you asking how to freeze the value?
Add a timer to the form. Underneath the timer event. Put writeprocessmemory() with the address to write to and the value you want to write and every time the timer executes it will rewrite your value.
Originally Posted by fadee
i want to make a dll file that i will inject to the process