Friday, July 19, 2019

There were deployment errors : XAMARIN


This error occurs for mis-configuration of Application.
Make sure you have configured sdk correctly. Tools-> Option-> Xamarin (Give the right path of jdk)


Right click on your project. -> properties -> Android Options-> check Use share Runtime. Uncheck Use Fast Deployment(debug mode only).


Right click on your project. -> properties -> Application-> set the right version of Android sdk and your emulators Android sdk  from dropdown


It should solve your errors.

Tuesday, July 16, 2019

MOTHER

M is for the million things she gave me.
O means only that she's growing Old.
T is for the tears she shed to save me
H is for her heart of purest gold.
E is for her eyes, with love-light shining.
R means right, and right she'll always be.

Together, they spell "MOTHER"
That means the world to us.

gHRM GC Work BarCode Generator and Bulk data Upload

Barcode Generator using ZXing.Net.      ZXing library

Upload data of attendance csv file format.

Tuesday, June 18, 2019

Pass Parameter to javascript function

return '<div class="text-center"><a href="#" OnClick="Open(\''+ data.record.FileName + '\');"><i class="fa fa-trash-o"></i></a></div>';



Monday, June 10, 2019

Multiple Account Code Correction


Search and Update Account Code (Distribute From One Account to Other Account Or Create New.)

Bulk SMS Send

This is a Bulk sms send UI. Users Can create Group, Create
Custom SMS, Create a Effective date
(Send automatic sms by process, services).

.Net Framework
C# Language
Rest API





public JsonResult ExecuteMessage(string SendTo, string SENDMessageDetailsId)
        {
            HttpClient Client = new HttpClient();
            Client.BaseAddress = new Uri("http://192.192.192.233:8091/"); //api/nonmaskingsms/easysend?sender=01713140127&message=hello%20bangladesh)
            Client.DefaultRequestHeaders.Clear();
            Client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
            //Client.DefaultRequestHeaders.Add("Accept", "application/json");
            //Client.DefaultRequestHeaders.Add("Content-Type", "application/json");
            HttpResponseMessage message = Client.GetAsync($"api/......../(nonmaskingsms/easysend)?sender={SendTo}&message={SENDMessageDetailsId}").Result;
            if (message.IsSuccessStatusCode)
            {
                return Json(1, JsonRequestBehavior.AllowGet);
            }
            else
                return Json(0, JsonRequestBehavior.AllowGet);
        }

Screen Record

 Windows Screen Record WindowsKey+ Alt + R Recording Starts.