is there any iNFRAGISTICS control eqivalent to MonthCalendar control of .NET - infragistics

I am looking for a control in infragistics which is similar to month calendar control of .Net.
Is there one?

I'm not sure what platform that you are looking for, but here are links to the calendar/schedule controls available:
WebSchedule
WebDatePicker & WebMonthCalendar (Based on ASP.NET AJAX Framework - April 2009 CTP)
WinSchedule
xamMonthCalendar

Related

How Can i mimic the Office style ribbon using MFC C++?

I want to mimic the word ribbon. But i can't find any resource that goes in depth on this subject matter or a template like the office developer tool template for MFC.
The Office 2016 ribbon is not exactly available, but the Ribbon Framework is. Here is one of my old articles about it.

SitecoreJSS 9.1 release date and SitecoreJSS 9 limitations

I am going to use SitecoreJSS to develop a website.
- When SitecoreJSS 9.1 would be released?
- what are the limitations and restrictions of using Sitecore JSS 9.0(Tech Preview 4)?
Release date information is not appropriate for StackOverflow. You may want to ask this in the Sitecore Slack community instead (Join via form here: http://siteco.re/SitecoreSlack)
However, for your question on limitations. When JSS is fully released with 9.1, a 9.0-compatible version will also be made available. That version is fully supported.
If you work instead with the Tech Preview 4 that you mention, you will be using preview software which may not be compatible with the GA version of 9.1 and also will not be supported by the Sitecore support team.

Oracle APEX Application Builder's Search Application Functionality

Does anyone know how "Search Application" functionality of Oracle APEX's Application Builder implemented. Are there any APIs that developer's can take advantage? I would like to search for a text in apex application source code.
Any suggestions would be of great help.
You can use Oracle Text to help find and markup results for hetergenous data. Here is my old session on the topic, and I've seen a few others around.
https://www.slideshare.net/ScottWesley/oracle-text-in-apex
Oracle's learning library:
https://apexapps.oracle.com/pls/apex/f?p=44785:24:6694877585964::NO:RP,24:P24_CONTENT_ID,P24_PREV_PAGE:8961,2
The results probably use the detail view of an IR, or a template defined for a classic report. In 5.2 the search feature uses different technology - Spotlight search.
APEX metadata can be found in a number of dictionary views, depending on what source code you're looking for. See apex_dictionary view.
Update Oct 2018
Daniel H has created a new plugin, leveraging the spotlight search functionality available in the 18.x app builder.
https://github.com/Dani3lSun/apex-plugin-spotlight

Sitecore Items conversion from version 6.5 to version 6.6

I'm in the middle of developing a website using Sitecore 6.5 and when my company knew that Sitecore released version 6.6 they want to use the new version instead for the project, Is there a way to convert my Items created using sitecore 6.5(webform) to sitecore 6.6(mvc) so I wont redo my work?
General content items are not affected by switching to MVC .. it would be any presentation items that you would need to update if you did make a move to MVC. As #JayS says MVC is not mandatory and you can actually mix MVC and Webforms layouts within the solution so if you wanted to convert to MVC slowly over time it would be a possibility.
Just wanted to note that there is no such thing as 'recommended releases' any more (see: http://sdn.sitecore.net/support/versioning%20policy.aspx). Lots of customers already using 6.6 in production. The upgrade from 6.5 -> 6.6 should be straightforward (but this obviously depends on the complexity of your solution).
From my understanding, you do not need to use MVC in 6.6 if you do not want to. John West has a blog about the installer and how it enables MVC. You should be able to port your existing solution up to 6.6 relatively easily, but if you wish to take advantage of MVC you'll need to alter your solution.
Note, I believe that Sitecore has not marked 6.6 as a recommended release, so you may wish to inform your company of that.
UPDATE: Thanks to Stephen for pointing out that Sitecore has discontinued using the recommended release tagging. Some of their documentation online still needs to be updated regarding this :)

How to create add-ins for microsoft dynamics nav / navision

I wish to create add ins for Microsoft Dynamics NAV/ Navision. Is there any API / SDK that I can use to create add-ins?
Christian Abeln is a SPM for Dyanmics NAV at MSFT and his blog has some good resources for introductions to add-ins in NAV 2009 SP1.
Add-ins require an interface (which tells RTC how to communicate) and then a class that implements the interface - these will live in a managed assembly DLL you can create in Visual Studio.
What type of add-in are you looking to build?
If you only need to manipulate data you should use the CFront SDK. This provides programmatic access to the database in Nav 5, but CFront does not run any of the business logic.
If you need to extend the client you can probably use COM. A good place to ask would be on the Mibuso forums.
Stackoverflow is a great resource, regarding general software development questions. Dynamics NAV is rather a niche product, here you will hardly find lots of info, concerning development for it.
I think that all (or most) information concerning specific Dynamics NAV tools (there are not so many) can be found (and should be looked for, in the first place) on the Microsoft Dynamics PartnerSource site. If you have no access to it (it restricted to partners only), then I can recommend www.mibuso.com forum - one of the biggest resource of Dynamics NAV information.
If you are a member of Dynamics NAV partner team and have a NAV development license (which gives you access to NAV development tools), then all that is said by me is obvious for you and here you could find a help for the rest of your needs and Visual Studio is luckily the main needed tool.