Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.70K
~258 People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for chathuD

[QUOTE=chathuD;1125026] [CODE] private void BindGrid(SmsPdu pdu) { DataRow dr=dt.NewRow(); SmsDeliverPdu data = (SmsDeliverPdu)pdu; dr[0]=data.OriginatingAddress.ToString(); dr[1]=data.SCTimestamp.ToString(); dr[2]=data.UserDataText; dt.Rows.Add(dr); dataGrid1.DataSource=dt; } [/CODE][/QUOTE] Here, we see that it is only handling text sms, what about the Picture messages? What about the text which is not supported by 7-bit charset?

Member Avatar for aatif
0
258

The End.