Sunday, 28 July 2013

MUGH July UG Meet


MUGH July UG Meet

Microsoft User Group Hyderabad

Saturday, August 3, 2013 at 9:00 AM (IST)

Hyderabad, India

Microsoft User Group Hyderabad  July UG Meet

Microsoft User Group Hyderabad invites you to Monthly UG Meet on 3rd Aug'13

Agenda :
TIMETOPICS & SPEAKER
09:00 A.M - 09:40 A.MRegistration
09:45 A.M - 10:45 A.MHTML 5 Tricks and Traps

Krishna Chaitanya T, Security & Privacy Research Lab-Infosys
10:45 A.M - 11:00 A.MBreak
11:00 A.M - 12:00 P.MBuild Automation and Workflow Customization with TFS 2012

Senthilraj Krishnan, Applied Information Sciences
12:00 P.M - 01:00 P.MTBD


Register


Friday, 26 July 2013

Extjs Pagging ToolBar Button Align Center

In Extjs Grid, Pagging Toolbar having Pagging Controll and Display Information for How many records are displaying.

After Hidding  display Info I would like align the Pagging Controlles in Center of the Pagging toolbar, and that will work when am doing resize also.

Changing the Layouts in Config, there is Layout  Pack it is working Fine , for this Issue
just and layout in pagging config as pack.


  xtype: 'pagingtoolbar',
        store: 'gridStore',    
        dock: 'bottom',
        layout: {
                pack: 'center'

            }

Extjs 4.2 Tooltip not wide enough to see the Content

I have Noticed while am Implementing Application Using  Extjs 4.2  MVC.
The Tooltip is not Resizing to the Size of the text in Google Crome.

I Noticed its Working fine in Mozilla 22 and IE10. but it is Not Working in Google Crome 28.

This is a Bug in Extjs 4.2.
For this You need to Override the Tooltip Css Class
there is an forum Issue for this tooltip Issue.


.x-tip {

  width: auto !important;

 } 

 .x-tip-body {

  width: auto !important;

 } 

 .x-tip-body span {

  width: auto !important;

 }

 

Monday, 24 June 2013

Microsoft User Group Hyderabad June UG Meet


MUGH June UG Meet

Microsoft User Group Hyderabad

Saturday, June 29, 2013 at 9:00 AM (IST)

Hyderabad, India


Event Details


Microsoft User Group Hyderabad  June UG Meet

Microsoft User Group Hyderabad invites you to Monthly UG Meet on 29th June'13
Agenda:
 
TIME TOPICS & SPEAKER
09:00 A.M - 09:35 A.M Registration
09:45 A.M - 10:45 A.M Live Streaming with IIS and Deployment to Azure

Sahas Lad, Applied Information Sciences
10:45 A.M - 11:00 A.M Break
11:00 A.M - 12:00 P.M Glance at Visual Studio 2013 Preview & ASP.NET MVC 5

Shravan Kumar, Thomson Reuters
12:00 P.M - 01:00 P.M Introduction to Splunk
- Senthilraj Krishnan, Applied Information Sciences


Targeted Audience: Developers, Architects, IT Pro only

 Date: 29th June, 2013
Time: 9.00 AM - 01.00 PM

Venue:
Microsoft India Development Center,
Building 3 MPR Halls,
Gachibowli, Hyderabad,
Andhra Pradesh , India.

Registration






Thursday, 13 June 2013

Learning AzureServiceBus & Mobile Services


Learning AzureServiceBus & Mobile Services

Applied Info Services (India) Pvt. Ltd

Saturday, June 15, 2013 from 10:30 AM to 1:00 PM (IST)

Hyderabad, India

 

Event Details

Date: 15-JUNE-2013
Venue:   Applied Info Services (India) Pvt. Ltd

8-2-293/82/A/764/1
Plot # 764, Road #44
Jubilee Hills - 500033
Land Line:040-30260500

Time: 10:30AM to 1:00PM

Session 1 : 10:30AM – 11:30AM
 Topic: Azure Service Bus Introduction - The Windows Azure Service Bus provides cloud-based services that can be leveraged by on-premise and cloud-based applications. These services are hosted by Microsoft in the Windows Azure data centers located around the world. Customers can consume these services and are billed for the resources they used, making the Service Bus a “Platform as a Service” (PaaS).
 Speaker: Madhukar Gilla, Senior Engineer - AIS, focusing on Microsoft’s latest cloud services technology and Integration services, he blogs at http://wcfbiztalk.wordpress.com/

 11:30AM – 12:00 – Tea & Snacks break

 Session 2 : 12:00 Noon to 1:00 PM
 Topic: Azure Mobile Services
 Windows Azure Mobile Services: Windows Azure Mobile Services is a Windows Azure service offering designed to make it easy to create highly-functional mobile apps using Windows Azure. Mobile Services brings together a set of Windows Azure services that enable backend capabilities for apps for saving data, querying & managing identity and push notification to phone. Additionally scripts can be written on server to execute custom logic while doing CRUD operations
 Speaker: Harit Saxena, Development Lead - AIS
Harit Saxena, has Over 14 years of experience in building scalable distributed/web application. A enthusiast with focus on Technology, Cloud, Distributed Systems and Architectures.

For regular updates on upcoming events and registration with us, visit our Azure Tech Community Site: http://theazuregroup.azurewebsites.net/

 

Friday, 24 May 2013

Edit Web.config File Using C# .NET

we can Programatically Change Web.config File Using C#  .NET.

ASP.NET Provides Two namespaces for Configuration Settings
System.Configuration, System.Web.Configuration.

So If we want to Change the Any Mail Server Settings and ConnectionString Settings, We can do all these can Modify easily instead opening the File and Changes and Saving Back. Instead of Doing all These Things, Create an UI for Changing All these Things for Admin so that web.config file can change from that Place Only.

Here is the sample Example for Changing the SMTP Server  IP Address.

Using the namespaces of configuration:




using System.Configuration;

using System.Web.Configuration;

 

Config File:

 

<appSettings>

<addkey="SMTPServer" value="64.59.71.11" />

</appSettings>

C#:

 

Configuration ConfigObj = WebConfigurationManager.OpenWebConfiguration("~");

AppSettingsSection AppObj = (AppSettingsSection)ConfigObj.GetSection("appSettings");

if (AppObj != null)

{

AppObj.Settings["SMTPServer"].Value = txtSmtpIP.Text;

ConfigObj.Save();

}




 

 


 

 
 

Tuesday, 21 May 2013

MUGH May UG Meet

MUGH May UG Meet

Microsoft User Group Hyderabad

Saturday, June 1, 2013 at 9:00 AM (IST)

Hyderabad, India

Event Details


Microsoft User Group Hyderabad  UG Meet

Microsoft User Group Hyderabad invites you to Monthly UG Meet on 1st June'13
Agenda:
TIME TOPICS & SPEAKER
09:00 A.M - 09:35 A.M Registration
09:45 A.M - 10:45 A.M Building Realtime Web Applications With SignalR & ASP.NET MVC

Shravan Kumar, Thomson Reuters
10:45 A.M - 11:00 A.M Break
11:00 A.M - 12:00 P.M Building Apps for Office

Pranav Ainavolu, Thomson Reuters
12:00 P.M - 12:45 P.M TBD
12:45 P.M - 01:00 P.M Discussion

Targeted Audience: Developers, Architects, IT Pro only

Event to be held at the following time, date, and location:

Saturday, June 1, 2013 at 9:00 AM (IST)
                                                                               
Microsoft India Development Center, Building 3 MPR Halls
Hyderabad
India

View Map

Attend Event

 
 
Share this event on Facebook and Twitter

We hope you can make it!

Cheers,
Microsoft User Group Hyderabad

Saturday, 4 May 2013

How to add Dynamic Items to Ext.carousel.Carosel In sencha Touch

A Small Example for  Sencha touch Carousel, How to Add Dynamic Items to the Carousel .

In the Below Code is the Carousel for 3 Items of Normal way of Writing in the Sencha Touch.



  Ext.create('Ext.Carousel', {
                fullscreen: true,
                id: 'AddingDynamicItems',
                items: [
                        {
                            html : 'Item 1',
                        },
                        {
                            html : 'Item 2',
                        },
                        {
                            html : 'Item 3'
                        }
                     ]
                });

To add these above carousel Items  Data Dynamically, add the listeners and do Your Logic,
See the Following Sample Code.


             listeners:
                {
                    'initialize': function( me, eOpts ) {
                          for (i=1; i<=3; i++) {
                                me.add({
                                 html : 'Item ' + i
                                 //add your Logic.
                                  });
                           }
                        }
                    }


Wednesday, 3 April 2013

Hyderabad Chapter Launched

 
We at C# Corner has the vision of organizing offline events in various cities to help users mingle and discuss new emerging developments in this field.

At C# Corner MVP Summit, a good group of our MVPs from Hyderabad, Kolkata, and other cities discussed they are capable of running chapters in their cities. Some of the up coming chapters are Kolkata, Hyderabad, Jabalpur (all 3 in INDIA) and LA, USA. 

We are successfully organizing chapter events all across the globe, including countries like India, US, and Turkey. In India we are successfully organizing chapter meets in Delhi/NCR, Mumbai, Thiruvananthapuram.

Our next stop is another high-tech city “Hyderabad”.
Register for the event here.


Title: Asp.Net Vs. Asp.Net MVC


Date: 07-April-2013 10:00 AM To 12:00 AM

Venue: Ascendia Technology Solution, 3rd Floor, Softsol Building(Beside Mindspace), Hytech City, Madhapur Hyderabad

Below is the details agenda

10:00-10:15 AM What is c-sharpcorner chapter by
Krishna Garad
10:15-11:00 AM Asp.Net Vs. Asp.Net MVC By Ramesh Samarala
11:00-11:30 AM Sample Demo application using Asp.net MVC By Ravi Pinjarkar
11:30-12:00 PM Razor vs. aspx engine By Krishna Garad
 

Charminar