joeydaly.com #code #afl #tennis

17Sep/111

SVN Quick Checkout a branch/tag

Posted by Joey

One issue of having a lot of tags/branches in SVN is if you’re in a rush and don’t want to do an SVN Update to everything!
Got this concept of a friend at work to quick checkout a branch/tag, by simply creating the branch/tag folder name first and then SVN Checkout within it.

Go to repo browser, get the name of the branch/tag.
Go into your working… Continue reading

Tagged as: , , , , 1 Comment
16Sep/110

The type or namespace name ‘Orientation’ does not exist in the namespace ‘DevExpress.Web.ASPxMenu’

Posted by Joey

Another error from the DevExpress Upgrade to 11.1.7, following error:

1

Fix:
use System.Web.UI.WebControls.Orientation.Vertical… Continue reading

15Sep/110

DevExpress.Web.ASPxGridView.ASPxGridViewBehaviorSettings.AllowMultiSelection is obsolete

Posted by Joey

Got the following error when doing the DevExpress upgrade to 11.1.7:

1

Fix:
Change to ASPxGridView.SettingsBehavior.AllowSelectByRowClick… Continue reading

14Sep/110

php split()

Posted by Joey

Bit behind the eight ball, but the php function split(string $pattern, string $string) is depreciated. Instead use explode(string $delimiter, string $string)

1

For more info… http://php.net/manual/en/function.explode.php

8Sep/110

Cacoo

Posted by Joey

Found a great website that lets you draw diagrams!

http://cacoo.com

UMLs, Flowcharts, Wireframe, Work Layout Diagrams and more… this site is great! Best part, is that you can share it with colleagues and friends, with the option to collaborate!

Check out it :)
Cacoo!

6Sep/110

DevExpress Nested ASPxPopupControls

Posted by Joey

After a bit of debugging, refactoring and explaination from DevExpress. Worked out that we were doing it wrong!

Currently DevExpress do not support the ability to nest ASPxPopupControls. Why on earth do I want to do that anyway? Well if you have a large website with lots of re-usable features.. and like us, use Web Forms. You’ll most likely put those re-usable features into User Controls. So naturally you… Continue reading