Saturday, 21 December 2013 1 comments

Spell Check in C#

Spell Check in C#

Interoperability in C# Spell Checking. This is Word Spell Checker which enable in C# for Spelling Check we use this in Notepad in C#.

Click Here to Download Its Program
0 comments

AutoComplete Suggestion in C#

AutoComplete Suggestion in C#

AutoComplete is the TextBox Feature that Suggest you Data from Database or File and help you to work easily Here is its program. If you have any problem comment on this or email me.. 

Click Here to Download Program
Wednesday, 4 December 2013 0 comments

DML Operations in C#

DML(Insert, Update, Delete and Select) Operations in C#

Insert, Select, Update and Delete statements these are basics of a programming because these are common coding practice which applies in development of application or a website associated with the database. Insert, Select, Update and Delete altogether also known as DML (Data Manipulation Language) statements which helps in managing the data with the database within schema objects.

Click Here to Download Program of DML
 
Note : Kindly Make Database and Change Your connection String according to Your PC. Database Backup file is allocate in the Program.
 
Just Comment or email me if you have any Problem.
Monday, 2 December 2013 0 comments

Reflection in C#

Reflection in C#

Reflection is the process by which a program can read its own metadata. A program is said to reflect on itself, extracting metadata from its assembly and using that metadata either to inform the user or to modify its own behavior.

Click Here to Download Program
0 comments

Attributes in C#

Attributes in C#

Attributes are a mechanism for adding metadata, such as compiler instructions and other data about your data, methods, and classes, to the program itself. Attributes are inserted into the metadata and are visible through ILDasm and other metadata-reading tools.

Click Here to Download Program
Monday, 25 November 2013 0 comments

Cryptography in C#

Cryptography in C#

Here is the C# Cryptography Class. Cryptography is the Process of Hiding Your Information in Specific Format that Another Person Couldn't Understand. 

Two Types of Cryptography:
1. Symmetric (have public key)
2. Asymmetric (have public and private key which knows by Sender and Receiver)

Namespace for Cryptography is System.Security.Cryptography


Click Here to Download Program
Monday, 11 November 2013 0 comments

Regular Expression in C#

Regular Expression in C#

Here is the C# Regular Expression Class. Regular Expression is used for set the Restriction in your Text. If you want that someone can insert only number in TextBox or Alphabets then you have to use Regular Expression for this..

Namspace for Regular Expression is System.Text.RegularExpression
Class is Regex

Regular Expression Short Cut and Cheat Sheat :
http://www.cheatography.com/davechild/cheat-sheets/regular-expressions/


Click Here to Download Program
Monday, 21 October 2013 0 comments

Processes in C#

Processes in C#

Here is the C# Process Class. You can get Running Process info and More.


Click Here to Download Program
0 comments

C# File Info Class

C# File Info and Right Class

Here is the C# File Info Program. You can get File info and Rights through this.


Click Here to Download Program
0 comments

C# XML Serialization

C# XML Serialization

Here is the C# XML Class Program. If you have any query contact me.


Click Here to Downlaod
Thursday, 10 October 2013 0 comments

C# Dictionary Class

C# Dictionary Class

Here is the C# Dictionary Class Definition and Example.

Dictionary Class

The Dictionary class gives us the opportunity to map some values to specific keys; in real life scenarios we need this mechanism to represent some values whenever we call the key associated with them according to an event.


Click Here to Downlaod Program
0 comments

C# Operator Overloading

C# Operator Overloading

Here is the C# Operator Overloading Defination and Example.

Operator Overloading Details


In an object oriented programming language like C#, operator overloading provides a much more natural way of implementing the operations on custom types. Suppose that we have a class created for Complex number and we want to perform all the arithmetic operations on this type. One way to do this is by having functions like Add, Subtract inside the class and have the functionality. Another way is to actually have the overloaded version of operators to act on this type.
Operator overloading provides a much natural abstraction for the types. When we think about possible operation on some data type we can think of binary operators, unary operators, relational operators and perhaps some conversion operations to and from the basic types. In C# achieving all this is possible using operator overloading.

Using the code

Before looking at the implementation details, lets see what are the conventions that need to be followed if we want to overload an operator.
  • The operator function should be a member function of the containing type.
  • The operator function must be static.
  • The operator function must have the keyword operator followed by the operator to be overridden.
  • The arguments of the function are the operands.
  • The return value of the function is the result of the operation.
Click Here to Download Program
Wednesday, 2 October 2013 0 comments

C# Data Compression

C# Data Compression

Here is the C# Data Compression Defination and Example. It is not provided by any Faculty of APTECH. This is uploaded by me after searching on Internet.

Data Compression is the File Compression Method in C# which is used to Compressed and Encrypt File.


Click Here to Download Data Compression Program

Note : If you have Any Query Just Ping Me :)
0 comments

C# Serialization

C# Serialization

Here is the C# File Handling Defination and Example. It is not provided by any Faculty of APTECH. This is uploaded by me after searching on Internet.


Serialization is a process of taking an object and converting into a form so that it can be transported across the network or can be persisted in the storage location. This storage location can be physical file, database or ASP.NET Cache. The form contains the state of the object so that by this format, we can construct the same object a later point in time, which is called Deserialization.

Some good uses for serialization/deserialization include: 
  1. Storing user preferences in an object.
  2. Maintaining security information across pages and applications.
  3. Modification of XML documents without using the DOM.
  4. Passing an object from on application to another.
  5. Passing an object from one domain to another.
  6. Passing an object through a firewall as an XML string. 

    Click Here to Download Serialization Program
0 comments

C# File Handling

C# File Handling

Here is the C# File Handling Defination and Example. It is not provided by any Faculty of APTECH. This is uploaded by me after searching on Internet.

File Handling is the way to save  your desire  data permanently  to file outside your program.

References : 
http://www.c-sharpcorner.com/uploadfile/puranindia/file-handling-in-C-Sharp/

Click Here to Download File Handling Program



0 comments

C# Delegates

C# Delegates

Here is the C# Delegate Defination and Example. It is not provided by any Faculty of APTECH. This is uploaded by me after searching on Internet.


Delegate is a type which  holds the method(s) reference in an object. It is also referred to as a type safe function pointer.

Advantages

  • Encapsulating the method's call from caller
  • Effective use of delegate improves the performance of application
  • Used to call a method asynchronously

References : 

Click Here to Download Class Delegates Program
1 comments

C# Enum

C# Enum

Here is the C# Enum Defination and Example. It is not provided by any Faculty of APTECH. This is uploaded by me after searching on Internet.


Enums store special values. They make programs simpler. If you place constants directly where used, your C# program becomes complex. It becomes hard to change. Enums instead keep these magic constants in a distinct type.
using System;

class Program
{
    enum Importance
    {
 None,
 Trivial,
 Regular,
 Important,
 Critical
    };

    static void Main()
    {
 // 1.
 Importance value = Importance.Critical;

 // 2.
 if (value == Importance.Trivial)
 {
     Console.WriteLine("Not true");
 }
 else if (value == Importance.Critical)
 {
     Console.WriteLine("True");
 }
    }
}
Reference :


Click Here to Download My C# Enum Program
Monday, 16 September 2013 0 comments

C# Programming OOP Concept

C# Programming Lecture OOP Concept

Here is the C# Programming OOP Tutorial. It is not provided by any Faculty of APTECH. This is uploaded by me after searching on Internet.


Click Here to Download
Saturday, 20 July 2013 0 comments

XML Slide and StyleSheet


XML Slide and StyleSheet

Here is the XML with StyleSheet Slide of Miss Aisha. 


Click Here to Download
0 comments

XML Slide and Schema


XML Slide and Schema

Here is the XML Schema of Miss Aisha. 


Click Here to Download
0 comments

XML Slide


XML Slide

Here is the XML of Miss Aisha. 


Click Here to Download
Monday, 15 July 2013 0 comments

XML DTD and Schema

XML

Here is the XML file of Miss Aisha Khan

Note : This is Program not Presentation or PDF Kindly Understand the code and Work. Paste in NOTEPAD and save it with .xml extension.

XML

 <?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE>
<student>
<id>1</id>
<name>Owais</name>
<enroll_no>1207G1</enroll_no>
</student>

DTD XML

 <?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE student [
<!ELEMENT student  (id,name,enroll_no)>
<!ELEMENT id  (#PCDATA)>
<!ELEMENT name  (#PCDATA)>
<!ELEMENT enroll_no  (#PCDATA)>
]>
<student>
<id>1</id>
<name>Owais</name>
<enroll_no>1207G1</enroll_no>
</student>

Schema

<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:xs=http://www.w3.org/2001/XMLSchema> <!--xmlns means XML NameSpace-->
<xs:element name="price">
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:decimal">
<xs:attribute name="currency" type="xs:string" use="required"></xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:schema>
Friday, 5 July 2013 0 comments

Java Database Connection With SQL

Java Database Connection

Here is the Java Programming Program of Database Connection with SQL of Miss Aisha Khan.

Note : This is Program not Presentation or PDF Kindly Understand the code and Work. Can Ask Anytime for help.


JavaForm: Make 2 textboxes and 3 button for Insert,Update and Delete

Insert Button
 
 try{
      
        Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
        Connection conn=DriverManager.getConnection("jdbc:odbc:s1", "sa", "aptech");
       Statement s = conn.createStatement();
        int id=Integer.parseInt(Id.getText());
        String name = Name.getText();
        s.execute("insert into student values('"+id+"','"+name+"')");
        System.out.println("Recond Inserted");
    }
    catch(Exception e){
        System.out.println(e);
    }


Update Button:
 
try{
       
        Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
        Connection conn=DriverManager.getConnection("jdbc:odbc:s1", "sa", "aptech");
       Statement s = conn.createStatement();
        int id=Integer.parseInt(Id.getText());
        String name = Name.getText();
        s.execute("update student set std_name='"+name+"' where std_id='"+id+"'");
        System.out.println("Row Updated");
    }
    catch(Exception e){
        System.out.println(e);
    }

 
Delete Button:

try{
      
        Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
        Connection conn=DriverManager.getConnection("jdbc:odbc:s1", "sa", "aptech");
       Statement s = conn.createStatement();
        int id=Integer.parseInt(Id.getText());
        String name = Name.getText();
        s.execute("delete from student where std_id='"+id+"'");
        System.out.println("Row Deleted");
    }
    catch(Exception e){
        System.out.println(e);
    }
Thursday, 4 July 2013 0 comments

Java Synchronized Thread

Java Synchronized Thread

Here is the Java Programming Program of Synchronized Threads of Miss Aisha Khan.

Note : This is Program not Presentation or PDF Kindly Understand the code and Work. Can Ask Anytime for help.


CallMe Class : 
 
package sync_t;

public class CallMe implements Runnable{
   String name;
   Thread th;
   sync_thread t;
 
   public CallMe(String n, sync_thread s)
   {
       name=n;
       t=s;
       th = new Thread(this);
       th.start();
   }
 
 
   public void run()
   {
   t.c(name);
   }
}

sync_thread Class();
 
package sync_t;

public class sync_thread {
synchronized  public void c(String m){
        System.out.println("{"+m);
        try
        {
           Thread.sleep(1000);
        }
        catch(InterruptedException ex)
        {
           
        }
        System.out.println("}");
    }
}


Main Class();




package sync_t;


public class Sync_t {

   
    public static void main(String[] args) {

        sync_thread st = new sync_thread();
       
        CallMe cl = new CallMe("Apt", st);
        CallMe cl2=new CallMe("Owais",st);
       
    }
}
0 comments

Java Getter and Setter Work

Java Getter and Setter Work

Here is the Java Programming Program of Getter and Setter from Miss Aisha Khan.

Note : This is Program not Presentation or PDF Kindly Understand the code and Work. Can Ask Anytime for help.


Student Class :
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package gettersetter;

/**
 *
 * @author asp
 */
public class Student {
    int id,age;
    String name;
    public int getid(){
        return id;
    }
    public String getname(){
        return name;
    }
    public int getage(){
        return age;
    }
    public void setid(int i){
        id=i;
    }
    public void setname(String n){
        name=n;
    }
    public void setage(int a){
        age=a;
   }
 
}

Main Class();
 

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package gettersetter;

/**
 *
 * @author asp
 */
public class GetterSetter {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        // TODO code application logic here
        Student std=new Student();
        std.setid(45);
        std.setname("Owais");
        std.setage(20);
        System.out.println(std.getid());
        System.out.println(std.getname());
        System.out.println(std.getage());
    }
}
 
Tuesday, 11 June 2013 0 comments

Java Inheritance, Interface and MethodOverloading Special PDF

Java Inheritance, Interface and MethodOverloading Special PDF

Here is the Java Programming PDF from Miss Aisha Khan.

Note : This is Password Protected because of importance this is for only APTECH friends.

Click Here to Download
Saturday, 18 May 2013 0 comments

Java Array Method OOP and Inheritance Notepads


Java Array Method OOP and Inheritance Notepads

Here is the Java Programming Notepad from Miss Aisha Khan. 

Click Here to Download
Click Here to Download
Click Here to Download
Click Here to Download (Array Method)
Click Here to Download (Array)
Click Here to Download (2d Array)
Saturday, 4 May 2013 0 comments

Java third Slide


Java third Slide

Here is the Third Java Programming slide of Miss Aisha Khan. 

Click Here to Download
0 comments

Java Second Slide(Loops, Conditions)


Java Second Slide(Loops, Conditions)

Here is the Java Programming slide of Miss Aisha Khan. 

Click Here to Download
0 comments

Java First Slide


Java First Slide

Here is the Java Programming slide of Miss Aisha Khan. 

Click Here to Download
0 comments

SQL Server 2008 Slide - 2


SQL Server 2008 Slide - 2

Here is the Second SQL Server 2008 slide of Miss Aisha Khan. 

Click Here to Download
0 comments

SQL Server 2008 Slide


SQL Server 2008 Slide

Here is the SQL Server 2008 slide of Miss Aisha Khan. 

Click Here to Download
Tuesday, 9 April 2013 2 comments

CPISM IMPORTANT


CPISM IMPORTANT QUESTION

Here is the CPISM important question from MISS Aisha Khan. This is the solve paper plz download and learn it.

Click Here to Download
Thursday, 4 April 2013 0 comments

SQL Trigger Slide

SQL Trigger Slide

Here is the SQL Last Trigger slide of Miss Aisha Khan.


Click Here to Download
Saturday, 30 March 2013 0 comments

SQL Store Procedure Slide


SQL Store Procedure Slide

Here is the SQL Store Procedure slide of Miss Aisha Khan.


Click Here to Download
Friday, 29 March 2013 0 comments

SQL Indexes Slide


SQL Indexes Slide

Here is the SQL Indexes slide of Miss Aisha Khan.


Click Here to Download
Friday, 22 March 2013 0 comments

SQL Normalization Slide


SQL Normalization Slide

Here is the SQL Normalization slide of Miss Aisha Khan.


Click Here to Download
Tuesday, 19 March 2013 0 comments

SQL Views Slide



SQL Views Slide

Here is the SQL View slide of Miss Aisha Khan.


Click Here to Download
0 comments

SQL Advanced Query Techniques


SQL Sub-Query Slide

Here is the SQL Sub-Query (Advanced Query Techniques) slide of Miss Aisha Khan.


Click Here to Download
2 comments

SQL DCL Slide


SQL DCL Slide

Here is the SQL DATA CONTROL LANGUAGE slide of Miss Aisha Khan.

Click Here to Download
Friday, 8 March 2013 0 comments

SQL Joins Slide


SQL Joins Slide

Here is the SQL Joins slide of Miss Aisha Khan.


Click Here to Download
Wednesday, 27 February 2013 1 comments

SQL Group By Clause Slide


SQL Group By Clause Slide

Here is the SQL Group By Clause slide of Miss Aisha Khan.


Click Here to Download
Friday, 15 February 2013 0 comments

SQL Server Management Studio 2008

SQL Software


Here is the SQL Server Management Studio 2008 for All My Friends.


Torrent Link(2008 Enterprises)


Click Here to Download

Direct Download(2008 Express)

32-bit
Click Here

64-bit
Click Here
Monday, 11 February 2013 2 comments

SQL Statement Slide


SQL Statement Slide

Here is the SQL Statement Slide. SQL Statements introduction today's class.


Click Here to Download
0 comments

SQL Introduction of RDBMS

SQL Introduction of RDBMS

Here is the SQL Slides from now. First Introduction of SQL slide.


Click Here to Download
Monday, 4 February 2013 0 comments

C Files Slide


C Files Slide By Miss Aisha

Here is the C Last File lecture of Miss Aisha. File Slide of C Programming with Programs in it.


Click Here to Download
Thursday, 24 January 2013 0 comments

C Structure Slide and Programs

C Structure Slide By Miss Aisha

Here is the C Structure lecture of Miss Aisha. Structure Slide of C Programming and it's Programs.


Click Here to Download

Click Here to Download Programs
Sunday, 20 January 2013 0 comments

C String Slide

C String Slide By Miss Aisha

Here is the C String Array lecture of Miss Aisha. String Slide of C Programming with String Programs.


Click Here to Download

Click Here to Download Programs
0 comments

C Pointer Slide(Updated)


C Pointer Slide By Miss Aisha(Updated)

Here is the Pointers lecture of Miss Aisha. Pointer Slide of C Programming with two dimension pointers.


Click Here to Download
Wednesday, 2 January 2013 0 comments

C Pointer Slide


C Pointer Slide By Miss Aisha

Here is the Pointers lecture of Miss Aisha. Pointer Slide of C Programming.

Click Here to Download
 
;