
csmart
RIM Veteran-
Content count
1,578 -
Joined
-
Last visited
-
Days Won
28
Everything posted by csmart
-
@Rajan, lucky man.... trying to go Palitana since long but could not make it.....
-
thank you all for the wishes....
-
@dkaile & @Genius, thank you very much....
-
Reliance Communications in pact with with Lenovo to introduce CDMA - GSM devices
csmart replied to Arun's topic in Reliance Communications
Does it mean that same number will work on both the network with these instruments? If that the case, it is amazing. otherwise it will be same as existing dual mode phones with Reliance brand... -
Is Reliance GSM network shutting down its operation in UP?
csmart replied to gyanesh's topic in Miscellaneous
Is it company owned store (Reliance Web Store) or franchise(Reliance Express)? If its later then I am not surprised as it may not able to renew its franchisee. With regards ot other store, it may be the same situation. It is hard to believe that they will closed down in UP. -
Discounts & Deals For Non Electronics/Gadget Stuff
csmart replied to mickeyforu's topic in The Lounge
Go Recharge offering 5% off, for SBI Card holders, on recharge for mobiles, DTH & Data Cards. -
WIFI ADSL2+Router Beetel 450TC-1 Speed Reduced
csmart replied to enjoylifewithsms's topic in General Technical Discussion
Is there any change in furniture? If you have put some metal article nearby may also cause the problem. -
Must Have Android Apps For Your Smartphone - Part II
csmart replied to rajanmehta's topic in Android
Beats V4 for those using AOKP & CM 9/10... more can be found on XDA..- 1,081 replies
-
- free message
- android
-
(and 4 more)
Tagged with:
-
@sumit so big car that it does not fit in photo also. .. congrats Sent from my GT-N7100 using Tapatalk 2
-
Irresistable Deals In Electronics, Gadgets, Mobiles, PC Hardware
csmart replied to rajanmehta's topic in General Technical Discussion
I am using my co account and not any free account. i get the error as shown in the image.- 6,376 replies
-
- Bitdefender
- bit
-
(and 8 more)
Tagged with:
-
Microsoft is considering buying Dell. Yes Dell. They are in talk with private equity players and also planning to make Dell a private co. Source There are also reports that Dell buyout is in advance talk. TOI
-
Irresistable Deals In Electronics, Gadgets, Mobiles, PC Hardware
csmart replied to rajanmehta's topic in General Technical Discussion
^^^^ not working...- 6,376 replies
-
- Bitdefender
- bit
-
(and 8 more)
Tagged with:
-
Airtel almost doubles the call charges.. i think other will follow the AirHel.. Days of cheaper rates over?? Source: Times of India
-
check your PM/mail....
-
Life today has become So 'LESS'; Phone: Cordless Cooking: Fireless Food: Fatless Dress: Sleeveless Leaders: Shameless Govt: Hopeless Job: Thankless Police: Clueless Policies: Aimless Conduct: Worthless Relations: Meaningless Attitude: Careless Feelings: Heartless Education: Valueless Arguments: Baseless Days: Restless Nights: Sleepless Future: Directionless & cup of tea: sugarless Still d Expectations r ENDLESS! So life has become useless
-
Irresistable Deals In Electronics, Gadgets, Mobiles, PC Hardware
csmart replied to rajanmehta's topic in General Technical Discussion
^^^ this is for the companies that are participating and if you move your mouse over the "?" on promo code, you fill see the same. Generally, large MNCs by in bulk and provide these software at mentioned price. This is not new. I know one of my friends, who is working with HP in US, always pay ~ $10 for microsoft products when he purchase through his office. Microsoft now has put it in public domain.- 6,376 replies
-
- Bitdefender
- bit
-
(and 8 more)
Tagged with:
-
The most US phones, by default adds '+1' when any number starts with +. Earlier, in some phones there was option where you can decide what to replace '+' so you can choose replacing + sign with 00 and it worked. However this could not work while sending SMS. I had similar issue with my Epic 4G. The only option is to change the numbers from + sign to desire prefix or use any of the above mentioned apps. Here is site that changes the prefix as per your desire. I had changed it from +91 to 0 from this site. Click here I also have Macro that works on Outlook contact to change the prefix from 0 to +91. I am putting the code below. You can copy paste in the Macro in outlook. I AM NOT RESPONSIBLE IF IT MESSES WITH YOUR CONTACTS. USE IT AT YOUR OWN RISK Sub FixPhoneFormat() Dim oFolder As MAPIFolder Set oFolder = Application.ActiveExplorer.CurrentFolder ' Confirm it's a contacts folder by looking at the default form name ' to see if it begins with "ipm.contact". ' This allows it to work on folders with custom forms If Left(UCase(oFolder.DefaultMessageClass), 11) <> "IPM.CONTACT" Then MsgBox "You need to select a Contacts folder", vbExclamation Exit Sub End If Dim nCounter As Integer nCounter = 0 Dim oItem For Each oItem In oFolder.Items Dim oContact As ContactItem ' If the current item is a not a Contact Group process the phone numbers ' If it's a DL, the code moves on to the next item If TypeName(oItem) <> "DistListItem" Then Set oContact = oItem With oContact .AssistantTelephoneNumber = FixFormat(.AssistantTelephoneNumber) .Business2TelephoneNumber = FixFormat(.Business2TelephoneNumber) .BusinessFaxNumber = FixFormat(.BusinessFaxNumber) .BusinessTelephoneNumber = FixFormat(.BusinessTelephoneNumber) .CallbackTelephoneNumber = FixFormat(.CallbackTelephoneNumber) .CarTelephoneNumber = FixFormat(.CarTelephoneNumber) .CompanyMainTelephoneNumber = FixFormat(.CompanyMainTelephoneNumber) .Home2TelephoneNumber = FixFormat(.Home2TelephoneNumber) .HomeFaxNumber = FixFormat(.HomeFaxNumber) .HomeTelephoneNumber = FixFormat(.HomeTelephoneNumber) .ISDNNumber = FixFormat(.ISDNNumber) .MobileTelephoneNumber = FixFormat(.MobileTelephoneNumber) .OtherFaxNumber = FixFormat(.OtherFaxNumber) .OtherTelephoneNumber = FixFormat(.OtherTelephoneNumber) .PagerNumber = FixFormat(.PagerNumber) .PrimaryTelephoneNumber = FixFormat(.PrimaryTelephoneNumber) .RadioTelephoneNumber = FixFormat(.RadioTelephoneNumber) .TelexNumber = FixFormat(.TelexNumber) .TTYTDDTelephoneNumber = FixFormat(.TTYTDDTelephoneNumber) .Save nCounter = nCounter + 1 End With End If Next MsgBox nCounter & " contacts processed.", vbInformation End Sub Private Function FixFormat(strPhone As String) As String strPhone = Trim(strPhone) FixFormat = strPhone If strPhone = "" Then Exit Function Dim prefix As String prefix = Left(strPhone, 1) If prefix = "+" Then Exit Function ' Configured for US '' ' Enter the correct prefix here '' Do While (prefix = "+" Or prefix = "1") '' '' ' if the prefix is 2 digits, change to 4; '' ' if 3 digits, change to 5 '' strPhone = Mid(strPhone, 3) '' prefix = Left(strPhone, 1) '' Loop '' ' After we clean up the country code, we remove non-numeric characters ' Can be tweaked to change formatting, ie: change 202.555.1212 to 202-555-1212 If prefix = "0" Or prefix <> "+" Then strPhone = Right(strPhone, (Len(strPhone) - 1)) strPhone = "+91 " & strPhone 'Replace(strPhone, "0", "+91", 1) ElseIf prefix <> "0" And prefix <> "+" Then strPhone = "+91 " & strPhone End If '' strPhone = Replace(strPhone, "(", "") '' strPhone = Replace(strPhone, ")", "") '' strPhone = Replace(strPhone, ".", "") '' strPhone = Replace(strPhone, " ", "") '' strPhone = Replace(strPhone, "-", "") '' FixFormat = strPhone End Function
-
Check Galaxy S3 Mini... Stripped down version of S3 - low processor and 4" screen.
-
Happy birthday Ankit...
-
Must Have Android Apps For Your Smartphone - Part II
csmart replied to rajanmehta's topic in Android
its showing Rs 160/- for mobile.. or first you purchased HD and then for mobile.- 1,081 replies
-
- free message
- android
-
(and 4 more)
Tagged with:
-
Must Have Android Apps For Your Smartphone - Part II
csmart replied to rajanmehta's topic in Android
Did anybody purchased tapatalk? Sent from my GT-N7100- 1,081 replies
-
- free message
- android
-
(and 4 more)
Tagged with:
-
Currently, I think Micromax funbook or iBall (as mentioned few posts above) or something. The price of the same is in the range of 7,500/- or so. You can try somebody selling used ones. otherwise very difficult to find one in your price range.
-
Must Have Android Apps For Your Smartphone - Part II
csmart replied to rajanmehta's topic in Android
need hindu calender and wi-fi teether for Note2.- 1,081 replies
-
- free message
- android
-
(and 4 more)
Tagged with:
-
This was not expected. Apple is cutting iPhone 5 components order. It seems that weak economy across the world is hurting the co. Source