Posts

Showing posts from May, 2012

Dual SIM china mobile PC Suite or Phone Suite

Image
Here is SMS sending windows software for dual sim mobile. Its basically QMobile phone suit. This application work for Qmobile almost all models. You can try your luck with your other phone . It can be used as S MS sending windows software for dual SIM china mobiles. 1. Select Inbox and press this button to read all the SMS from mobile: 2. Now click Configrations: 3. Here you can select your SIM card which you want to use for SMS sending. Here is the download link:   http://www.mediafire.com/?rsx0iootbe3l4zi If you want to download COM Port drivers for china mobile or QMobile then follow this link. http://www.china-mobile-phone.com/service/download.htm

Drivers (Personal use only)

Drivers Main: http://www.mediafire.com/?q8nm80lmcjcfb Com Port Drivers (MT6253) : http://www.mediafire.com/?9zt095hz5iv4ekl These com port drivers works with most of the china mobiles including Qmobile E400i and others. Try your luck.

How to make Telerik MVC Grid Column or cell readonly on edit mode?

There is a simple solution if you want to make a column or cell readonly and non editable when the grid is in edit mode in the Telerik MVC Grid . columns.Bound(x => x.FullName).Width(120) . ReadOnly() ;   Simply call the ReadOnly() function of telerik mvc grid. It works for me hope you'll got it too as well.

How to See/Find the List of All Sent Pending Friend Requests in Facebook 2012

Here is a method to find the pending requests that you sent on facebook and did not accepted yet. For Chrome Users: 1.  Go to  http://www.unfriendfinder.com/download  and click  Download & Install. 2. Accept warnings to download. 3. Restart Chrome and That's it. (may be you need to login again on facebook) For Firefox Users: 1.  Go to  https://addons.mozilla.org/fr/firefox/addon/748  and install Grease Monkey script. 2.  Go to  http://www.unfriendfinder.com/download  and click  Download & Install. 3. Accept warnings to download. 4. Restart Firefox and That's it. (may be you need to login again on facebook) That's It. Hope it works for you.

Utility Apps (For Personal Use Only)

Multiple Small Apps: http://www.mediafire.com/?s7wno6w8ule99

How to check the radio button in mvc 3 when its bounded to a single boolean value

Hi Here i'll tell you how to check the radio button in mvc 3 when its bounded to a single boolean value. @Html.RadioButtonFor(model => model.ContactType, "False" , new { value = "Direct" })  @Html.RadioButtonFor(model => model.ContactType, new { value = "Mail" })  @Html.RadioButtonFor(model => model.ContactType, new { value = "Phone" }) Just pass the parameter "False" to your radio button and left others blank. If it does'nt work for you set all others "True" and any of them "False" . @Html.RadioButtonFor(model => model.ContactType,  "False" , new { value = "Direct" })  @Html.RadioButtonFor(model => model.ContactType, "True",  new { value = "Mail" })  @Html.RadioButtonFor(model => model.ContactType,  "True", new { value = "Phone" }) Thank You

How to Bind a checkbox with Boolean value in the Telerik MVC3 grid

Spend hours to find the solution but when i checked the Telerik forum got it simply. Here is the code Actully we use ClientTemplate and   checkbox inside it with  databound to  boolean.  columns.Template(                @<text>         <input name="checkedRecords" type="checkbox" value=" @ item.AnyValu e" title="checkedRecords"                          @ if ( item.MyCheckPost )                         {                             <text> checked="checked" </text>                             <text> disabled="disabled" </text>                         }                     />         </text>)                .Title("").Width(36).HtmlAttributes(new { style = "text-align:center" }); Here  item.MyCheckPost is True or False. Simply modify it accordingly and use in your code. Thanks

"The call is ambiguous between the following methods or properties" MVC 3 Telerik Drodownlist

While working on my project i suddenly got this error... The call is ambiguous between the following methods or properties: 'Telerik.Web.Mvc.UI.Fluent.DropDownBuilderBase<Telerik.Web.Mvc.UI.DropDownList,Telerik.Web.Mvc.UI.Fluent.DropDownListBuilder>.BindTo(System.Collections.Generic.IEnumerable<Telerik.Web.Mvc.UI.DropDownItem>)' and 'Telerik.Web.Mvc.UI.Fluent.DropDownBuilderBase<Telerik.Web.Mvc.UI.DropDownList,Telerik.Web.Mvc.UI.Fluent.DropDownListBuilder>.BindTo(System.Collections.Generic.IEnumerable<System.Web.Mvc.SelectListItem>)' After spending few mints on tracking this issue i get it solved. This error comes when you DO NOT provide the data to the view from the Controller.  In my case here is the code that work for me. Just provide all the things used in View like ViewBag,ViewData etc etc. public ActionResult Index(FormCollection formValues)         {              var CountryList = GetCountryList();             ViewBag

MVC 3 "parameterless constructor defined for this object."

While working on my MVC 3.0 project i got this shocking error when i put my grid and a BeginForm() on the same page while i was passing a List of my model to the View. so here are some steps that i do and get it fixed. 1. Add and empty constructor to your Model public class MyModel     {          ////Constructor of MyModel Class               public  MyModel()                  {                   }         /// End constructor     }

How to add an HTML Anchor(a tag) in Telerik MVC controls

Following Code shows how to add an HTML anchor tag link in Telerik  controls for MVC. you can pas query string as well using this link. Html.Telerik().Grid(Model) .Name("Items") .DataKeys(keys => { keys.Add(x => x.Id); }) .Columns(columns => { columns.Bound(x => x.Id).Title("").Format(Html.ActionLink("edit", "Edit", new { id = "{0}" }).ToHtmlString()).Encoded(false).Width(60); }) .Render();