Kevin McNeish Blog

All things iOS, Kindle and .NET

Recent Posts

Tags

News

  • First books in my new book series, "iOS App Development for Non-Programmers" are now available! iBookStore: http://itunes.apple.com/us/book/book-1-diving-in-ios-app-development/id558788074?mt=11 Amazon: http://www.amazon.com/dp/B0097N8XBE Amazon: http://www.amazon.com/dp/B0099RQGMQ

Community

Email Notifications

Archives

Infragistics Windows Controls Integration Complete

I've been seriously neglecting my blogging duties in favor of getting work done <s>, but wanted to post information on our integration with Infragistics Windows Controls. We completed the integration a few weeks back, integrating the following Infragistics controls with MM .NET:

  • AnimationControl
  • UltraButton
  • UltraCalculator
  • UltraCalculatorDropDown
  • UltraCalendarCombo
  • UltraChart
  • UltraCheckEditor
  • UltraColorPicker
  • UltraCombo
  • UltraComboEditor
  • UltraCurrencyEditor
  • UltraDateTimeEditor
  • UltraDayView
  • UltraDropDownButton
  • UltraExplorerBar
  • UltraFontNameEditor
  • UltraGrid
  • UltraLabel
  • UltraListBar
  • UltraMaskedEdit
  • UltraMonthViewMulti
  • UltraMonthViewSingle
  • UltraNumericEditor
  • UltraOptionSet
  • UltraPictureBox
  • UltraStatusBar
  • UltraTabControl
  • UltraTabStripControl
  • UltraTextEditor
  • UltraTimeZoneEditor
  • UltraTreeView
  • UltraWeekView

As with their web controls, we have added MM . NET automatic data binding, security, and localization to these controls. Again, if you're not familiar with these controls, I recommend checking them out (www.infragistics.com).

Did You Know?

You can use the .NET FlagsAttribute to specify that an enumeration can be treated as a bit field. For example:

[Flags()]
public enum mmSecurityAccessFormLevel
{
   /// <summary>
   ///
Edit
   ///
</summary>
   Edit = 1,

   ///
<summary>
  
///
Add
 
///
</summary>
  
Add = 2,

   
///
<summary>
  
///
Delete
  
///
</summary>
  
Delete = 4,
}

You can then use bit operators to determine if a particular flag is set. For example:

this.chkUserAdd.Checked =
  
((AccessLevel & mmSecurityAccessFormLevel.Add) == mmSecurityAccessFormLevel.Add);

Kevin McNeish
.NET/C# MVP
www.oakleafsd.com

Comments

KevinMcNeish said:


Whoo Hoo! Yippee! Yabbadabbadoo!


jMM
# December 9, 2004 10:25 AM

KevinMcNeish said:

Alright! And when can we get our hands on these?
# December 29, 2004 11:22 PM

KevinMcNeish said:

can anybody help me how do i enable or disable ultraListBar items at the run time
# January 2, 2005 9:28 PM

KevinMcNeish said:

For this type of question you should contact Infragistics tech support direcctly
# January 3, 2005 7:59 AM

KevinMcNeish said:

With the UltraCalendarCombo. I want to advance the date when given a certain number of days. Say you are making a reminder for yourself that would happen 30 days from today. In other words you want to add 30 days to today's date and have that display in the calendar combo instead. How do you change the date (value) of the combo?
# March 10, 2005 9:07 AM

KevinMcNeish said:

In VB.NET


cmbDate.Value.AddDays(days)

Where cmbDate is the name of the Calendar combo and days is the number of days to be added.
# May 10, 2005 8:21 AM

TrackBack said:

Infragistics Windows Controls Integration Completeooeess
# May 25, 2005 5:05 AM

TrackBack said:

Infragistics Windows Controls Integration Completeooeess
# July 22, 2005 8:19 PM

TrackBack said:

Infragistics Windows Controls Integration Completeooeess
# August 3, 2005 9:09 PM

KevinMcNeish said:

Thanks
# November 9, 2005 2:17 AM

jack said:

With ultraCalendacombo, i want to make the date nullable so that if i add a button ... it allows me to make the date nullable

# March 22, 2007 5:30 PM

C.Mohit said:

How can i give UltraCombo a look same as UltraComboEditor? I have set row.Appearance.BackColor on UltraCombo's MouseEnterElement & MouseLeaveElement events, but i want the same highlight (golden) color while hot-tracking the items in UltraCombo which is in UltraComboEditor. Can you please give me that color code & also how can i set that selected item border rounded?

# July 31, 2007 12:31 AM
Leave a Comment

(required) 

(required) 

(optional)
 

(required) 

If you can't read this number refresh your screen
Enter the numbers above: