Showing posts with label Programing. Show all posts
Showing posts with label Programing. 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

Latest Internet Download Manager 6.07 Build 14


Internet Download Manager 6.07 Build 14 Full Version:

Internet Download Manager is a tool which brings you to download anything 4 to 5 times faster

and the latest version of Internet Download Manager is IDM 6.07 Build14
now you can download more better more saver and more faster
download from youtube and more famous video sharing websites download anything and anywhere .
Download IDM 6.07 Build 14 and enjoy!

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

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 :


Eset Nod & Smart Auto Update Keys

  • Eset Nod & Smart Auto Update Keys
NOD the best solution for automatically updating Eset NOD32 keys. Every day you get new keys and your Eset will never expire.


DOWNLOAD :

http://www.fileserve.com/file/Ew9SnCN/Eset_Nod_&_Smart_Auto_Update_Keys.rar

http://www.filejungle.com/f/BQZC2g/Eset_Nod_&_Smart_Auto_Update_Keys.rar

http://oron.com/n4fbm2zlbnxg

http://www.wupload.com/file/2578932342/Eset_Nod_&_Smart_Auto_Update_Keys.rar

RELATED POST

Adobe Flash Player 13.1.102.55 Internet Explorer, AOL, Mozilla Firefox, Netscape and Opera

Adobe Flash Player 11.1.102.55 For Internet Explorer, AOL, Firefox, Mozilla, Netscape and Opera - x86/x64 | 22.77 MB


Adobe Flash Player – browser plugin for Internet Explorer, AOL, Firefox, Mozilla, Netscape and Opera, allowing to play Flash-videos files (SWF). Without this program, the browser will correctly display Web pages and interactive web elements, developed by technology Flash. Adobe Flash Player – is a cross-platform runtime for browser-based delivery of dynamic applications, content and video on different screens and browsers. Wednesday Flash Player 10 is optimized for creating high-performance mobile applications and maintains the original functionality of the device, providing the user experience with the established applications.

Year : 2011
OS : Windows 2000/XP/Vista/7
The house. Home: adobe.com
Language : Ml
Crack : (freeware)



Just Click This

Wednesday, April 27, 2011

10 Best Antivirus in 2012


Old taste do not love a human being updated information on world best antivirus, last year had a post about the best antivirus 2010. Given the years have changed the posting of the 10 Best Antivirus in 2010 already passed so now We replace its news about the 10 Best Antivirus 2011. No different from last year 2011, ordinary people continue to use as source 10 ToptenReviews.com Antivirus is the best in 2011. Not much different from previous years the best antivirus in 2011 based on Several Important points who've ordinary people never posted here and here please please refer to there
On 10 Best Antivirus 2011 the position has not changed much from 10 Best Antivirus in 2010, there were the resource persons only A Few antivirus the which switch position or a freefall ride (emangnya use a Parachute). Well, here are the top 10 Best Antivirus 2011 Ordinary Humans get the which recently.
BitDefender Antivirus rated first there successfully defended his title the WHO for the 4th time in permission from the throne of the top 10 best antivirus in 2011 ... let's give a rousing applause for BitDefender AntivirusRated second is still overshadowed by Kaspersky Anti-Virus the which is Apparently Unable to overtake BitDefender to take permission from the rank 1 in the top 10 best antivirus in 2011. To note Kaspersky Anti-Virus for the 4th time it was also only Able to reach posis to-2 this year.
The third statistic is Webroot AntiVirus is still stalking the two competing anti-virus on it.
As if not to be outdone by its Rivals Norton AntiVirus also meramikan world of the best antivirus World wide with a fourth position for the second time
The next statistic is ESET NOD32 Antivirus to be satisfied to survive in the fifth position in 2011 for the second time. :Login to positions of six AVG Anti-Virus is still entrenched in a position like this for the 2nd time.
Log in seven positions of the WHO in 2010 yesterday at the occupied by F-Secure Anti-Virus seems a to be satisfied was thrown from a list of 10 best antivirus in 2011 this. G DATA AntiVirus is a new occupant in the top 10 best antivirus 2010, managed to go up one trip and sure to be in a position 7 for this year 2011. Good job: D
Further there keposisi Continue Successful repair Avira AntiVir position from 2010 yesterday ranked ninth Ditahun now ride a 2011 trip to position 8. Again applause for Avira AntiVir donk: D
Continue the next 10 best antivirus positions of our 2011 arrival of new residents WHO sped straight into the sequence 9 is VIPRE Antivirus. Still not safe can kelempar wkwkwkwkwkwwkwk later .... : D
Go to the order of the most bloated or caretaker or something, there's Trend Micro Titanium is Apparently still like to keep this position. : D
he 10 best antivirus in 2010.Well, the best antivirus on the computer / pc, a laptop, you are there in one Ordinary Man Who has been Mentioned above, if there are survivors deh ...: D
Do not forget the ordinary people congratulate new year: DHopefully this article useful,Keep smileKeep n touch 'Happy blogging: D

BitDefender Ranked first in 2011

On 10 Best Antivirus 2011 the position has not changed much from 10 Best Antivirus in 2010, there were the resource persons only A Few antivirus the which switch position or a freefall ride (emangnya use a Parachute). Well, here are the top 10 Best Antivirus 2011 Ordinary Humans get the which recently.

BitDefender Antivirus rated first there successfully defended his title the WHO for the 4th time in permission from the throne of the top 10 best antivirus in 2011 ... let's give a rousing applause for BitDefender Antivirus

please try this first ranking antivirus Free




How to Make a simple game with 20 applications

Here are a variety of applications can be used to make games that anyone who wants to make the game itself.
Create Flash-Based Game



1. AlbinoBlackSheep
http://www.albinoblacksheep.comHere a lot of games and videos, including tutorials on how to make flash-based games.
2. FlashKit

http:// www.flashkit.com
Here you can find a lot of work with flash tutorials include step by step guide to some types of games.
3. Kirupahttp://kirupa.comLots of extensive tutorial to make flash games including guidelines for specific games like shooter games.
4. Lassie Adventure Studiohttp://lassie.gmacwill.com/lower.php?section=news&page=indexWith this application, you can create 2D drawings for adventure game with ease and make the game.
5. Sploderhttp://www.sploder.comHere you can create flash games from various types of objects and then put it on MySpace, Blogger and other sites.
Creating Game Standard and guidance
6. Anim8orhttp://www.anim8or.comApplication modeling 3D animation for games that are easy to use.
7. Byondhttp://www.byond.comHere you can create your own game with the help of equipment that has been provided alikasi and then you share with others for their opinions.
8. Discovery Gamehttp://www.gamediscovery.comHere all you want to make games there, character making, making the gameplay and also you can find ideas to make the game here.
9. Martin Piecyk's Websitehttp://www.pages.drexel.edu/% 7Emfp27/gamemaking Guide to learn how to create games with accompanying links to various sources.
10. VGMusichttp://vgmusic.comIf you want to add sound effects or soundtrack of the game you created, you can find here, a lot of midi files that you can use for games that you create.
11. Visionaire2dhttp://www.visionaire2d.netThis application can help you create a 2D adventure game without programming knowledge.
12. YoYoGameshttp://www.yoyogames.comHere you will find a lot of equipment to make the game such as beta testing, downloads, work in progress, community, and many others.
Creating a RPG Game
13. Charas-Projecthttp://charas-project.netCharacter generator is easy to use for RPG characters that you want to create.
14. CrankEyehttp://www.crankeye.comThere are plenty of guides to make a RPG like character editors, soundfile and so forth.
15. DualSolacehttp://dualsolace.comHere you can find the software makes the RealFeel 2D MMORPG.
16. FreeMMORPGMakerhttp://www.freemmorpgmaker.comFree software to create a MMORPG including making parts of games like character, and sound effects.
17. PhanxGameshttp://www.phanxgames.com/index.aspYou can make RPG and also with making graphics, sound files midi, wav, then if you finish him, you can upload it on the site up to size 50 MB.
18. PlayerWorldshttp://www.playerworlds.comPopular applications are widely used to make a RPG game series.
19. RPG Makerhttp://www.rpg-maker-downloads.tnrstudios.com/RPG Maker program at this site there are some series that you can choose according to your wishes.
20. RPGCrisishttp://rpgcrisis.netHere you can find various downloads and applications for making RPGs on the various systems whether PC or the other.
21. RPG Revolutionhttp://www.rpgrevolution.comEquipment and applications for making RPG games on more than 13 different systems making games.
Free download 3d rpgmaker


Download 


==> May Beneficial yes <==

Friday, April 22, 2011

Hack Registry Booster 2011





Once Installed Go To Task Manager And End The Process Of Uniblue
Then Go To Registry Editor
Open Run And Type regedit And Hit Enter You Will Taken To The Registry Editor
Select HKEY-CLASSES-ROOT
Then Find CLSID
Then Right Click On CLSID And Click On Find
Uncheck "Keys" And "Data" And Check " Match Whole String Only " And Type " FC " In The Search Then Click Find Next
It Will Take You To The Next Step
Under FC Right Click Then Click On New Then Click String Value
Name It License
Then Double Click It You Should See A New Window
In The Value Data Field Paste This Key
RB-0HR4N7-NWYFRE-WGVT8T-P2GVR7­-T50U22
Click Ok
Close Your Registry Editor
Start The Registry Booster And Boom You Have The Registered Version
Congrats You Just Saved Few Dollars For Yourself

I Hope I Helped You In Some Way

Tags