Latest Post





Joseph Garcia | Stratton Kehl Publications Inc | ISBN 0963622927 | RS | PDF | 106 pages | 23 MB


Before a baby can speak, babies communicate with simple sign language. In this book teaches parents how to recognize sign language used by the baby.

Joseph Garcia, provide practical guidance and humor from the beginning of a unique form of communication. he recommends for the first teaching and provide ideas for games that can be fun and useful when introducing new signs for their babies.

This book is also a useful reference with 145 clearly illustrated signs, enabling you to select and teach the signs that will be most beneficial to you and your child. This book also included in the package "separate" edition called the SIGN with your BABY Complete Learning Kit - which consists of books, 60-minute training video and quick reference guide.





Publisher: Elia Gourgouris | ISBN n/a | English | Audio CD in MP3 - 128Kbps | 25 MB

In this connection requires a "conversation," as an effort to communicate with their spouse. In this presentation, Dr. Elia Gourgouris help you define your relationship in four key areas:

  1. Communication
  2. Finance: Investment Decision Making
  3. Spiritual Beliefs
  4. Emotional, Spiritual, and Physical Intimacy
His counsel, intended primarily for LDS dating couples, offering insights with humor mixed in combination perfect to help each partner to determine and improve their relationship.


Publisher: HarperAudio; Abridged edition | ISBN: 0060000589 | English | MP3 - 128Kbps | 37 MB

Courtship allows couples and their families to know each other. Problems in a fixed relationship is always there, for that Dr. Laura Schlesinger invited back to the style of traditional courtship.

Audio This is an invaluable guide for all couples who had married well and for the single people who are struggling to find the right partner or avoid a bad relationship. Acknowledging your stupid mistakes can be difficult, but with the help of this audio, you'll know how improve a relationship and how to find satisfaction, joy, and loving friendship in your most important relationships.





SIMAndInvManager.zip || 523.20 KB


A simple application that can support purchasing, sales and automated inventory management. I earned a lot from PSCODE.com that is why I want to share this piece of code to all beginners and for those who want to learn VB6. It includes 16 user controls and a modified LynxGrid control which originally created by Richard Mewett.





TAG : SIM, inventory manager, system information management, free source code, vb,


POS_And_Inventory_System.zip || 1.92 MB

Point of Sale (POS) and Inventory System.

A must have features:

  1. Barcode support
  2. Point of Sales
  3. Place an order (sales order or purchase order)
  4. Receive or deliver an order by batch
  5. Support for returning of orders
  6. Product inventory according to unit of measures
  7. There are some features which I did not include for the meantime.

Note: Automatic numbering for barcode (field) are used to simulate barcoding system. Just used the correct barcode of the product if you want to use the barcoding system.




TAG : pos, barcode, point of sale, sales, inventory, free source code, source code, vb

The CREATE TABLE statement is used to create a table in a database.

Syntax :
            CREATE TABLE table_name
            (
              column_name1 data_type,
              column_name2 data_type,
              column_name3 data_type,
             ....
            )

Ex :
            CREATE TABLE Student
            (
              IdStudent int,
              FirstName char (50),
              LastName char (50),
              Addreas varchar (200)
             )




TAG: SQL statement, database, table, student

The CREATE INDEX statement is used to create indexes in tables.

Indexes allow the database application to find data fast; without reading the whole table.

SQL CREATE INDEX Syntax
Syntax :
            CREATE INDEX index_name  ON table_name (column_name)
Ex :
            CREATE INDEX IdStudent ON Student (LastName)


SQL CREATE UNIQUE INDEX Syntax
Syntax :
            CREATE UNIQUE INDEX index_name ON table_name (column_name)
Ex :
            CREATE INDEX IdStudent ON Student (LastName, FirstName)




TAG: SQL statement, database, table, student

Author Name

Contact Form

Name

Email *

Message *

Powered by Blogger.