Apple IOS beta Profile to get latest iOS

Apple Beta software :

After installing beta profile to your iOS device , you'll get the latest beta iOS version.

CAUTION : Create A Backup Of Your Data Before Installing Beta Profile !

Here's how to install beta profile:

1# On your iOS  device , launch Safari browser , then go to : https://beta.apple.com/profile/





2# Enter your iCloud data  and Sign in .
You should receive  notification on your other ios devices , and you get a verification number too.











3#After login  download beta  Profile 

4# install it 

5# Restart your device 

6# Go to Setting  ---General - Software- Check for updates--Install updates



download ,install and reboot.

enjoy...

Changing the JDK Compliance Level

Changing the JDK Compliance Level

You can change the compiler compliance level by going to the Java Compiler page as shown in the steps below.
  1. In the Project Explorer view, right-click on the project and then select Properties.
  2. Select the Java Compiler page in the Properties window.
  3. In the JDK Compliance section, select the desired Compiler compliance level.
  4. Click Apply and then Ok.


  5.  
If your project is a facet-enabled project, you will also need to set the Java version in the Project Facets page by doing the following.
  1. In the Project Explorer view, right-click on the project and then select Properties.
  2. Select the Project Facets page in the Properties window. This page lists the facets in the project and their versions.
  3. Select the desired version number for the Java facet.
  4. Click Apply and then Ok.


  5.  

How to send SMS from ORACLE forms 10g

Here's how to send sms message from Oracle application.



Explain:



Say we are subscribed to msegat.com service with the following credentials:



User Name : OMAR

Password :  123

User Sender : ThreeM    ( you got it from your sms site)

Text we'll send : My_Test_Message

Phone we'll send message to : 966123456789



Here's how the code will run:

/*Start of SMS code*/

SET serveroutput ON
SET Define OFF
 
DECLARE
    HTTP_REQ      UTL_HTTP.REQ;
    HTTP_RESP     UTL_HTTP.RESP;
    URL_TEXT      VARCHAR2(32767);
    URL VARCHAR2(2000);
     
     SMS_MSG VARCHAR2(160) := 'Congratulations! Your database has been configured propoerly for sending SMS through a 3rd party SMS Gateway';
     
BEGIN
    DBMS_OUTPUT.ENABLE(1000000);
--Based on your service provider, the following link format may differ from
--What we have specified below!   
 
UTL_URL.Escape(SMS_MSG,TRUE);
--UTL_URL.Escape manages escape characters like SPACE between words in a message.
     
   
 
    HTTP_REQ  := UTL_HTTP.BEGIN_REQUEST(URL);
    
    UTL_HTTP.SET_HEADER(HTTP_REQ, 'User-Agent', 'Mozilla/4.0');
    HTTP_RESP := UTL_HTTP.GET_RESPONSE(HTTP_REQ);
 
    -- Process Request
    LOOP
        BEGIN
            URL_TEXT := null;
            UTL_HTTP.READ_LINE(HTTP_RESP, URL_TEXT, TRUE);
            DBMS_OUTPUT.PUT_LINE(URL_TEXT);
 
            EXCEPTION
                WHEN OTHERS THEN EXIT;
        END;
    END LOOP;
 
    UTL_HTTP.END_RESPONSE(HTTP_RESP);
END;
/*End of SMS code*/


If you got an error , you can remove :

SET serveroutput ON
SET Define OFF




"و فوق كل ذي علم عليم"