View Full Version : Help me editing flash files
NightMare-
16-01-2003, 11:52 PM
Hello there....could someone please help me to understand how i can edit a flash file with visual basic? I mean.... what commands i should use e.g to change a hex part from a flash file!
Sorry for my english
Manipulator
17-01-2003, 09:32 AM
Originally posted by NightMare-
Hello there....could someone please help me to understand how i can edit a flash file with visual basic? I mean.... what commands i should use e.g to change a hex part from a flash file!
Sorry for my english
i don't think there is some one can edit flash file using visual basic,is there any,maybe got ,i don't know lah.
mostly we use some software than write by some nokia phone user(studying programming) to edit the phone or just use hex workshop to cut and paste.
NightMare-
17-01-2003, 10:14 PM
I think you didn't understand my point!I mean...e.g Tone Patcher makes some changes in the flash file...right? This program has been written in Visual Basic or C++ . Which command i should use to edit the flash files?
Kontact
18-01-2003, 02:19 PM
Originally posted by NightMare-
I think you didn't understand my point!I mean...e.g Tone Patcher makes some changes in the flash file...right? This program has been written in Visual Basic or C++ . Which command i should use to edit the flash files?
let me try.. but i know only in c or c++.
for ex. u open a flash file (mcu/ppm) and u want to change the mcu chksum. w/c is located on 0x22 0x23.
u put the file on a char pointer. pFlashFile this contain the whole flash file.
if u did not use a pointer and use file to open it. it will be very slow since it will access the file from the HD. not like if u load it to a pointer so that it ill be on the computer memory.
for ex. mcu1 chksum has 0x1122
pFlashFile[0x22] = 0x11;
pFlashFile[0x23] = 0x22;
if u want to change 1122 to a certain number.
pFlashFile[0x22] = 0xAA;
pFlashFile[0x23] = 0xBB;
or u could use memory/string manipulation .
sadly i have no idea how to do it in VB.
hope this help.
regards,
ikm19
18-01-2003, 08:33 PM
Thank God for not makeing me a programer LOL.......
Animation is the best field for me....
hah hahha ha
liteFun
19-01-2003, 01:09 PM
Originally posted by ikm19
Thank God for not makeing me a programer LOL.......
Animation is the best field for me....
hah hahha ha
and you couldn't do animations without programmers who did the tools for you.
(i'm not a programmer too, but still want to know how they do the tricks)
ikm19
19-01-2003, 09:24 PM
@litefun
Hey i dint mean that i know its really very hard to make a program and the guys here are doing best to make our life easy I mean they make the programs And give out us for free....
So i allways respect out those programers but never try to become one.....
NightMare-
19-01-2003, 10:49 PM
Thank you for that shot Kontact! But unfortunenatelly i don't know anything in c or c++ :(
If you or anyone else know how to do this in visual basic please post a reply! :)
cyclo
20-01-2003, 02:14 AM
Originally posted by liteFun
(i'm not a programmer too, but still want to know how they do the tricks)
Got a hot tip for you. Buy newbie programming book, and spend a couple of weeks with it.
The only way to learn how to program is to program :)
Powered by vBulletin® Version 4.2.0 Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.