I have been using VirtualBox for 4 months so far over Leopard and in my modest appreciation it works excellent. I have three virtualizations: Windows 2003 Server, Windows XP and Ubuntu. I don't have any bad feedback to report you.
Enjoy you too:
http://www.virtualbox.org/
Installation over Mac OSX
Just download it and drag it into your Applications folder
Happy Virtualization
Bntz :)
Saturday, July 25, 2009
Iframe inside mojoPortal
The first thing that I tried when I needed add an Iframe element embeded in UserControl, was add runat="server" attribute, but it throws an error. After the approach below, it works pefect.
HtmlGenericControl ifr = new HtmlGenericControl("iframe");
ifr.Attributes.Add("id","myiframe");
ifr.Attributes.Add("onload","doSomething();");
ifr.Attributes.Add("height","400");
...
PlaceHolder1.Controls.Add(ifr); //the final trick
I read this articles before:
http://www.justskins.com/forums/c-htmlgenericcontrol-90652.html
Happy coding
Btnz :)
HtmlGenericControl ifr = new HtmlGenericControl("iframe");
ifr.Attributes.Add("id","myiframe");
ifr.Attributes.Add("onload","doSomething();");
ifr.Attributes.Add("height","400");
...
PlaceHolder1.Controls.Add(ifr); //the final trick
I read this articles before:
http://www.justskins.com/forums/c-htmlgenericcontrol-90652.html
Happy coding
Btnz :)
Saturday, April 25, 2009
Alternative for MS Project for Mac OS
OpenProj is an alternative to work over Mac OS and with a very similar Microsoft Project features. It's a Open Source, so far this post, it was absolutely free. I recommend this software.
Take a look of it
http://www.osalt.com/project
:)
Take a look of it
http://www.osalt.com/project
:)
Subscribe to:
Posts (Atom)