SMS text reader dll

Discorez

Member
Licensed User
Longtime User
I have tested.
1. At compilation there is an error:
Invalid property: SearchSMS
Line number: 14
Line: Label2.Text = SMS.SearchSMS
2. Messages don't load, only is shown such message: "No entries"

My device is Samsung i8000 Omnia II / WinMobile 6.5.3
 

taximania

Well-Known Member
Licensed User
Longtime User
I have tested.
1. At compilation there is an error:

2. Messages don't load, only is shown such message: "No entries"

My device is Samsung i8000 Omnia II / WinMobile 6.5.3

My mistake. Error in .sbp file.
I altered the Method name and didn't update the .sbp file
Try:
Label2.Text = sms.CheckSMS
If sms.CheckSMS returns 'Failed !' then the dll doesn't work on your device.

I'll post more details of the .dll in the morning.

I'm awaiting the arrival of grandson #1 :sign0060:
So I have a lot on my mind :)
 

taximania

Well-Known Member
Licensed User
Longtime User
Yes, it works and reads :)

:sign0060:

Zip file ammended in first post :sign0013:

SMSLib has 3 Objects.

SMSLib
SMSSend
SMSIntercept

SMSLib is demonstrated in the Zip file .sbp
SMSSend is identical to the Basic4ppc Outlook.dll New1(string number, string message)
SMSIntercept is New1(bool)
True is for NotifyAndDelete
False is for Notify

Don't get this library mixed up with my MsgLib.dll
I'm still working on that one :sign0089:
 

winjiadh

Active Member
Licensed User
Longtime User
How to interept

I download you .zip,and run the .sbp in my HD2 device. it run no error.
It could read the inbox and sent and outbox and deleted message.
And I change your code, I take your sms.New1 to sms.New1(True), and I run it, the error is "Error description: Error parsing(true) as a number."
Could you tell me the smsinterept how to use?
Could you post the sample code.
thank you very much.
 

taximania

Well-Known Member
Licensed User
Longtime User
And I change your code, I take your sms.New1 to sms.New1(True), and I run it, the error is "Error description: Error parsing(true) as a number."

Please read this tutorial.
Using a library in your Basic4ppc project
Then come back to this post.


SMSLib has 3 Objects.

SMSLib
SMSSend
SMSIntercept

I only added the SMSLib Object to the .sbp file and called it sms
You need use menu 'Tools/Add Object/SMSIntercept'
Call it ? smsinter
Then use smsinter(True)

But you have already tried it before and it doesn't work on a HD2 :sign0137:
It's the same lib as my other. I just combined them together.
 
Top