Monday, June 9, 2014

Sample Project in VB 2008 for Beginners

Click here to download the system.

My Sample is the first Visual Basic Project intended for start-up and advance programmers in VB 2008. It incorporates the complete module of Splash Screen and Security Log-in feature of a system. Feel free to download and enjoy uncovering the codes for this software.

It is a system written in Visual Basic 2008 (VB2008) as front end and SQL (Access) as backend to the project. If you need more exciting projects for your firm, you can call us at +639128224350 and +639127353298 or you may visit our website at Lasare.net.

Don't forget to leave your comments for suggestions.

Saturday, May 24, 2014

New release software product

Deskware 

Waterworks Management System Using Visual Basic 2008 (VB 2008)
 Click here to start your download of the system.

Click the button to start your download.

Waterworks Management System is a simple billing system made and designed by Lasare Business Solutions in order to help the firm in their system operations. Download this system for free and enjoy uncovering the exciting codes found therein.

It is a system written in Visual Basic 2008 (VB2008) as front end and SQL (Access) as backend to the project. If you need more exciting projects for your firm, you can call us at +639128224350 or you may visit our website at Lasare.net.

Don't forget to leave your comments for suggestions.

ABC's in Turbo C: For beginners and advance programmers in C

Click here to download PDF file.
 Click here to download ABC's in Turbo C PDF

ABC’s in Turbo C

A Reference for the Rest of Us
Covers the first hand lessons that you must know when learning Turbo C. This is also an aid in problem solving and program designing using C language.

Codes of FLAMES in Turbo C


#include<stdio.h>
#include<string.h>
main()
  {
  char word[100];
  char word2[100];
  int x,y,a,b,count = 0, flag = 0;
  int m,n,div;
  clrscr();

  printf("Enter name of boy: ");
  gets(word);
  printf("\nEnter name of girl: ");
  gets(word2);

  x = strlen(word) - 1;
  y = strlen(word2) - 1;

  for(a=0;a<=x;a++)
     {
     for(b=0;b<=y;b++)
{
if(word[a]==word2[b])
  {
  flag = 1;
  }
}
     if(flag == 1 )
{
count = count + 1;
}
       flag = 0;
     }

   for(b=0;b<=y;b++)
     {
       for(a=0;a<=x;a++)
          {
            if(word2[b]==word[a])
               {
                 flag=1;
     }
           }
       if(flag==1)
          {
   count = count + 1;
          }
        flag = 0;
     }
       printf("\n");

       if(count > 6)
{
div = count%6;
if(div==1)
   {
   printf("FRIENDS");
   }
if(div==2)
   {
   printf("LOVERS");
   }
if(div==3)
  {
   printf("ACCEPTED");
   }
if(div==4)
   {
   printf("MARRIED");
   }
if(div==5)
   {
   printf("ENEMIES");
   }
if(div == 0)
  {
   printf("SOULMATES");
   }
}
else if(count<=6)
  {
  if(count ==1)
    {
    printf("FRIENDS");
    }
  if(count==2)
   {
   printf("LOVERS");
   }
  if(count==3)
   {
   printf("ACCEPTED");
   }
  if(count==4)
   {
   printf("MARRIED");
   }
  if(count==5)
   {
   printf("ENEMIES");
   }
  if(count == 6)
  {
   printf("SOULMATES");
   }
  }
       count = 0;
getch();
return 0;
}

If condition in C: Getting the average from a given list of input with variation



#include<stdio.h>

main()
{

int a, input[1000];
int choice;
int num,max,low;
double total=0,average;
int array[1000];

clrscr();

  start:
  clrscr();

  printf("\n                  ******** MENU **********\n");
  printf(" [1] Input as many numbers as the user like and ends getting of numbers when -1 is inputted.\n");
  printf(" [2] Getting the largest, lowest and average in a list of numbers.\n");
  printf(" Enter choice : ");
  scanf("%d", &choice);

       if(choice==1)
{
   clrscr();
   for(a=0;a<1000;a++)
      {
      printf("Enter number : ");
      scanf("%d",&input[a]);
    if(input[a]==-1)
      {
      goto start;
      getch();
      }
      }
 }


    if(choice==2)
{
clrscr();

 printf("Enter number of list :");
 fflush(stdin);
 scanf("%d",&num);

     for(a=0;a<num;a++)
{
printf("Enter number:");
scanf("%d",&array[a]);
if (a==0)
{
max=array[a];
low=array[a];
}

if(array[a]>max)
  max=array[a];
if(array[a]<low)
   low=array[a];
total+=array[a];
}
    average=total/num;
    fflush(stdout);
    printf("LOWEST  = %d.\n",low);
    printf("LARGEST = %d.\n",max);
    printf("AVERAGE = %lf.\n",average);


     }


getch();
return 0;
}

Part 7. Commercial Law. Piercing the viel. Solidary liability

Because a corporation’s existence is only by fiction of law, it can only exercise its rights and powers through its directors, officers, or...