How to Take Screen Shot from Windows Phone Emulator without Print Screen
If you are submitting your App to +Windows Phone site you would require to publish screenshots of your App. These are the snapshots a prospective user might see even before she downloads your App. How to take a good snapshot then ..
Click the Double Right Arrow on right of the Emulator to bring the menu. Now take as many as possible.
See also:
How to Add/Load XAML Dynamically to RichTextBox Control - Windows Phone Development C#/VB.NET
Monday, June 17, 2013
Tuesday, June 4, 2013
BSNL WIFI Router - Forgot/Reset Admin Password / BSNL Broad Band
How to Reset Forgot/Lost Admin Password - BSNL BroadBand WIFI Connection
IF you are not able to login the BSNL Admin Password through
http://192.168.1.1
Username : admin
password: admin
Try resetting the password using the Reset button shown below:
Else take the Modem to the nearest customer care / support center for BSNL. They will reset the password and provide you a new one
IF you are not able to login the BSNL Admin Password through
http://192.168.1.1
Username : admin
password: admin
Try resetting the password using the Reset button shown below:
Else take the Modem to the nearest customer care / support center for BSNL. They will reset the password and provide you a new one
Wednesday, May 8, 2013
VBA Connect to Webservice 1- Office XP Web Services Toolkit
How to Connect to Webservice from Excel / Word using VBA
The VBA Connect to Webservice 1- Office XP Web Services Toolkit can be downloaded and installed in the PC
To use the commands in VBA, Add reference to Microsoft Soap Type Library 3.0
VBA Connect to Webservice might give- SoapClient30 Error 429 - ActiveX component can't create object if it is not properly installed
The VBA Connect to Webservice 1- Office XP Web Services Toolkit can be downloaded and installed in the PC
To use the commands in VBA, Add reference to Microsoft Soap Type Library 3.0
VBA Connect to Webservice might give- SoapClient30 Error 429 - ActiveX component can't create object if it is not properly installed
Sunday, March 17, 2013
Model View Controller (MVC) - Simply Explained!
The Model-View-Controller (MVC) pattern separates the modeling of the domain, the presentation, and the actions based on user input into three separate classes:
Model. The model manages the behavior and data of the application domain, responds to requests for information about its state (usually from the view), and responds to instructions to change state (usually from the controller). It maintains the state and notified observers/subscribers of change in information.
View. The view manages the display of information and also facilitates interaction with user. However, it does not act on user interaction (i.e., events) - that is the job of the controller
Controller. The controller interprets the mouse and keyboard inputs from the user, informing the model and/or the view to change as appropriate.
The responsibilites can be split as follows (Top down approach)
View
Controller
Model
Model. The model manages the behavior and data of the application domain, responds to requests for information about its state (usually from the view), and responds to instructions to change state (usually from the controller). It maintains the state and notified observers/subscribers of change in information.
View. The view manages the display of information and also facilitates interaction with user. However, it does not act on user interaction (i.e., events) - that is the job of the controller
Controller. The controller interprets the mouse and keyboard inputs from the user, informing the model and/or the view to change as appropriate.
The responsibilites can be split as follows (Top down approach)
View
- Responsible for rendering of model - UI
- User interaction
Controller
- Responsible for responding to user input
- Instructing the Model to respond to the user input
Model
- Responsible for storing and retrieving data
- Maintenance of state
- Notification of Observers of change in state
Subscribe to:
Posts (Atom)