109 |
uint Address = txtAddress.ToUInt32(); |
uint Address = txtAddress.ToUInt32(); |
110 |
|
|
111 |
GenericMemoryProvider provider = new GenericMemoryProvider((IAcceptsProcessAndConfig)this); |
GenericMemoryProvider provider = new GenericMemoryProvider((IAcceptsProcessAndConfig)this); |
112 |
|
provider.OpenProvider(); |
113 |
switch (DataType) |
switch (DataType) |
114 |
{ |
{ |
115 |
case SearchDataTypes._8bits: |
case SearchDataTypes._8bits: |
129 |
else { provider.PatchMemory(Address, txtValue.ToInt64()); } |
else { provider.PatchMemory(Address, txtValue.ToInt64()); } |
130 |
break; |
break; |
131 |
} |
} |
132 |
|
provider.CloseProvider(); |
133 |
this.Close(); |
this.Close(); |
134 |
} |
} |
135 |
|
|