ongeremd.com

Blog over het Fine tunen van website, webshops en Content management systemen

Archive for the ‘Internet’

Crystal Reports error the group section cannot be printed because its condition field is nonexistent or invalid

Check the formula fields in the Field Explorer. You can right click on them and “Browse Data” to see if an error is produced. Can we assume this report has groupings? Check the field(s) the report is grouped on. Are any of them null? Check the group selection formulas. Check the record selection formulas. Have any of the uses [...]

How to create XML file of Database in C# asp.Net

To create XML file of Database we have to call WriteXml() function of Data Set. Example string strConnection = “Server=abc\\SQLEXPRESs;Database=Employee;Trusted_Connection=True”; SqlConnection con = new SqlConnection(strConnection); //creating new connection to database Employee con.Open(); //opening connection SqlDataAdapter da = new SqlDataAdapter(“select * from employee”, con); //assigning data to DataAdapter according to the query DataSet ds = new DataSet(); da.Fill(ds, “Employee”); //filling dataset. ds.WriteXml(“C:\\dataEmployee.xml”); //writing XML file of name ‘dataEmployee.xml’ of [...]

How to make a booklet with microsoft word

The WordBookletTemplates.zip file contains Microsoft Word templates for 4, 8, 12, 16, 20, 24, 28, and 32 page booklets, with and without page numbers (16 templates in all). I think I developed these with Microsoft Word 97 and I’ve never made any changes to them. They use a series of text boxes that flow from [...]

How to shut down a virtual machine

If a virtual machine is not configured to automatically shut down, you can shut it down manually by following these steps. To shut down a virtual machine Do one of the following: To shut down from an open virtual machine, from the toolbar of the virtual machine window, click Ctrl+Alt+Del. Or, you can press the CTRL+ALT+END key sequence. To [...]

Extend your Joomla Contact form

An AJAX driven Joomla! 1.5.x component to place a contact form anywhere on your web page with any number of custom fields of different types, including attachments. Change log : http://www.algisinfo.com/joomla/aicontactsafe-change-log.html In the component pack you also get: - mod_aiContactSafe : a modul to display the contact form in any position of your template - plg_aiContactSafeForm : a plugin [...]

Joomla contact page

Ever wanted some more fields in your Standard joomla contact form. This is the way to do it . No need to write your own php script to send the extra field. Just install this great joomla extension from mavrosxristoforos.com:     Rapid Contact. Lightweight, fast and easy, configuring a contact form, was never a pleasure before.   Rapid Contact is a [...]

How to embed flash swf file in joomla

HOW TO ADDED .SWF file in Joomla How To Embed Swf Files In Joomla ?   please see the those steps your will be added your flash file joomla successfully     localhost/joomla/administrtor -> login joomla open localhost JOOMLA admin control panel GO TO menu ->Media Manager create a folder Name (flash) NEXT Browse (your  .Swf file) uploadind flash floder ok NEXT OPEN THIS LINK http://extensions.Joomla.Org/extensions/core-enhancements/flash-management/366 download [...]

Location php.ini file

Well it depends on the Linux distribution you are using, the version of php and the way you install it with Apache web server. Php.ini may be here: /etc/php.ini Or here: /etc/php/php.ini /etc/php5/php.ini Or here: /usr/bin/php5/bin/php.ini Anyway, you can always find any file named php.ini in this manner find / -name php.ini The simplest yet most powerful usage of the renowned find command. By [...]

Jquery tutorials

Jquery Tutorial accordion style menu: John resig, de maker van de Jquery Javascript Librabry heeft deze online video gepost die je heel gemakkelijk laat zien hoe je een accordion menu bouwt met Jquery. Het is tamelijke basis stof maar een goed begin om met Jquery bekend te worden. jQuery Demo - Expandable Sidebar Menu from John Resig on [...]