Posts

Showing posts from September, 2020

Customize Interactive Report in Oracle APEX. (Color Rows if row have Specific Values)

Image
 This blog will demonstrate steps to display column value with different color based on calculations. Following is output of what we want to achieve. Step1: Create an Interactive Report based on SQL Query.I have used following query.You can use your own as per your requirement. select     EMPNO,     ENAME,     JOB,     DEPTNO,     SAL,     case when SAL < 3000 then 'red'         when SAL between 1000 and 2000 then 'blue'         when SAL > 3000 then 'green'     end text_color from EMP EMP     Step2: Now go to Columns under Report and select Text_Color.   Step3: Now set Type = Hidden Column     Step4:  Now you have to set following code in each column under Column Formatting (HTML Expression)   <span style="color:#TEXT_COLOR#;font-weight:bold;">#SAL#</span>...

Getting Started with C++ Programming

Untitled Document Write a program in C++ to print My First Program on output Screen" #include<iostream.h> #include<coniog.h> int main() { clrscr(); cout <<"My First Program "; return 0; }     Write a program in C++ to print Addition of Two Numbers" #include<iostream.h> #include<coniog.h> int main() { int integer1,integer2,sum; cout >integer1; cout >integer2; sum=integer1+integer2; cout     Write a program in C++ to print Area of Circle (equation is : pi(r * r)" #include<iostream.h> #include<coniog.h> #define pi 3.14 int main() { float area,r; clrscr(); cout<&lt"Enter the value for r::"; cin>>r; area=pi*r*r; cout<&lt"Area of "<&ltr<&lt"is"<&ltarea; getch(); ...

Programming Fundamental and Logic Development

Image
This Blog will help you to start with Programming Step 1: First You Need Turbo Compiler.Click on the following link to download Turbo Compiler. https://drive.google.com/file/d/1eNYvBqtjbV6sUFLoYksu_XITz3LwOnT9/view?usp=sharing   Step 2: Click on Above Link and you will see page as follows   This will download Turbo C.   Step 3: Now you required WinRar Zip to extract this folder. You can find the link on following page. https://www.win-rar.com/download.html?L=6 Step 4: Now go to folder then right click and Click Extract Here. Your file will be extracted.   Step 5: Now Click on Setup.exe and done. If u face any issue then just type your questions in the comment section.