If you're interested in building large scale applications the MVP way, you may want to checkout the latest addition to our articles section: Large application development and MVP...
<b>Christian Cantrell:</b> "This morning, I was able to validate a concept I've been working on for a couple of weeks now: running one application — completely unchanged — on five different screens:"
Hi, I started writing an application for Windows Phone marketplace, at the time only making sure that the name I gave it wasn't being used by any other app on the marketplace.
I just found out that the same name is being used by a, seemingly popular, SourceForge project. Is this a problem?
I haven't released my app yet so I could rename it, but I really like the name and would prefer not to unless it is an issue.
Cliff interviews Mike Mast, Director of Product Strategy for Oracle's Applications Technology group, about how the Application Management Pack for E-Business Suite helps customers improve the performance and availability of their systems and reduces costs through the software lifecycle.
Build a simple database application with WPF that can display data in GridView and can perform ADD, UPDATE and DELETE operations on SQL server database. read moreBy Kirtan PatelDid you know that DotNetSlackers also publishes .net articles written by top known .net Authors? We already have over 80 articles in several categories including Silverlight. Take a look: here.
By combining PeopleSoft management and monitoring with Oracle's rich and comprehensive system's management solution, the Application Management Pack for PeopleSoft Enterprise significantly reduces the cost and complexity of managing a PeopleSoft environment. Cliff discuses these capabilities with Jeff Robbins, Oracle's Senior Director of PeopleTools Strategy.
Microsoft Office 2010 sur Windows Phone 7
Une vidéo dévoile les premières images de l'application mobile
A quoi ressemblera la version de Microsoft Office 2010 pour les Windows Phones ?
Une vidéo qui montre la gestion d'un Power Point (ouverture, modification du contenu, enregistrement vocal, clavier, expédition) dévoile les premières images de l'UI.
Le portage de la suite bureautique sur le futur OS mobile de Redmond montre également que Windows Phone 7 ne sera pas axé que « réseautage »
We are pleased to announce the certification of Rapid Clone with Oracle E-Business Suite Release 12.2 on systems running Real Application Clusters (RAC).
A new cloning procedure for Oracle E-Business Suite 12.2 has been published in the following My Oracle Support document:
Cloning Oracle E-Business Suite Release 12.2 RAC Enabled Systems with Rapid Clone (Note 1679270.1)
Please review that document for all required patches and prerequisites.
Related Documents
1383621.1 : Cloning Oracle Applications Release 12.2 with Rapid Clone
1583092.1 : Oracle E-Business Suite Release 12.2: Suite-Wide Rollup and AD/TXK Delta Information
1617461.1 : Applying R12.AD.C.Delta.4 and R12.TXK.C.Delta.4 Release Update Packs
Jose Lazares, Vice President of Oracle's Application Development organization speaks with Fred about pre-built, sustainable integrations Oracle delivers to provide customers with end-to-end, industry processes across its portfolio of best-in-class.
In this article, I am going to show you a Country Application. User will select country from drop down and details of selected country will be displayed.
If you have any kind of share functionality within your application it’s a good practice to add the basic Facebook open graph tags to the header of all pages. For an MVC application this can be as simple as adding these tags to the Head section of the Layouts file.<head>
<title>@ViewBag.Title</title>
<meta property="og:title" content="@ViewBag.FacebookTitle" />
<meta property="og:type" content="website"/>
<meta property="og:url" content="@ViewBag.FacebookUrl"/>
<meta property="og:image" content="@ViewBag.FacebookImage"/>
<meta property="og:site_name" content="Site Name"/>
<meta property="og:description" content="@ViewBag.FacebookDescription"/></head> These ViewBag properties can then be populated from any action: private ActionResult MyAction()
{
ViewBag.FacebookDescription = "My Actions Description";
ViewBag.FacebookUrl = "My Full Url";
ViewBag.FacebookTitle = "My Actions Title";
ViewBag.FacebookImage = "My Actions Social Image";
....
} You might want to populate these ViewBag properties with default values when the actions don’t populate them. This can be done in 2 places. 1. In the Layout itself. (check the ViewBag properties and set them if they are empty) @{
ViewBag.FacebookTitle = ViewBag.FacebookTitle ?? "My Default Title"; ViewBag.FacebookUrl = ViewBag.FacebookUrl ?? HttpContext.Current.Request.RawUrl;
ViewBag.FacebookImage = ViewBag.FacebookImage ?? "http://www.mysite.com/images/logo_main.png";
ViewBag.FacebookDescription = ViewBag.FacebookDescription ?? "My Default Description";
}
2. Create an action filter and add it to all Controllers or your base controller. public class FacebookActionFilterAttribute : ActionFilterAttribute
{
public override void OnActionExecuting(ActionExecutingContext filterContext)
{
var viewBag = filterContext.Controller.ViewBag;
viewBag.FacebookDescription = "My Actions Description";
viewBag.FacebookUrl = "My Full Url";
viewBag.FacebookTitle = "My Actions Title";
viewBag.FacebookImage = "My Actions Social Image";
base.OnActionExecuting(filterContext);
} } Add attribute to your BaseController. [FacebookActionFilter]
public class HomeController : Controller
{
....
}
In the third of a series on Web Application design, Nick turns his attention to the Model part of the Model View Presenter (MVP) pattern, and discusses what a well-behaved model might look like
I am creating a web application that doesn't work correctly on mobile. I don't want to make it work on mobile because I would rather mobile users have a fully integrated experience and not have to use the web version. This mobile version will be released at a later date based on reaction to the initial web-based version.
So, my question is: Is it wrong to not allow mobile users to use the site and instead show them some sort of splash screen telling them to come back to the site on a computer?
Sometimes in Windows 8 you may find your application notifications getting stuck from time to time, the fix to this problem is to clear the notification cache at log off, here’s how. Why Enabling “Do Not Track” Doesn’t Stop You From Being Tracked HTG Explains: What is the Windows Page File and Should You Disable It? How To Get a Better Wireless Signal and Reduce Wireless Network Interference
I had to a incorporate several legacy applications and services in a network-distributed application. The existing services and applications are written using different languages and technologies, including: java, C#.Net and C++; all running on MS Windows machines. Now I'm wondering about the communication mechanism between them. What is the simple and standard way? Thanks! PS. communications include simple message sending and remote method invocations.
I upgraded from 13.04 to 13.10 and now all icons in the application lens are gone.
This is what I tried so far:
apt-get install --reinstall unity-lens-applications
unity --replace and unity --reset-icons
moving ~/.config to ~/.config2
deleting ~/.cache/software-center and ~/.cache/unity
Most of these things have been suggested in this question: Unity Applications lens is empty - but all to no avail.
Application service providers (commonly referred to as ASP';s) have quickly sprouted onto the web hosting scene in effort to provide businesses with new and innovative services. The term ASP should no... [Author: Sue Woledge - Web Design and Development - April 07, 2010]
I am looking for a strategy to version an application with the following requirements.
My requirements are given an exe with version number (major.minor.build-number)
1) I want to map the version to a svn source revision that made the exe
2) With the source and exe I should be able to attach and debug in vs2010 with no issue.
3) Once I check-out the source code for the exe I should be able to build the exe again with the version number without having to make any changes to a file.
Le Domain Driven Design est une architecture tr?s en vogue en ce moment (m?me si encore tr?s peu utilis?e sur le terrain). Microsoft (Espagne) met ? disposition sur CodePlex un exemple concret d'application de r?f?rence cod?e en DDD : NLayeredApp. A d?couvrir.
Jose Lazares, Vice President of Oracle's Application Development organization, speaks with Cliff about what AIA is, how AIA leverages SOA, and how AIA helps provide a pathway to Fusion Applications.
This application allows any person on the Internet to use Messenger Services. There are several Messengers working parallel with MSN Messenger. aMSN, Pidgin, Miranda, Mercury(Java MSN Messenger Client) are some of them.
Developed by Apple, iPhone is a smart phone which has outstanding features like high resolution camera, access to internet, video iPod etc. The increasing demand of iPhone among the users has increased the demand of iphone applications to attract new and existing customers. This demand has given rise to the iPhone application development services. The software development companies are focusing on new applications which can be installed in the iPhone.
Writing my game in libgdx, I arrived at the point when I need to save the player stats and the info of the levels. However, in libgdx it's not allowed to write the file inside folder of the application, only external (on the SD) is allowed. The point is that I don't want the file to be seen by anyone, or if they can see it, how can I convert it to a binary file so it's not human readable? I just want to hide the file.
<b>Bright Hub: </b>"If you are looking to create a GUI application that can be easily ported to all major operating systems, wxWidgets is a great choice. It has a graphical tool for designing the forms, has bindings for many languages, and is an established, robust library."
Explains the step by step approach to trace the ASP.NET application...Did you know that DotNetSlackers also publishes .net articles written by top known .net Authors? We already have over 80 articles in several categories including Silverlight. Take a look: here.