studio NETSOULS

Applying Web To Your Business

Everyone of you must have heard that Google just released its’ open source browser - Chrome. So, should web designers be again testing their web designs against this?

The answer is NO.

Theoretically, Chrome uses the same rendering engine that Safari, Adobe AIR, iPhone, and Android use. So as web designers, we don’t have to worry about another annoying engine that can screw up our code.

What you should note, is that Chrome is really more about web applications and not web browsing. Google is basically taking aim at Microsoft Windows with this browser. They are positioning it as a platform to create software on.

This is something that Microsoft has been worrying about for years and I think it is one of the reasons why was MS has been slow to adopt the Web Standards.

More about Chrome

  • Currently 0 /5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

studio NetSouls completes design and development of Parragon Publishing India, corporate web identity and intranet application.

About Parragon Publishing India
Parragon Publishing India Pvt. Ltd was established on 28 June 2006 as a joint venture company between Parragon UK and Vineet Sharma.

Instituted in the late 1980s in UK, Parragon is now the world’s leading publisher of ‘illustrated non-fiction’ books. The largest footprint is in the ‘Books for Children’ section which has a range of books for different age-groups including Activity & Colouring, Storybook & Rhymes, Reference, General Knowledge, Make & Do Crafts and Learning Workbook.

The reference and general interest books for adults span a wide range: Cookery & Cuisines, Food & Drinks, Travel, Art & Architecture, World History, Unseen Archives of Celebrities, Space & Science, Fashion & Lifestyle, Home Décor, Machines, Wrist Watches, Motorbikes, Fastest Cars, Yoga, Wildlife, Mythology, and Astronomy to name a few.

As in most of its other markets internationally, in India too Parragon is the publishing partner with Disney for the Disney books. The colourful visual format, high quality printing and adorable characters from the house of Disney make these very popular amongst kids. 

Parragon India has revolutionized the way books are sold by utilizing non-conventional channels like retail houses in addition to the traditional supply chain of distributors at the national and regional levels. Thus Parragon books and other products are now available not only at all popular bookshops but also at retail outlets all over.

studio Netsouls has also developed and his maintaining the intranet for Parragon Publishing, the intranet is a complete Purchase Order Management system with custom business reports.

Visit: www.parragonpublishing.in

  • Currently 0 /5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Lets you have two datatables having two same columns. This code is useful to merge the columns.

   1: public static DataTable MergeTables(DataTable dtFirst, DataTable dtSecond, string CommonColumn)
   2:    {
   3:        DataTable dtResults = dtFirst.Clone();
   4:        int count = 0;
   5:        for (int i = 0; i < dtSecond.Columns.Count; i++)
   6:        {
   7:            if (!dtFirst.Columns.Contains(dtSecond.Columns[i].ColumnName))
   8:            {
   9:                dtResults.Columns.Add(dtSecond.Columns[i].ColumnName, dtSecond.Columns[i].DataType);  
  10:                count++;
  11:            }
  12:        }
  13:  
  14:        DataColumn[] columns = new DataColumn[count];
  15:        int j = 0;
  16:        for (int i = 0; i < dtSecond.Columns.Count; i++)
  17:        {
  18:            if (!dtFirst.Columns.Contains(dtSecond.Columns[i].ColumnName))
  19:            {
  20:                columns[j++] = new DataColumn(dtSecond.Columns[i].ColumnName, dtSecond.Columns[i].DataType);
  21:            }
  22:        }
  23:  
  24:        dtResults.BeginLoadData();
  25:        foreach (DataRow dr in dtFirst.Rows)
  26:        {
  27:            dtResults.Rows.Add(dr.ItemArray);
  28:        }
  29:        foreach (DataRow dr in dtSecond.Rows)
  30:        {
  31:            foreach (DataRow dr1 in dtResults.Rows)
  32:            {
  33:                if (dr1[CommonColumn].ToString().Equals(dr[CommonColumn].ToString()))
  34:                {
  35:                    foreach (DataColumn c in columns)
  36:                    {
  37:                        dr1[c.ColumnName] = dr[c.ColumnName];
  38:                    }
  39:                }
  40:            }
  41:        }
  42:        dtResults.EndLoadData();
  43:        return dtResults;
  44:    }
  • Currently 0 /5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

About Us

studio NETSOULS is a complete IT services company, offering strategy, design, development and implementation of the total solution for your web and IT initiatives. The solutions we provide, enables businesses to leverage leading edge technology to gain sustainable competitive advantages in today's marketplace.

We specialize in designing, developing and deploying the next generation of IT solutions including e-business solutions Read more...

Tags

This will be shown to users with no Flash or Javascript.

Contact Us

My status

Quote of the Day

"Do you see a man wise in his own eyes? There is more hope for a fool than for him."

- Proverbs 26:12

NutritionVista

www.NutritionVista.com

Archives


Advertisements


Disclaimer

The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.

© Copyright 2008

Log in