Thursday, 14 March 2013


Nenjodu Cherthu – Yuvvh – Malayalam Lyrics


Singer : Aalaap Raju
Music : Sreejith & Saachin
Lyrics : Naveen Maraar
Album : Yuvvh
Nenjodu cherthu, pattonnu padan
Pattinte eenam neeyanu
Kaanathe kannil, ariyathe nenjil
Viriyunnu chitram, neeyanu
Nee varu, ee pattin raagamai
Nee tharoo, ee chitram varnamai
Hridayam thookum pranayam
Nalki njanum nila sandhye
Thirike nanayum mizhikal, nalki neeyum engo maanju
Nenjodu cherthu, pattonnu padan
Pattinte eenam neeyanu
Kananai mohangal chirakadikkumbol,
Snehathin kaattayi nee enne thalodi
Mizhiyile mozhiyilum ninmugham mathramai
Kanavile kannilum nin niram mathram
Maayalle akale akale akale
Nenjodu cherthu, pattonnu padan
pattinte eenam neeyanu
Chollanai kavyangal ezhuthiyathellam
Nin chundil pookkunna hindolamayi
Aazhiyum maariyum nin swaram mathrameki
Ninavile nizhalilum ninte nishwasam
Thedunnu arikil nee innivide
Nenjodu cherthu, pattonnu padan
Pattinte eenam neeyanu
Kanathe kannil, uhuhooohuhu…
Viriyunnu chitram, uhuhoohuhu….

Nenjodu Cherthu – Yuvvh – Telugu Lyrics


మీరు నా గుండె దగ్గరగా, నేను ఒక పాట పాడే ఉంటుంది
 పాట యొక్క ట్యూన్ఇది మీరేనని
నా కళ్ళు కనిపించడు చిత్రం
నా గుండెకు unkowingly వచ్చిన ఒక
అది మీరేనని
ఓహ్ పాట యొక్క మ్యూజిక్ వంటి వచ్చి
ఓహ్ మీదే నా చిత్రాన్ని రంగులు

చంద్రకాంతితో వెలుగుతున్న సంధ్యా, ఐ లవ్ నిండిన నా గుండె ఇచ్చారు
నాకు కన్నీటి కళ్ళు ఇవ్వడం, మీరు అదృశ్యమయ్యాయి!

మీరు నా గుండె దగ్గరగా, నేను ఒక పాట పాడే ఉంటుంది
 పాట యొక్క ట్యూన్ఇది మీరేనని
నా కళ్ళు కనిపించడు చిత్రం
నా గుండెకు unkowingly వచ్చిన ఒక
అది మీరేనని

[గాళ్ మధ్య సంభాషణ]

చూడండి కోరిక నా రెక్కలు విమాన స్వీకరించడం ప్రారంభించింది చేసినప్పుడు
మీరుప్రేమ ఒక గాలి నన్ను caressed
కూడా నా కళ్ళ వాయిస్ లో మీరు మాత్రమే ఉంది
నా కలలు దృష్టిలోమీరు రంగు ఉన్నాయి ..
ఓహ్ దూరంగాదూరంగాదూరంగా వెళ్ళి లేదు

మీరు నా గుండె దగ్గరగా, నేను ఒక పాట పాడే ఉంటుంది
 పాట యొక్క ట్యూన్ఇది మీరేనని
నా కళ్ళు కనిపించడు చిత్రం
నా గుండెకు unkowingly వచ్చిన ఒక
అది మీరేనని

నేను వల్లించటం రాశారు అన్ని పద్యాలు
మీ పెదవులు యొక్క అలలు ఎదిగారు
నెమ్మదిగా, మీ వాయిస్ మార్చారు
కూడా నా కలలు యొక్క నీడలు లో
మీ శ్వాస ఉంది
నేనునా పక్కన శోది
అయితే ఈ రోజు మీరు ఎక్కడ ఉన్నారు?

మీరు నా గుండె దగ్గరగా, నేను ఒక పాట పాడే ఉంటుంది
 పాట యొక్క ట్యూన్ఇది మీరేనని
నా కళ్ళు కనిపించడు చిత్రం
నా గుండెకు unkowingly వచ్చిన ఒక
అది మీరేనని




Friday, 30 November 2012

ComboBox selectchanged to sort by Gridview




How to get combobox selectchanged Orderby low,High showing DatgridView  inC# WinForm from MS Access Database.


private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)

        {
            string selectString = "";
           
            //this.stockTableAdapter.FillBy(this.dB_BillingDataSet.stock);
            System.Data.OleDb.OleDbConnection conn = new System.Data.OleDb.OleDbConnection();
            conn.ConnectionString = BillingApplication.Properties.Settings.Default.DB_BillingConnectionString;
            conn.Open();
            if (comboBox1.Text == "Lower")
                selectString = "SELECT product_id,product_quantity FROM stock ORDER BY product_quantity ASC";
            else
                selectString = "SELECT product_id,product_quantity FROM stock ORDER BY product_quantity DESC";
            int id = 0, product_quantity = 0, r = 0;
           int r1 = 0;
            OleDbCommand cmd = new OleDbCommand(selectString, conn);
            OleDbDataReader reader = cmd.ExecuteReader();
            if (reader.HasRows)
            {
                while (reader.Read())
                {

                    //stock query product id, quantity
                    //product  table just  name  where stock(product id)
                    selectString = "SELECT product_name FROM product WHERE(product_id = " + Convert.ToInt32(reader["product_id"]) + ")";
                    cmd = new OleDbCommand(selectString, conn);
                    OleDbDataReader reader1 = cmd.ExecuteReader();
                
                    string product_name = "";
                    if (reader1.HasRows)
                    {
                        while (reader1.Read())
                        {
                            id = Convert.ToInt32(reader["product_id"]);
                            product_name = reader1["product_name"].ToString();
                            productDataGridView.Rows.Add();
                            productDataGridView.Rows[r1].Cells[1].Value = reader1["product_name"].ToString();
                           
                            r1++;
                           
                        }
                    }
                    //add to grid
                    productDataGridView.Rows.Add();
                    productDataGridView.Rows[r].Cells[0].Value = reader["product_id"].ToString();
                  
                    productDataGridView.Rows[r].Cells[2].Value = reader["product_quantity"].ToString();

                    r++;

                }
            }
            }

When i select a sort by Lower in combobox it showing quantitiy low to High in Ascending order.



When i select a sort by Higher in combobox it showing quantitiy High to Low in Descending Order.



 

SharePoint tenant opt-out for modern lists is retiring in 2019

We're making some changes to how environments can opt out of modern lists in SharePoint. Starting April 1, 2019, we're going to be...