Create Calendar Control in Windows Phone 8 - xaml

How can I use Microsoft Templates to create Calendar Control ?
Can someone provide me a code for this ? or which references should I have to create a calendar.
And one more question, how references are used ?
I`m a beginner, so excuse me :)
Regards.

You can try free controls at http://phone.codeplex.com/. This includes DateTimePicker control, which may fulfill your requirements. There are also samples provided with it. There is also a special Calendar control. Check it out here: http://wpcontrols.codeplex.com/
Hope, this helps.

You can see in Telerik libraries that contain calender controluse this.

Related

is Searching possible in jTable? if yes then how? any example :)

i am working with jTable
here is demos http://www.jtable.org/Tutorials/UsingWithAspNetWebFormsPageMethods#CreatePage
but i am not able to find the search option. can you help me.
is it searching possible in jTable, if yes, can anybody provide me example with code.
i am using jTable with VB asp.net Web Forms.
I will really appreciate it by marking your suggestion as answer, i really need it. thanks in advance
I'm guessing you're looking for this: http://www.jtable.org/Demo/Filtering
You can filter the table based on a search string.

Where can i find an open source iOS 5 templates?

To be more specific, i am looking for a 'springboard' template. I have seen a couple of GitHub projects which allow creating similar controls in less time, but none for the springboard( Old Facebook type app).Any help is appreciated!
What you are looking for can be found here:Cocoa Controls
There you'll find some templates to choose from under the appropriate licenses for your purpose.

create cascading dropdown in library of sharepoint 2010

Can anyone tell how to create cascading drop down in the library of share point 2010 without the help of java script and info path designer.i am trying through java script techniques,but its not working properly and i don't want to use info path designer.please help.
Without JavaScript and Infopath, you're into custom server side code. Without jQuery/Ajax then it's going to be a very clunky interface with multiple posts and screen redraws.
You may not be having much success with JavaScript but I can attest to using the SPServices and jQuery to achieve some very competent cascading dropdown solutions in SP207/2010 successfully. Have a look Here, there's plenty of sample code and advice.
I've had decent luck with using a 'custom field type' for such problems, if you need this to all be on an out of the box form. If you don't need this to be on an out of the box form, then it's no different than any other ASP.NET cascading drop down.
I haven't used custom field types a lot, and I've found them a bit awkward to get started with, but they're not really all that complicated once you have the basic template as most of the information is static; you can just take an unrelated example from someone else and change the few bits that apply to you.
You can make a custom form for the content type (if Visual Studio is an option) and do it like in any asp.net applications.
See here an example: http://spcustomforms.codeplex.com/
spcascade.org provides best free solution which support multi level dropdown list with no limits.
It is javascript/jquery based solution with no page refreshes and involves only one look up list for multiple columns.
Saves data in single line text instead of Ids that are used by typical look up columns.
Very easy to use syntax too!
http://www.spcascade.org
I have a simple solution without any JavaScript code: Cascading Drop Down Lists in SharePoint. Let me know if it solves your problem.

Creating a Help Center in VB.NET

I'm developing a program in vb.net, and I want to add in some help pages to the program, without using web-based help, so more like when you hit F1 in the Microsoft Office programs.
Is there a straightforward way of doing this, other than just making it via lots of forms?
Thanks in advance!
Perhaps a small Sqlite database with the help content and a help browser that reads the content from the database?
Other than that you have CHM and HLP formats. With CHM you can use the HelpProvider to provide this information to your user.
http://en.wikipedia.org/wiki/Microsoft_Compiled_HTML_Help

Accessing Windows Forms 2.0 combobox or AXComboBox

I have created a mutli-column combobox in VB.net 2008 using windows forms 2.0. I am having trouble accessing data once selected to use in the remainder of the form. There does not seem to be a selected event to use in conjunction with the winform 2.0 combobox.
Does anyone have any experience using winforms 2.0? Also I guess a better question would be: is there a site with a break down of windows forms 2.0? As so far nothing seems to be that detailed including MSDN.
There is a SelectIndexChanged Event for the ComboBox Class
http://msdn.microsoft.com/en-us/library/system.windows.forms.combobox.aspx
SelectIndexChanged :
http://msdn.microsoft.com/en-us/library/system.windows.forms.combobox.selectedindexchanged.aspx
SelectedValueChanged:
http://msdn.microsoft.com/en-us/library/system.windows.forms.listcontrol.selectedvaluechanged.aspx
All Winform controls are documented pretty well on the msdn website.
The controls I am speaking of are in: axmicrosoft.vbe.interop.forms.axcombobox.
Which does not have much in the way of documentation. It does lend itself to creating multi-column comboboxes however.
I am not excited about the prospect of creating multi-column comboboxes, and I have explained and demonstrated to the customer that this is not the best implementation, but the customer still wants a multi-column combobox.
I am also open to the prospect of third party tools (free, and not free).
If anyone has any experience with this issue please forward any information they have.
We bought infragistics controls and that resolves this issue.