Wednesday, 13 March 2013

Office 2013 Showcase Microsoft User Group Hyderabad

Wednesday, March 13, 2013

Join us at Office 2013 Showcase in Hyderabad on 6th April 2013

Microsoft User Group Hyderabad invites you to Office 2013 Showcase on 6th Apr'13

Register for this event for FREE @ http://office2013showcase-mugh.eventbrite.com/

MUGH  Office 2013 Showcase
Microsoft User Group Hyderabad invites you to Office 2013 Showcase on 6th Apr'13
Agenda:
TIME TOPIC & SPEAKER
09:00 - 09:30 A.M Registration
09:30 - 09:45 A.M Keynote
09:45 - 10:45 A.M Introduction to Office 365 & Office 2013
10:45 - 11:00 A.M Break
11:00 - 12:00 P.M Exploring Word 2013, Excel 2013 and PowerPoint 2013
12:00 - 01:00 P.M Office 2013 on Surface Devices
01:00 - 02:00 P.M Lunch Break
02:00 - 03:00 P.M Exploring Project 2013 & Visio 2013
03:00 - 04:00 P.M Exploring SharePoint 2013
04:00 - 04:15 P.M Break
04:15 - 05:00 P.M Licensing & Deployment - Office 2013 & Office 365
05:00 - 05:10 P.M Closing Note

Targeted Audience: Developers, Architects, IT Pro
Note: Schedule & Agenda is subject to change.

Venue:
Microsoft Campus,
Gachibowli, Hyderabad
Andhra Pradesh, India
 

Friday, 15 February 2013

Set readOnly for all form fields Using the Extjs 4.1 MVC.


Hi !

I'm doing my first extj mvc app, so I can't talk about best practice...

In my app I try to Set readOnly for all form fields.

Controller function :


init: function() {
        this.control({
            '#ViewId': { click: this.onView }
        });
    },
onView: function(button) {

    button.up('form').query('.field').forEach(function(field) {
            if (field.inputEl) {
                field.inputEl.dom.setAttribute('readOnly', true);
            } else {
                field.readOnly = true;
            }
        });
    }


on Button click Event of my button is  onView, in that i am findingOut the form and inthat and all fields.
on loop through am setting the readOnly to the fields.
Instead of using Read Only use disable based on your Requirements


Note: This Only sets the Element's rearOnly DOM attribute. while Setting readOnly = true,
but in Extjs 4.1/ MVC we cant hide the triggering a combo Box or Date (Extjs 4.1.1 Release Notes).To hide the trigger use hide Trigger.




Tuesday, 12 February 2013

MUGH February UG Meet


Microsoft User Group Hyderabad  UG Meet

Microsoft User Group Hyderabad invites you to Monthly UG Meet on 23rd Feb'13

Microsoft User Group Hyderabad  UG Meet   Microsoft User Group Hyderabad invites you to Monthly UG Meet on 23rd Feb'13 Agenda: TIME TOPICS & SPEAKER 09:00 A.M - 09:30 A.M Registration 09:30 A.M - 10:30 A.M Building Gesture Enable and Speech...
Agenda:
TIME TOPICS & SPEAKER
09:00 A.M - 09:30 A.M Registration
09:30 A.M - 10:30 A.M Building Gesture Enable and Speech Recognize Application Using Kinect for Windows

Abhijit Jana, Microsoft
10:30 A.M - 10:45 A.M Break
10:45 A.M - 11:45 A.M Windows Azure Mobile Services

Pranav Ainavolu, Thomson Reuters
11:45 A.M - 12:45 P.M TBD

Krishna Chaitanya T, Security & Privacy Research Lab, Infosys
12:45 P.M - 01:00 P.M Discussion

Targeted Audience: Developers, Architects, IT Pro







Share this event on Facebook and Twitter

We hope you can make it!

Cheers,
Microsoft User Group Hyderabad 



Venue Sponser:





Tuesday, 5 February 2013

New Jump Start! Scott Hanselman & Jon Galloway Talk Modern Web Apps w/ ASP.NET! - Events - Blog - Events - Born to Learn

Microsoft Virtual Academy (MVA) has opened registration for a new Jump Start tailored for experienced developers interested in leveraging ASP.NET and Visual Studio 2012 to offer modern apps that target modern browsers.
Two of Microsoft’s most seasoned ASP.NET speakers, Scott Hanselman and Jon Galloway, will provide an accelerated introduction to building modern web applications with ASP.NET 4.5 and ASP.NET MVC 4. In this course, they will target key scenarios like building mobile ready websites, social web applications as well as modern HTML5 browser features.
** REGISTER NOW **
Help us spread the word with a blog post or a tweet like this one:
#MSJumpStart! @shanselman & @jongalloway target modern browsers w/ ASP.NET. http://aka.ms/WebAppsASP-JS @MSLearning #MSMVA

What’s a “Jump Start” Course?
Training specifically designed for experienced technologists whose jobs demand they know how to best leverage new, emerging Microsoft technologies. These advanced courses assume a certain level of expertise and domain knowledge, so they move quickly and cover topics in a fashion that enables teams to effectively map new skills to real-world situations.

Thursday, 31 January 2013

Where is svcutil.exe in Windows 7

 
For my WCF Client Application, I need to generate the class file and Configuration file.

So where we need to find this svcutil.exe.

The Location of svcutil.exe is

C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bin

 
 
 


We need to execute the command   by using the Visual Studio command prompt

Click Start -> Programs -> Microsoft Visual studio 2008 -> Visual Studio Tools -> Visual Studio 2008 Command Prompt





 


 
 
 
 
 
 
 
 
 
 
 
Then you can use  the Following Command

To generate the proxy class with svcutil.exe command
Synatax:
svcutil.exe /language:<type> /out:<name>.cs /config:<name>.config http://<host address>:<port>
 
Example:
SvcUtil.exe /language:vb /out:WCFServiceClientRef.vb /config:app.config http://localhost/SampleServices/FlexService.svc
 
 
 
 
 
 

 

Tuesday, 29 January 2013

Adobe & HTML5 Webinar




The process cannot access the file because it is being used by another process.(Exception from HRESULT: 0x80070020)



In IIS7.5  I was trying to start my default Web Site and am getting  the  following Error Screen.


I realized that I want to see which process is using this portNo .
Lets take a look at the netstart  and see what might be causing problem.
Open Command Prompt (Windows Key + R  and Enter cmd) and enter Command.










Then I tried to which process is using this Process ID 4 accessing port No 80.

Using the tasklist command we can see the all processes running under Windows. You can Filter by enter the command /fi “PID  eq 4”. Means we are Searching Process ID  equals to 4.
The process with Process ID 4 is Skype. Then Closed the Skype and restart the IIS now it is working fine Now.

Reference: