Home
Welcome to www.developerpages.gr
Place for professionals or hobbyists Developers. You can read technical articles for many programming languages, you can post your own articles, comment on solutions to several issues given by other developers to participate in our discussions, to ask your own questions and get answers from professionals.
Create your own account and enter in our community, learn, find solutions and give your own opinion about programming.
Random Articles
Create xml file (sales orders) with abap
Simple code for create xml file with Sap Sales Orders :
xml file :
<?xml version="1.0"?>
<Orders>
<Order>
<order_num>0000000001</order_num>
<date>20121025</date>
<customer_code>0000000003</customer_code>
<customer_name>Customer Name</customer_name>
<Items>
<Item>
<matnr>000000000001000001</matnr>
<quantity>1.000 </quantity>
<amount>10.85 </amount>
</Item>
</Items>
</Order>
</Orders>
Abap Program :
Visual Basic "Hello World" Program
Write "Hello World" with Visual Basic
Download Java SE ans IDE's
Ακολουθούν links από τα οποία μπορείτε να κατεβάσετε την Java καθώς και περιβάλλοντα ανάπτυξης
Java for Statement
java for Statement and enhanced for Statement :
Resize image with php
The following php class resizes the image to a specific size.