PDA

View Full Version : DCT4 Calc for Palm OS???



fuzion
21-10-2003, 01:46 AM
does anyone have a dct4 calc for the palm os??? or a palm program that allows you to run windows applications??? either would be much appreciated

Unique
21-10-2003, 02:05 AM
I do think that we (UniqueSW) had developed one...

I shall check for you.

John

fuzion
22-10-2003, 03:14 AM
alright... thanks unique...
if possible... if you have one... could you please send it to [email protected] ???

- fuzion

inderinderinder
27-10-2003, 12:55 PM
Any word on this yet?

Unique
27-10-2003, 03:43 PM
We have it on Beta... you can see pictures on our forum.

Hope to release it this week.

John

majster
04-11-2003, 02:05 AM
Or maybe anyone have calculator dct-4 for nokia 9210 (i) ?

crashynot
14-11-2003, 01:34 AM
I have just done a calc for Pocket Pc 2002
works ok
but only v1 codes´

fuzion
14-11-2003, 05:19 AM
you should post it
share the wealth
lol

laxxe
14-11-2003, 07:51 PM
Here you go
its only a beta version give you v1 codes
post results

You must have the source of the algo (to write this program)? I would like the source, or even a finish PHP-script (which is what I would like/try to write - if I had and understood the algo source).

crashynot
14-11-2003, 07:54 PM
I used
eMbedded Visual Basic 3.0
to create the calc
if you know the language ill send you the algo

laxxe
14-11-2003, 07:56 PM
I used
eMbedded Visual Basic 3.0
to create the calc
if you know the language ill send you the algo

I did code very little in an earlier version of Visual Basic (LONG time ago), but maybe I can see what it's doing, and convert it to PHP language.

crashynot
14-11-2003, 07:59 PM
But do you want to make a calc For Pocket Pc ( Plam ) or for other
OS system??

crashynot
15-11-2003, 12:57 AM
Here is a pic of it working on my ASUS Mypal Pocket PC

Nyanko
15-11-2003, 02:33 AM
Hi Crashynot,

I want make a DCT4calc for Windows CE.NET 4.1 Docomo Sigmarion III.
Now I'm reverse-engineering the dct4nck.exe with W32dasm.
Send me the algo, please please please......

my E-mail address is [email protected]

webshoxx
16-11-2003, 05:44 PM
Here is the Algo
i have for Pocket PC 2002 for "eMbedded Visual Basic 3.0"

hope you have fun with it
it works

Oh yeah Email me for PASSword
Sorry

please can you send me the password by pm? i would like to make an optimized version for handheld pc2000 (mips architecture)

Miss_Nokia
17-11-2003, 03:31 PM
did crashynot send u the password and was it the algo
just dont want to waste mine time thats all

i remember crashynots dct3 calc software that was not and people are still waiting for so im sorry if im scepticle

@crashynot
about that dct3 software have you made it yet? :rolleyes:

crashynot
17-11-2003, 03:36 PM
Sorry
but wat peple said was that dtc3 was a big lie
and now there is dct3 remote unlocking
so i just dont know
was i telling the truth or did i invent it
And the algo that i posted above works just check out the beta version that is for download

Miss_Nokia
17-11-2003, 03:42 PM
no sorry crashy i remember very well
u were posting files and saying they were your dct3 calc

lmao

sorry mate but i remember and so do others im sure
u did it

some guy cant remember who made u look like a silly billy everytime you did it too
im sure the mods even warned u over it
u got banned for a little while i remember

u telling porkies again crashy

anyway no hard feelings if u got it right in the end

but i remember lol

webshoxx
23-11-2003, 09:57 PM
Still no reply from him...
I emailed him, but no code for Algo.zip

crashynot
24-11-2003, 12:18 AM
code for algo
147258369

Assamiea
26-11-2003, 03:28 AM
Here you go
its only a beta version give you v1 codes
post results

There is nothing happen after I key in IMEI# and Network code then press calculate.

Can you please tell how to use?

Thanks!

crashynot
26-11-2003, 09:55 AM
There is nothing happen after I key in IMEI# and Network code then press calculate.

Can you please tell how to use?

Thanks!
What Os are you using ? (Pocket pc 2002)?

and into what folder did you put the program ?

Assamiea
26-11-2003, 01:20 PM
What Os are you using ? (Pocket pc 2002)?

and into what folder did you put the program ?

Yup, iPAQ 3950 pocket pc 2002.

CyberBOG calc for POcket PC 2002 folder under my device\temp\ and n devicestorage card\

Miss_Nokia
26-11-2003, 01:52 PM
is this one of your not real programs Crashynot
hope u are not making this poor guy use an empty shell
with no meat
:-o

crashynot
26-11-2003, 05:20 PM
Yup, iPAQ 3950 pocket pc 2002.

CyberBOG calc for POcket PC 2002 folder under my device\temp\ and n devicestorage card\
Put it in the Program in the program folder
and the Nuc file in System
and try again
see if it will work now

Assamiea
27-11-2003, 06:13 AM
Put it in the Program in the program folder
and the Nuc file in System
and try again
see if it will work now

what's Nuc file? where to download it?

HONGXING
27-11-2003, 07:42 AM
This is code for shell, not DCT4 mastercode algo...
Reverse engineer HEX. Algo will not be given out by me.


Dim chemei As String

Dim chspnr As String

chemei = Val(TextIMEI.Text)

chspnr = Val(TextCode.Text)

End If



calcedcodes.Text = ""



Dim BatchFile As String

BatchFile = "#1"

Open BatchFile As #1

Print #1, "dct4.exe %1 %2 %3 >code.txt"

Close #1



If Option5.Value = True Then Shell (" #1" + TextIMEI.Text + " " + TextCode.Text), vbMinimizedNoFocus

If Option2.Value = True Then Shell (" #1" + TextIMEI.Text + " " + TextCode.Text), vbMinimizedNoFocus



Sleep 100



Dim FileNum As Integer

Dim myString As String

Dim NumLines As Integer

FileNum = FreeFile

NumLines = 0



Open "code.txt" For Input As FileNum

Do While Not EOF(FileNum)

Line Input #FileNum, myString



If NumLines >= 7 And NumLines <= 13 Then

calcedcodes.Text = calcedcodes.Text & myString & vbCrLf

End If

NumLines = NumLines + 1



Loop



Close #FileNum





End Sub

mehdi
28-11-2003, 12:00 AM
i someone send me algo, i'll make it using C !! i have C compiler for Palm !!
just need source!! on any language (C, VB, PHP...)

elbertlumenier
14-01-2004, 10:00 PM
hi, can anyone help me with the dct4 coding algoritm for visual basic..??
Any help would be greatly appreciated

Elbert