Showing posts with label TIPS dan TRICK. Show all posts
Showing posts with label TIPS dan TRICK. Show all posts

Wednesday, November 30, 2011

ACDSee Pro 5.0.110 Full Keygen

ACDSee Pro 5.0.110 Full Keygen 

ACDSee Pro 5.0.110 Full Version With Keygen or Serial Number is the latest version released to the public by the company ACD Systems International Inc. based in the United States and Canada around the end of September 2011. ACDSee Pro 5 is a Photo Organizer software is a long acting in the graphics world, it is no wonder if the application is marketed in the world at a price of $ 95.99 but, at this time for those of you who want Download ACDSee Pro 5 For Free, masterkreatif.com offered to your all.

As in previous versions, ACDSee Pro 5 has a new feature. Here are some features that can be found in ACDSee Pro 5 :
  • Photo Developing include (Bring out the absolute best in your photos, Get the best RAW results, Tune your images, Geometry, Get it Straight, Reduce Noise, Achieve HDR Results with a single exposure, Perfect every color, Contrast control, Smarter Sharpening, Split-toning)
  • Photo Editing include (Dodge and Burn, Drawing Tools, Special Effects)
  • Workflow include (Color Labels, Batch Export Tool, Remove Metadata)
  • CD Burner, etc.
Minimum Requirements :
  • Wind. XP SP2/ Vista/ 7 (32 and 64 bit) of Windows Operating System
  • P III or Athlon of Processor
  • 512 MB of RAM
  • 250 MB free HDD space
  • 1024 x 768 of Screen resolution
Screenshots :



For those interested, Download here :
 
 



 
 
 

 

CSS Borders Tutorial

Basic Concepts, Tips, Tricks & Design Ideas

In this tutorial you will learn all about CSS borders. Learn how to create rounded corners in CSS and more! The CSS code for all these designs are also included below. Please do like, tweet or share this tutorial if you find it helpful!

css borders



Hemisphere
Round Rectangle
Bullet
Leaf











The Css Border property is used to add borders to html elements. With the Css

Border Property width, color and border type can be changed. Border Radius can also be used to produce round corners in supported

Browsers like IE9, Opera 8+, Firefox and webkit browsers like Chrome &

Safari
.



IE9 and Opera both use the same code to display Border Radius. For using Border Radius in Firefox and Webkit Browsers a prefix -moz- for Firefox and -webkit- for Webkit browsers like Chrome and Safari.












If your Browser supports Css Borders then you can see the following border effects.









Advanced Hemisphere
Advanced Round Rectangle
Advanced Bullet


Advanced Leaf





Borders can be applied in the following ways.





Border Syntax



border-(sub-property): (top) (right) (bottom) (left);












sub-property



top

right

bottom

left




we can use width, color, style and radius as sub-properties of Border.

This value gets assigned to the top portion of the border


This value gets assigned to the right portion of the border

This value gets assigned to the bottom portion of the border

This value gets assigned to the left portion of the border






Here in sub-property we can use width, color, style and radius as sub-types of Border.





Four values need be to defined.

  1. The first value gets assigned to the top portion of the border.
  2. The second value gets assigned to Right portion of the border.
  3. The third value gets assigned to the Bottom portion of the border.
  4. The last value gets assigned to the left portion of the border.
The values in the right are used to assign numerical values in pixels

for width and radius. Colors can be assigned to the borders by using RGB

Color Code, Hex Color Code or by Color names.







Border Color






Syntax : border-color: (top) (right) (bottom) (left);



Example: border-color: #85C226 #F7C200 #4493A0 #DF127B ;












Here the top border is green(#85C226) in color,



right border is yellow(#F7C200),



the bottom has blue(#4493A0)



and Left border is pink(#DF127B) in color.











Border Styles Important

This property must be used if you are using any of the Border properties.



Without using this border-style property you won't see any borders at all.





Syntax : border-style: (top) (right) (bottom) (left);




Example: border-style: solid dotted groove double;











Here the top border (green) has a solid style,



right (yellow) one has dotted,




bottom (blue) one has groove and



the left (pink) one has the double style.








Border Width

Syntax : border-width: (top) (right) (bottom) (left);




Example: border-width: 5px 10px 15px 20px;







Here Top (green) border's width is 5 pixel,



right (yellow) border is 10 pixel wide,




bottom (blue) is 15 pixel



and left (pink) is 20 pixel wide.








Border Radius

Syntax : border-radius: (top-left) (top-right) (bottom-right) (bottom-left);




Example: border-radius: 0px 30px 70px 20px;



For displaying round corners Border Radius property is used.



IE9 and Opera use the same code.

For Firefox a prefix -moz- needs to be added before the code. And for Webkit Browsers -webkit- needs to be added before the code.


Box-shadow property for all the browsers.







For IE and Opera



For Mozilla Firefox

For Webkit Browsers


box-shadow:

-moz-box-shadow:

-webkit-box-shadow:



0px 30px 70px 20px;

0px 30px 70px 20px;

0px 30px 70px 20px;

























No Border radius ( 0px ) has been applied on the top-left (green-pink) corner.



Border radius ( 30px ) has been applied on the top-right (green-yellow) corner.



Border radius ( 70px ) has been applied on the bottom-right (blue-yellow)corner.



Border radius ( 20px ) has been applied on the bottom-left (blue-pink) corner.











Now lets try making Hemisphere, Round Rectangle, Bullet and Leaf as shown at the top.




What we'll do here is create an empty <div> </div> inside your <body> </body> tags, then assign some width and height to it. We'll apply a thick border width to it so that the effect is visible clearly.












Stylesheet Code for <head> </head> tag





1
2
3
4
5
6
7
8
9
10
11
12
13




<head>

<style type=text/css>


#example{
width:120px; height:60px; border:thick solid; }
</style> </head>











! : Line 8 border:thick solid;



Border width (thick) wont work unless border type (solid) is also included in the code.










Please Note !The width and height as defined above will be same for all the <div> </div> tag's below. Just add the border-properties that I'm going to explain below.












Code for <body> </body> tag

1
2
3
4
5
6
7




<body>
<div id=example> </div>
</body>















Hemisphere



Use values of width, height and border as defined above. Only add these codes to your existing stylesheet or make a new one.



Hemisphere




1
2
3
4
5




#hemisphere{
border-radius:100px 100px 0 0 ; -moz-border-radius:100px 100px 0 0 ; -webkit-border-radius:100px 100px 0 0 ;
}






Green

Yellow


Blue

Pink




=> Top Border

=> Right Border

=> Bottom Border


=> Left Border















Advanced Hemisphere



Now we'll add more effects to the border by applying different values for width and using different border style.




Adv-Hemisphere
1
2
3
4
5
6
7
8




#adv-hemisphere{
border-width: 4px 30px 4px 30px; border-style: groove ridge dashed groove; border-color: #cc0000; border-radius:100px 100px 0 0 ; -moz-border-radius:100px 100px 0 0 ; -webkit-border-radius:100px 100px 0 0 ;
}








Here Border Properties like border-width, border-style and border-color are added and rest of the codes for Advanced Hemisphere are same as Hemisphere above.







Round Rectangle





Here all the corners have the same border radius (20px).

Round

Rectangle


1
2
3
4
5


#round-rectangle{
border-radius: 20px; -moz-border-radius: 20px; -webkit-border-radius: 20px;
}






Green


Yellow

Blue

Pink




=> Top Border

=> Right Border

=> Bottom Border


=> Left Border















Advanced Round Rectangle



We'll make top border's and bottom border's width zero pixel, Use same

border-radius (40px) for both top corners and for both the bottom


corners (60px).



Advanced Round Rectangle
1
2
3
4
5
6
7
8


#adv-round-rectangle{
border-width: 0px 12px 0px 12px; border-style: double; border-color: violet; border-radius:40px 40px 60px 60px; -moz-border-radius:40px 40px 60px 60px; -webkit-border-radius:40px 40px 60px 60px;
}

















Bullet



Same border radius (20px) is assigned to the corners on the left, and

same border radius (100px) is assigned to the right corners.



Bullet
1
2
3
4
5




#bullet{
border-radius: 20px 100px 100px 20px; -moz-border-radius: 20px 100px 100px 20px; -webkit-border-radius: 20px 100px 100px 20px;
}






Green


Yellow

Blue

Pink




=> Top Border

=> Right Border

=> Bottom Border


=> Left Border















Advanced Bullet



Here Groove style border and different colors for each border is used and the code is same as above.




Advanced Bullet
1
2
3
4
5
6
7
8


#adv-bullet{
border-width: 12px; border-style: groove; border-color: red blue green black; border-radius:20px 100px 100px 20px; -moz-border-radius:20px 100px 100px 20px; -webkit-border-radius:20px 100px 100px 20px;
}


















Leaf




Same border radius (120px) is assigned to the corners on the top-right

and bottom-left, and a border radius (0px) is assigned to the top-left

and bottom-right corners.



Leaf
1
2
3
4
5




#leaf{
border-radius: 0 120px 0 120px; -moz-border-radius: 0 120px 0 120px; -webkit-border-radius: 0 120px 0 120px;
}






Green


Yellow

Blue

Pink




=> Top Border

=> Right Border

=> Bottom Border


=> Left Border















Advanced Leaf

Background color (orange) is used for the <div>


.

Solid style border is used here same color (blue) for the top and right

border and same color (green) is used for bottom and left border.





Advanced Leaf
1
2
3
4
5
6
7
8
9


#adv-leaf{
background:orange; border-width:4px 30px 4px 30px; border-style: solid; border-color: #56c6d9 #56c6d9 #fe2192 #fe2192; border-radius:0 120px 0 120px; -moz-border-radius:0 120px 0 120px; -webkit-border-radius:0 120px 0 120px;
}

Tuesday, November 29, 2011

Make windows xp theme with SkinStudio

Make windows xp theme with SkinStudio 
Okay here I'll explain a little how to make windows xp theme using windows blind. For that I use WB version 6.0 and skinstudio 6

Immediately, the initial explanation. At this point say a button will make first start

1. WB to finish install and run, if WB wants to reboot then reboot first. To WB6 can be downloaded here:




2. Install skin studio please select your own version

3. Enable WB advance please if you have a serial / crack it

4. If it is then in the system tray icon will appear WB then 5. Double click on the icon / right click and select configure windows blind

6. If it appears choose a theme that we will edit. Here I will only change the existing theme, if you want to create from scratch just run Skin studio and began to design a theme that you want

I'll start from the start button. If the position I would like this

Ex. Select the Edit start menu and taskbar and then select Edit on the sub horizontal taskbars


 

It will appear as below



7. On the list select the Start button. If it is then it will look like below

9. Then select the fame is to click on the frame that will be on fox. In addition to the frame is there an explanation of the function of the frame itself. Ex on frame No. 1 explanation that the frame under normal circumstances. No two frames on the state of suppressed / we click, etc..

10. Now I will change the way the files on the choice pick the right side and I will replace with a picture as below

















11. Insert a picture in a frame builder. Then it would be like under

12. If it is then Click the save file and close. After we close, we will return to the previous window, kemdian Click Apply then the theme will be in pairs with all amendments thereto.

Ex got me







Hope can help

Monday, November 28, 2011

Paypal Exploit

This is a very useful code that can be used to skip payments on certain sites.
There is a javascript code that bypasses paypal money on some sites.
Just add the following in bookmark, or copy/paste it.
<script type="text/javascript"><!--
google_ad_client = "ca-pub-0659312901123673";
/* Hacking-Registry */
google_ad_slot = "6651184114";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
Code:

javascript:top.location=document.getElementsByName ('return')[0].value; javascript:void(0);

When you are visiting a page using a paypal button, just click the bookmark or paste the code in the URL bar of your navigator.

If it works, you will be redirected to the download page
Else, try another site (or buy it )

Some Sites It Works For
avmp3.com/
snouthouse.com/order.htm
instantnichewebsite.com/
peigifts.com/
instantinfoprofit.com/imsc/
www.minecraft.com (download no account upgrade)
(pretty much any ebook download)
(make/upgrade accounts on some sites)

DONT WORK FOR ALL SITES.

create database applications using Visual Basic 6.0

create database applications using Visual Basic 6.0

Student Database Applications Using Visual Basic 6.0 and Ms. Access
Okay this time we will discuss about the simple application using Visual Basic 6.0 using MS database. Acces. Surely already know much about VB aka Visual Basic, the language program that may not be too complicated if emang want to learn more on the inside. . .

Okay immediately wrote the first reply we have to prepare a visual basic program or the software first, you can download here

  http://www.mediafire.com/?tmg2xozdg45

Once we have a visual basic program or software, let's make his first accses database. I do not explain how to create a database with Ms. Access here. Okay immediately wrote a database created with a name who you want and create a table named 'student' if you want to change it please,
IISI table with who you want to be like NPM, name, class, courses, lecturers etc.. . .
click save as and save it with the name of who you want, in order to more easily create folders
New for this project. . .
Okay now we've got Ms. database. Access to the name of who you created above.

Next we open the Visual Basic and then select standard exe to a form, then click on the Project menu and add modules as shown below. . .




Now enter the code in the module below. . .
Option Explicit
Public DB As New ADODB.Connection
Public RS As New ADODB.Recordset
Public No As String
Public Sub mainx()
On Error Resume Next
If Dir(App.Path & "\database.mdb") = "" Then
    MsgBox "File ''" & App.Path & "\database.mdb''" & " Not Exist" & vbCrLf & _
           "Please Re-Install It !", 0 + vbExclamation, "Database tidak ditemukan"
    End
End If

If DB.State = adStateOpen Then
    DB.Close
End If
DB.Open "DSN=MS Access Database;DBQ=" & App.Path & "\database.mdb;DefaultDir=" & App.Path & ";DriverId=25;FIL=MS Access;MaxBufferSize=2048;PageTimeout=5;UID=admin;"
End Sub
What I paint the blue is the name of Ms. database. Access to our store earlier.
The module is completed we make now form his first, let's start the design.
Display design, which easiest wrote do not own a hardest.


above is the example of the design. . .
- Input student data using the labels, text and command button.
- Search also uses labels, text and command button.
- List of students using mhsflexgrid.

please never developed, if you like clay samples above please download the file below. Sorry I could not write a full tutorial because not enough time to be shorted. May be useful. . .



DOWNLOAD :


Tags