Page 1 of 1

Computer Programmers Please Come In

Posted: Sun Sep 11, 2011 4:10 pm
by caburiye1
If there is any Computer Programmer here I need your help. If you help me on this project and we succeed, there would be a a descent gift for you.

I want to create a little program on Microsoft Access 2010 for Xalaal Meat credit/ dayn enteries.

I need to create a program that would allow me to enter the

1) purchased on credit items ( hilib, caano, sonkor etc)
2) amount of money for each item
3) total balance ( either automatic or can allow me to sum it up.)
4) can allow me to pull up a customer by name or by ID
5) Can allow me to view the list of customers and the amount owed by each of them in one list.

What can I do? I know it is possible to create such a program on Microsoft access. Pm me or ask me to pm you or post the instruction here whatever works.

Re: Computer Programmers Please Come In

Posted: Sun Sep 11, 2011 4:25 pm
by caburiye1
I can't believe there is no single computer Programmer in here. Somalis are really not good at technology. Maybe because we are lazy and don't want to think. I being one of them.

Re: Computer Programmers Please Come In

Posted: Mon Sep 12, 2011 6:58 pm
by caburiye1
still waiting for Programmers

Re: Computer Programmers Please Come In

Posted: Mon Sep 12, 2011 9:19 pm
by Rightwing
Why do you want Microsoft Access 2010 !? i think you have to consider C# or Java so developers can help you. if you need our help you must visit the right section:
viewforum.php?f=3

Re: Computer Programmers Please Come In

Posted: Mon Sep 12, 2011 10:32 pm
by Fortran
I have notice most somalies study computer networks, I have met few programmers and most are beginners.

For solving you're problem: Think of you're problem as three separate entities that interact. Customers, Products and Order(transaction between the Customers & Products). This task won't require any programming skills, basic computer literacy


-Start with drupal. Drupal is open source CMS that can support small scale shopping cart.
-Investigate shopping cart module(add on), like ubercart.
-look into Views module(add on), views module will allow you to manage customers, products, and orders.

or look into third part vendor like Shopify, perfect for small scale. http://www.shopify.com

Re: Computer Programmers Please Come In

Posted: Tue Sep 13, 2011 12:19 am
by afisoone
Fortran wrote:I have notice most somalies study computer networks, I have met few programmers and most are beginners.

For solving you're problem: Think of you're problem as three separate entities that interact. Customers, Products and Order(transaction between the Customers & Products). This task won't require any programming skills, basic computer literacy


-Start with drupal. Drupal is open source CMS that can support small scale shopping cart.
-Investigate shopping cart module(add on), like ubercart.
-look into Views module(add on), views module will allow you to manage customers, products, and orders.

or look into third part vendor like Shopify, perfect for small scale. http://www.shopify.com
:lol: :lol: :lol:
He asked basic stuff. It is easy to do it. What I don't understand is that does he want OOP or web App

Is this guy really need help? Or just want to have for sake of questions.....

Fortran says drupals. :lol: :lol: :lol: :lol: :lol:

Where you learn from programming mr Fortran.. It is funny to me Somalida qaarkood isma yaqaanaan walaahi. Yaa!..

Re: Computer Programmers Please Come In

Posted: Tue Sep 13, 2011 7:22 am
by Rightwing
drupals ! anba waan ka yaabay waxa meelahaas gaadhsiiyey Mr. Fartan! cabudhiye asked database based on access and I proposed c# and java.

Re: Computer Programmers Please Come In

Posted: Tue Sep 13, 2011 11:40 pm
by caburiye1
Rightwing wrote:drupals ! anba waan ka yaabay waxa meelahaas gaadhsiiyey Mr. Fartan! cabudhiye asked database based on access and I proposed c# and java.
:D

Re: Computer Programmers Please Come In

Posted: Wed Sep 14, 2011 6:05 am
by IRONm@N
caburiye1 wrote:If there is any Computer Programmer here I need your help. If you help me on this project and we succeed, there would be a a descent gift for you.

I want to create a little program on Microsoft Access 2010 for Xalaal Meat credit/ dayn enteries.

I need to create a program that would allow me to enter the

1) purchased on credit items ( hilib, caano, sonkor etc)
2) amount of money for each item
3) total balance ( either automatic or can allow me to sum it up.)
4) can allow me to pull up a customer by name or by ID
5) Can allow me to view the list of customers and the amount owed by each of them in one list.

What can I do? I know it is possible to create such a program on Microsoft access. Pm me or ask me to pm you or post the instruction here whatever works.
you could do most of these on Microsoft excel, unless you want something sophisticated.

but if you gonna do a C or C++ you could set up an array of names or structures.

For example a simple C program calculating the totals of five items and their tax

#include <stdio.h>
int main ()
{
float item1, item2, item3, item4, item5;
float tax_rate, total_price, tax_payable;

printf ("please enter five items\n");
scanf("%f%f%f%f%f", &item1, &item2, &item3, &item4, &item5); //scans five items
total_price=item1 + item2 + item3 + item4 + item5;
printf("total= %.2f\n", total_price);
printf("please enter tax rate\n");
scanf("%f", &tax_rate); // scans tax rate
tax_payable= total_price * tax_rate/100;
printf("%f \n",tax_rate*total_price);
printf("%f \n",tax_rate*total_price+ total_price); // totals
system("pause");
return 0;
}
compile and run results

please enter five items
5
4
3
2
1
total= 15.00
please enter tax rate
.15
2.250000
17.250000
Press any key to continue . . .

Re: Computer Programmers Please Come In

Posted: Wed Sep 14, 2011 6:15 am
by IRONm@N
when you talking about something as like a list of ppl each having their own file under their name, you need struct or an array.

sample struct program.

struct album
{
char number[MAXNUM];
char name[MAXNAME];
int year;
};


int main()
{

void printEmps(struct file, int);

struct file customer;

customer.social= 222335555;
strcpy(customer.number, "(612)-222-3333");
strcpy(customer.name, "Abdi Mohamed");

system("pause");

return EXIT_SUCCESS;

}

Re: Computer Programmers Please Come In

Posted: Sat Oct 01, 2011 12:02 pm
by qeysfive
lol are you still looking for a programer let me know your email i help you out
if your still looking for someone to help

Re: Computer Programmers Please Come In

Posted: Sat Oct 01, 2011 8:30 pm
by Nanees
unless you have somebody on site who can troubleshoot access of c++ program if things go wrong, you're better off on excel.