Hello,
I would like to stop a program (gpsgate) in memory usind windows command line.
Do you know how to do that ?
Or do you know another solution (or program) for this ?
Thanks
I wrote an app VJTaskKiller to help on this. I imagine itsme has much better tools to do this, and also perhaps mortscript.
V
vijay555 said:
I wrote an app VJTaskKiller to help on this. I imagine itsme has much better tools to do this, and also perhaps mortscript.
V
Click to expand...
Click to collapse
Nice !! I'll try it. Thank you vijay555
Your program is excellent and i will keep it !!
BUT i have a problem with gpsgate (specific problem i think). It is a hide task. The process name is GpsGateCE.EXE and vjtaskkiller doens't work with this argument.
Do you have a solution ? I will try to find if there is a an associated task name with GpsGateCE.EXE.
Thank you
Unfortunately I haven't updated VJTaskKiller to kill hidden tasks, right now it closes windows, not processes.
I will try to update it at some point soon, but do try searching for itsme's tools, or otherwise I will try to update at some point.
V
Ok thank you again vijay555 !
To close GpsGate you can make a little progam that send e windows message:
gpsGateHWnd = FindWindow(NULL, TEXT("Franson GpsGate"));
SendMessage(gpsGateHWnd, WM_COMMAND, 0x000000C8, 0x00000000);
Bye Bye
Related
Hi,
I'm trying to get around the problem of the quiet sound with the AT&T rom, I have another XDA running the latest T-Mo rom and was hoping to mess around with some dll's from the TMo rom to see if I could sort the problem, but the drivers used for the sound are protected somehow in the rom, so it won't let me copy them to my SD card or PC (which means I can't try it on the AT&T rom)
Is there any way of copying these files out ? and then into the AT&T rom ??
Cheers
Neil
see dumprom
No good for me then, I only have Windows Machines here..
Ok, I have thought of a possible work around, but I need someone with the T-Mobile WM2003 Rom (Pref 4.01.16) & Linux/Unix to copy the wavedev.dll & waveapi.dll from the \Windows folder and send them to me so it can try it out..
I'm sure its not only me that this "feature" annoys. it makes Tomtom especially useless on the voice prompt side of things.
Cheers
Neil
?? I don't see the problem, dumprom is a windows tool.
in case you had not found it yet, I added the link to the binary to the wiki page.
Ah right, excellent.
Sorry I assumed it was the same as the makerom tool which states its unix/linux.
-=edit=- I just tried the link on the dumprom wiki page, and get the dreaded 404 error
Thanks
Neil
oeps. a common wiki error, I forgot to '~'-escape the '~' in the url.
Thanks mate, it seems to be working now
I'll have a play about with it when I get home.
Cheers
Neil
Back again :lol:
The dumprom app crashes (tried on two machines) when I try to execute it. I have tried it with various command line configuations but the little windows xp error box pops up saying that the program must be closed
dumprom crash
Hi Swifty
Yeah I got this too - until I realised that I was the problem. I was omitting the myrom.nb1 filename (or whatever you have called yours) from the command line! D'Oh! What is your exact command line that you use?
it is known to be buggy and crash on certain roms.
I am working on an improved version in perl - dumpxip.pl
but it does not extract files stored as 'xip' yet.
:lol:
Silly me I done the same thing as you and omitted the rom file.. thanks
I have now extracted the AT&T and TMobile roms and compared the files, the AT&T's wavedev.dll is larger in size, I think this is where the modifications were made.. but I can't rebuild the TMo version into the AT&T rom because I don't use linux
Hopefully someone can help me out and we will finally have a perfect WM2003 Rom -=edit=- IF it works :lol: :roll:
Cheers
Neil
Carefull!
i fearbthat just swapping in the new dll may not help... it may have other dependancies that also need changing. The interface / entry points may also have changed and you may need a whole slew of other stuff and some other registry settings too. But pls go ahead and try... let us know!
Carefull!
i fearbthat just swapping in the new dll may not help... it may have other dependancies that also need changing. The interface / entry points may also have changed and you may need a whole slew of other stuff and some other registry settings too. But pls go ahead and try... let us know!
Swifty said:
:lol:
Silly me I done the same thing as you and omitted the rom file.. thanks
I have now extracted the AT&T and TMobile roms and compared the files, the AT&T's wavedev.dll is larger in size, I think this is where the modifications were made.. but I can't rebuild the TMo version into the AT&T rom because I don't use linux
Hopefully someone can help me out and we will finally have a perfect WM2003 Rom -=edit=- IF it works :lol: :roll:
Cheers
Neil
Click to expand...
Click to collapse
Neil,
Use CYGWIN it's an excellent "Linux running as a command line in Windows" environment. It's easy to install, start and run commands. It comes up as a DOS box-like interface and Voila! You have Linux, stable, clean and fast, including the ability to build ROMs.
Sorry to bring up a probably old topic, but I'm new to editing the registry on a PDA.
I've seen lots of posts on this hack and that hack, and I've wanted to try them, but I cannot get into my registry.
I've tried PHM Reg Edit, but to no avail. Neither will MobileRegistryEditor work.
All I need is for someone to please reply with a link to a tool that'll work and simple instruction. PLEASE. Thank folks.
regedit_820.exe
i've attached it. worked on my wizard. xfer it to the phone, then click on it. you'll have to teach yourself how to use it.
You rock! Thanks so much!
MobileRegistryEditor not working
I tried your above attached regedit file and got the following message on my Cingular 8125 (Wizard):
"regedit_820_169 is not a valid Pocket PC application"
???
I noticed that your phone is a G4 (.0001 in ver #), I have G3; different regedit needed?
porterx said:
regedit_820.exe
i've attached it. worked on my wizard. xfer it to the phone, then click on it. you'll have to teach yourself how to use it.
Click to expand...
Click to collapse
You're the man !
You finnally founf the ultimate solution !!!
Thank you sooooooooooooooooo much !
Have a nice day !
hi guys,
I try to exit my application in the following way but it doesnt seem to work:
Code:
AfxGetApp()->ExitInstance();
So, whats the way to exit the application cleanly without memory leaks.
Mohammad
???????????????
It really depends on what you do in you application. Normally you just close the main window, but if you used memory allocation you have to clean it up first.
Since this is not managed code any memory allocated with commands like new, malloc, LocalAlloc will not be released automatically when you close your app.
thanks levenum u r very helpful and gentle... I used the following in the MainFrame wnd:
Code:
DestroyWindow();
Sorry for posting too many questions these days, but I have a big work on WM and its my first time to program for this platform..
I might ask more :wink: , I will make this forum more active :lol:
thanx
Mohammad
Hello, i have the Schap's ROM in my Trinity,
In the FTouchFLO program, my "Up-Down" minimize all windows, and i want "Down-Up" maximize the last used application (i did a lot of research but nothing found =/ ).
Thank You if you know a Minimize.exe or TaskSwitch.exe command line or other can do this... Thank You =)
try searching for mort scripts
Games for test Tomb Raider, Worms world party
I already tired
gpad 0.9 <- works in some phone menus but not in games
gContorler <- not working
DredSensor <- crashes
FlexiPad from tg01 <-> From where can I get it?
Some other apps, any ideas?
hello,
i have the tg01. if you know which files, than you can have it.
well find flexipad.exe in /windows dir sent me it and then I will tell you which dll I will be needing later
hello,
there ist no flexipad.exe.
i have extractet my rom, but find only freepadsettings.exe and something like *.cpl or *.htm.
here is a list of files from rom ... View attachment Archive.zip
please send me these pad settings file and exe so I will be able to analize it ;-)
Thanks!
hello,
here:
http://rapidshare.com/files/328130422/OEM.zip
http://rapidshare.com/files/328130417/freesystsb.zip
please tell results.
good luck
freepadsettings.exe doesn't create reg entries automatically :-/
If you could drop freepad registry entries with resco or other app, I hope it would do the trick
Revived error
CommonRegistry not found
Version=1.0.3421.27636
Culture=neutral
PublicKeyToken=null
str0g said:
freepadsettings.exe doesn't create reg entries automatically :-/
If you could drop freepad registry entries with resco or other app, I hope it would do the trick
Revived error
CommonRegistry not found
Version=1.0.3421.27636
Culture=neutral
PublicKeyToken=null
Click to expand...
Click to collapse
hello,
dont forgett response:
View attachment freepad.zip
bye
possible to work on HTC Leo ?
str0g said:
freepadsettings.exe doesn't create reg entries automatically :-/
If you could drop freepad registry entries with resco or other app, I hope it would do the trick
Revived error
CommonRegistry not found
Version=1.0.3421.27636
Culture=neutral
PublicKeyToken=null
Click to expand...
Click to collapse
Hello,
whats your opinion: is it possible that this app works on a HTC Leo ?
if you cook a rom, than its possible (i think).
i will try it if i have more time.
hope for responding next 2 weeks.
okokur said:
if you cook a rom, than its possible (i think).
i will try it if i have more time.
hope for responding next 2 weeks.
Click to expand...
Click to collapse
that is what i am longing for! wait for your good news!
Hi Okokur,
I tried to run FreePadSettings.exe on my HD2, but couldn't find a way to make it work.
- OEM.zip is corrupted : I could not extract the entire archive (don't think it would solve my problem, but who knows ?)
- I put in the same folder FreePadSettings.exe, the .mui, and the .cpl, added tg01w.dll and CommonRegistry.dll and Utility.dll, and then I got the message : Can't find PInvoke DLL "Utility.dll"
- I placed Utility.dll in Windows folder, but I got the same result
Don't know what to do next ....
By the way, are you sure it is this exe that launch the PAD ? Its name makes me think of a config utility ...
hello,
yes, you are true. its the config-tool.
the reason is, on toshiba you need to push/pull a special-toshiba key
(known as zoombar for ie8).
i try and try and try and i could minimize to this package.
http://rapidshare.com/files/361242527/PACKAGE_TF_testflex.7z
but i have error. it askeds for utility.dll, the utility.dll was inside.
and i see many security-questions inside the dll's.
:-(
any update to this? would be sweet to have the d-pad working on my tp2 too...
thanks