Joomla Form Engine: chrono forms
I like to use chrono forms for building forms in Joomla. That is very powerful, you can have form to email functions and all forms elements, such as text box, option box and drop down box. Moreover, the administration interface is very easy to use. You can drag and drop elements to a form, then you can construct a form you want.
Lastly, it has a free version. So far, only one limitation I found is all forms need to have a link back to chrono forms. Well, that is fair.
More free space in OneDrive
Source:Open Clip Art Using Under Public Domain Attribution
A few days ago, I got an email from Microsoft. My OneDrive has upgraded to get 15GB space. That is cool. I can did more sync on my photo!
Tables Function in TinyMCE at Joomla
By default, Joomla is using TinyMCE in advanced mode. Even it calls "Advanced Mode", the functions are very basic, it is without any functions to control table, such as adding/deleting rows.
Acutally, TinyMCE has this kind of functions, You do not need to install any new plug-ins. Please go to Administration Panel, Click->Extensions-> Plug-ins-> Plug-in Manager: Editor - TinyMCE -> Select Functionality-> Extended.
There will be an extra row of icons in the TinyMCE.
WPF Animation
I built a feature to have an animation on the wide of a panel and the user click the minimize button. I wish to create a shrinking effect.
The best way I found is using DoubleAnimationUsingKeyFrames. This kind of animation can targeting any properties which is using a double as its value, such as Wide. Finally, I put the into a storyboard. Like the following
Code
DoubleAnimationUsingKeyFrames da = new DoubleAnimationUsingKeyFrames(); | |
LinearDoubleKeyFrame ad3 = new LinearDoubleKeyFrame(); | |
ad3.KeyTime = KeyTime.FromTimeSpan(new TimeSpan(0, 0, 0)); | |
ad3.Value = ActualWidth; | |
LinearDoubleKeyFrame ad = new LinearDoubleKeyFrame(); | |
ad.KeyTime = KeyTime.FromTimeSpan(new TimeSpan(0,0,6)); | |
ad.Value = 0; | |
Storyboard strbStoryboard = new Storyboard(); | |
strbStoryboard.Children.Add(da); | |
Storyboard.SetTargetProperty(da, new PropertyPath("(FrameworkElement.Width)")); | |
Storyboard.Begin(this); |
The example is from my opensource project, advgen contact manager
Windows Error:Kernel Security Check Failure(KERNEL_SECURITY_CHECK_FAILURE )
Source:Open Clip Art Using Under Public Domain Attribution
If you saw a blue screen during Windows 8 Installation with the message,"Kernel Security Check Failure"(KERNEL_SECURITY_CHECK_FAILURE ). I believe that is a memory problem. That is possible your ram died! Please get a blank USB drive and download memtest86. And then run the installation and put memtest on that USB drive. Finally, Plug-in that USB drive on the computer which you saw the blue screen. It will run some testes to see whether any problems on your RAM.