Posts

Showing posts from 2014

Adobe After Effects CS4 Keys:

1325-1673-0258-7389-4387-6191 1325-1086-9148-6025-9105-8874 1064-1977-3588-8980-3804-3835 1023-1382-7894-3070-9114-2550 1023-1681-3962-8243-7555-0825

Visual Studio Ultimate Key:

Visual Studio 2012 Ultimate Key: RBCXF-CVBGR-382MK-DFHJ4-C69G8 Visual Studio 2013 Ultimate Key: BWG7X-J98B3-W34RT-33B3R-JVYW9

Window 7 Keys:

Windows 7 Professional Key: 74T2M-DKDBC-788W3-H689G-6P6GT Windows 7 Ultimate Product keys 9JBBV-7Q7P7-CTDB7-KYBKG-X8HHC P72QK-2Y3B8-YDHDV-29DQB-QKWWM BCGX7-P3XWP-PPPCV-Q2H7C-FCGFR 342DG-6YJR8-X92GV-V7DCV-P4K27 (32 Bit) BCGX7-P3XWP-PPPCV-Q2H7C-FCGFR FJGCP-4DFJD-GJY49-VJBQ7-HYRR2 342DG-6YJR8-X92GV-V7DCV-P4K27 22TKD-F8XX6-YG69F-9M66D-PMJBM 49PB6-6BJ6Y-KHGCQ-7DDY6-TF7CD FHY4Q-VB63H-XK8VD-9Y68P-RFQ43 J6C9R-C9HHG-3CWTY-Y4MPW-CD72J

ASP.NET INSERT, SEARCH AND LOGIN QUERY EXAMPLE

Image
INSERT RECORD QUERY SEARCH RECORD QUERY LOGIN QUERY

100 Usefull Sites....

Image

Best PTC Sites.....

http://www.sevendollarclick.com/ http://fourdollarclick.com/ http://threedollarclick.com/ http://www.twodollarclick.com/ https://www.probux.com/ http://earndollardaily.com/ https://www.intclix.com/

SEO Introduction

SEO stands for Search Engine Optimization. it is process of optimizing the webpage in search engine. it is collection of rules and technique in driving more traffic from search engine. SEO is the part of internet marketing. it is categorized in to following types         SEO (Search Engine Optimization)         SEM (Search Engine Marketing)         SMM (Social Media Marketing) SEO is the cost effective method of increasing popularity of the webpages. SEO is the legal process of optimizing the webpages. This is done using Onpage and Offpage optimization techniques.

Joomla Introduction

Joomla is an award-winning content management system (CMS), Which enables you to build Web sites and powerful online applications. Many aspects, including its ease-of-use and extensibility, have made Joomla the most popular Web site software available. Best of all, Joomla is an open source solution that is freely available to everyone. A content management system is software that keeps track of every piece of content on your Web site, Content can be simple text, photos, music, video, documents, or just about anything you can think of. A major advantage of using a CMS is that it requires almost no technical skill or knowledge to manage. S Joomla is used all over the world to power Web sites of all shapes and sizes. For example:     Corporate Web sites or portals     Corporate intranets and extranets     Online magazines, newspapers, and publications     E-commerce and online reservations     Government applicatio...

Wordpress Introduction

WordPress is the most popular blog software on the internet. It is powerful, approachable and free. WordPress is now being used as fully functional content management system. The best feature of WordPress is the paging system. You can manage, edit and delete pages from the admin. Wordpress allow you to create static webpages using page templates. WordPress supports thousands of plug-in which enable you to expand Wordpress features. You can use php, javascript,xhtml and css in WordPress post.

WINDOWS 8 PRODUCT KEYS

TK8TP-9JN6P-7X7WW-RFFTV-B7QPF TK8TP-9JN6P-7X7WW-RFFTV-B7QPF DNJXJ-7XBW8-2378T-X22TX-BKG7J MBFBV-W3DP2-2MVKN-PJCQD-KKTF7  6RH4V-HNTWC-JQKG8-RFR3R-36498 4Y8N3-H7MMW-C76VJ-YD3XV-MBDKV 28VNV-HF42G-K2WM9-JXRJQ-2WBQW

Language Translatr App 4 Android

Click following link to download https://www.sendspace.com/file/wrys72

Call BlackList App 4 Android

Click following link to Download https://www.sendspace.com/file/vj8n4z

BCA Sem 1 & 2 2013 Syllabus

Click on Following link to Download... https://www.sendspace.com/file/7b904i  

BCA Sem 3 & 4 2013 Syllabus

Click on Following link to Download... https://www.sendspace.com/file/e8mec7  

BCA Sem 5 & 6 Sem 2014 Syllabus

Click on Following link to Download... https://www.sendspace.com/file/xxwp82

Delete Record from Table Using Java

import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.Statement; public class jdbc3 { public static void main(String args[]) { try { Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); Connection con=DriverManager.getConnection("jdbc:odbc:student"); Statement s=con.createStatement(); String query="delete name from bca where city='baroda'"; s.execute(query); ResultSet rs=s.getResultSet(); s.close(); con.close(); System.out.println("1 Record Deleted"); } catch(Exception e) { System.out.println("Error"); } } }

Update Record in Table Using Java

import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.Statement; public class jdbc2 { public static void main(String args[]) { try { Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); Connection con=DriverManager.getConnection("jdbc:odbc:student"); Statement s=con.createStatement(); String query="update bca set name='harshit' where city='baroda'"; s.execute(query); ResultSet rs=s.getResultSet(); s.close(); con.close(); System.out.println("1 Record Updated"); } catch(Exception e) { System.out.println("Error"); } } }

Insert Record in Table Using Java

import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.Statement; public class jdbc1 { public static void main(String args[]) { try { Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); Connection con=DriverManager.getConnection("jdbc:odbc:student"); Statement s=con.createStatement(); String query="insert into bca values('ravi','baroda')"; s.execute(query); ResultSet rs=s.getResultSet(); s.close(); con.close(); System.out.println("1 Record Inserted"); } catch(Exception e) { System.out.println("Error"); } } }

Select Records From Database Using Java

import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.Statement; public class Type_One { public static void main(String args[]) { try { Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); Connection con=DriverManager.getConnection("jdbc:odbc:student"); Statement s=con.createStatement(); String query="select * from bca"; s.execute(query); ResultSet rs=s.getResultSet(); while(rs.next()) { System.out.println("Name is="+rs.getString(1)); System.out.println("City is="+rs.getString(2)); } s.close(); con.close(); } catch(Exception e) { System.out.println("Error"); } } }

Steps 4 Java Data Base Connectivity(JDBC)

(1) Open Control panel (2) Choose Administrative tool (3) Click ODBC Data Source (4) Choose Add Option (5) Select Microsoft (.mdf) file (6) Select your database from location (7) Give proper name for data source (8) Click OK button

Core Java Programs Definition

1.WAP TO PRINT “HELLO WORLD”. 2.WAP TO PRINT SIMPLE 5 LINE MESSAGE WITH NEW LINE. 3.WAP FOR COMMAND LINE ARGUMENTS. 4.WAP TO FIND NO. IS ODD OR EVEN. 5.WAP TO FIND NO. IS POSITIVE-NEGATIVE-ZERO. 6.WAP TO FIND MAX NUMBER. 7.WAP TO FIND MIN NUMBER 8.WAP FOR SWITCH CASE. 9.WAP FOR SIMPLE WHILE LOOP. (1 TO 10). 10.WAP TO PRINT ONLY ODD NUMBERS BETWEEN 1 TO 100 11.WAP TO PRINT ONLY EVEN NUMBERS BETWEEN 1 TO 100 12.WAP TO FIND SUM OF 1 TO 100 NUMBERS. 13.WAP FOR SIMPLE DO WHILE LOOP. 14.RUN ALL THE EXAMPLE OF WHILE IN DO WHILE LOOP. 15.WAP FOR SIMPLE FOR LOOP. 16.WAP FOR SIMPLE NESTED FOR LOOP. 17.WAP TO PRINT ANY 5 PIRAMID USING NESTED FOR LOOP. 18.WAP FOR SIMPLE ARRAY EXAMPLE. 19.WAP FOR TRY CATCH STATEMENT. 20.WAP FOR NESTED TRY CATCH STATEMENT. 21.WAP FOR SIMPLE CLASS EXAMPLE 22.WAP  FOR CLASS WITH VOID. 23.WAP TO GENERATE RANDOM NUMBERS. 24.WAP TO FIND SUM OF RANDOM NUMBERS. 25.WAP FOR INPUT STRING FROM USER USING SCANNER. 26.WA...

Restart PC Using Code

(1) Right Click on Desktop (2) New-> Shortcut (3) Enter Following Code in Text box         shutdown.exe /r /t 00 (4) Give Name Any name for Shortcut (5) Finish......

Shutdown PC Using Code

(1) Right Click on Desktop (2) New-> Shortcut (3) Enter Following Code in Text box                 shutdown.exe /s /t 00 (4) Give Name Any name for Shortcut (5) Finish......

SUMIF Example

COMPANY PROFIT COMPANY PROFIT APPLE 500 APPLE 1000 MICROSOFT 400 MICROSOFT 1000 NOKIA 300 NOKIA 1000 SONY 200 SONY 1000 PIXEL 100 PIXEL 1000 SUM IF 5000 Formula:- =SUMIF(B2:B6,"<1500",E2:E6)

COUNTIF Example

NAME POST ARUSH CLERK AXAY PEON AJAY PRINCIPAL RAVI TEACHER KARAN OTHER NIRAV CLERK HARSHIT TEACHER SULAY TEACHER ANAND PEON MIHIR PRINCIPAL COUNT IF 3 Formula:- =COUNTIF(B2:B11,"TEACHER")

Table Array Sum in Excel

M1 10 M1 50 M2 20 M2 40 M3 30 M3 30 M4 40 M4 20 M5 50 M5 10 TOTAL 300 TOTAL Formula:- =SUM(C3:C7,F3:F7)

HLOOKUP In EXCEL

A B C D E F G H I 1 ORDER 10247 10249 10250 10251 20252 10253 $16.00 2 ID $14.00 $18.00 $7.00 $16.00 $16.80 $64.00 6 3 QUANTITY 12 9 10 6 20 40 $14.00 FORMULAS: PASTE THIS FORMULA IN D1 CELL. =HLOOKUP(10251,A1:G3,2,FALSE) PASTE THIS FORMULA IN D2 CELL =HLOOKUP(10251,A1:G3,3,FALSE) PASTE THIS FORMULA IN D3 CELL =HLOOKUP(10247,A1:G3,2,TRUE)