Computer Programmers Please Come In
Moderators: Moderators, Junior Moderators
Forum rules
This General Forum is for general discussions from daily chitchat to more serious discussions among Somalinet Forums members. Please do not use it as your Personal Message center (PM). If you want to contact a particular person or a group of people, please use the PM feature. If you want to contact the moderators, pls PM them. If you insist leaving a public message for the mods or other members, it will be deleted.
This General Forum is for general discussions from daily chitchat to more serious discussions among Somalinet Forums members. Please do not use it as your Personal Message center (PM). If you want to contact a particular person or a group of people, please use the PM feature. If you want to contact the moderators, pls PM them. If you insist leaving a public message for the mods or other members, it will be deleted.
Computer Programmers Please Come In
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.
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
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
still waiting for Programmers
- Rightwing
- SomaliNet Super
- Posts: 9248
- Joined: Mon Dec 23, 2002 7:00 pm
- Location: Maqaamka lagu xadreeyo MEDED, MEDED
- Contact:
Re: Computer Programmers Please Come In
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
viewforum.php?f=3
Re: Computer Programmers Please Come In
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
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
- afisoone
- SomaliNet Super
- Posts: 5509
- Joined: Wed Jul 22, 2009 9:46 pm
- Location: We all want to become president even though Amisom controls Mogadishu
Re: Computer Programmers Please Come In
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



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.





Where you learn from programming mr Fortran.. It is funny to me Somalida qaarkood isma yaqaanaan walaahi. Yaa!..
- Rightwing
- SomaliNet Super
- Posts: 9248
- Joined: Mon Dec 23, 2002 7:00 pm
- Location: Maqaamka lagu xadreeyo MEDED, MEDED
- Contact:
Re: Computer Programmers Please Come In
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
Rightwing wrote:drupals ! anba waan ka yaabay waxa meelahaas gaadhsiiyey Mr. Fartan! cabudhiye asked database based on access and I proposed c# and java.

- IRONm@N
- SomaliNet Super
- Posts: 5122
- Joined: Tue May 01, 2001 7:00 pm
- Location: Jannatul-Fardowsa
- Contact:
Re: Computer Programmers Please Come In
you could do most of these on Microsoft excel, unless you want something sophisticated.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.
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 . . .
- IRONm@N
- SomaliNet Super
- Posts: 5122
- Joined: Tue May 01, 2001 7:00 pm
- Location: Jannatul-Fardowsa
- Contact:
Re: Computer Programmers Please Come In
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;
}
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
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
if your still looking for someone to help
- Nanees
- Posts: 0
- Joined: Tue Sep 27, 2011 8:23 pm
- Location: Chilling on Cardassian Beaches in a Burqini
Re: Computer Programmers Please Come In
unless you have somebody on site who can troubleshoot access of c++ program if things go wrong, you're better off on excel.
-
- Similar Topics
- Replies
- Views
- Last post
-
- 3 Replies
- 7471 Views
-
Last post by afisoone
-
- 7 Replies
- 1367 Views
-
Last post by quark
-
- 8 Replies
- 1494 Views
-
Last post by www.somalidoc.com
-
- 3 Replies
- 539 Views
-
Last post by QansaGabeyle
-
- 8 Replies
- 917 Views
-
Last post by Pure_Habar_Jeclo_Thug
-
- 44 Replies
- 2619 Views
-
Last post by AbdiWahab252
-
- 6 Replies
- 521 Views
-
Last post by Smooth_Qaaxoti
-
- 13 Replies
- 1329 Views
-
Last post by MJ-Pride
-
- 2 Replies
- 585 Views
-
Last post by union
-
- 19 Replies
- 1194 Views
-
Last post by Gedo_Boy