Unsay best language to use in making accounting program ......i was thinking of cobol but quite obsolete...lately unsay maayo kanang easy lang mag scripting? Ideas please
Unsay best language to use in making accounting program ......i was thinking of cobol but quite obsolete...lately unsay maayo kanang easy lang mag scripting? Ideas please
try quickboook it's not a language but it's an accounting na program.. sort of..
if you want the appropriate programming language to create account software, use the language that has access to Excel functions/lib para dili naka maglisud create ug mga functions/formula for computations.
you can try using VB.NET or C#.net those are not obsolete, and they are quite easy to use.
gusto nako kanang customized na program, nga suited sa akong business, complicated man gud ang quickbooks, labad a ulo tan-awon, ako ba kanang simple lang, maka monitor sa purchases, input for beginning balance then maka produce ug month end inventory,,,,,makahimo ug credit statement...
Excel boss, if you know tanan formula for your business, you can code that in EXCEL.
Try MsAccess.
#!/usr/local/bin/perl
#
# Install (a modified version of) this program in your webserver's cgi-bin
# directory.
#
# This program handles a request to return inventory information for
# .catalog=&.id=_fake_yahoo_item_&.code=_fake_yahoo_ code_
# It returns the item availability information as its response.
#
require 5.001;
use strict;
if ($ENV{'REQUEST_METHOD'} ne "POST") {
die("Expecting a POST, bailing");
}
my $o;
read(STDIN,$o,$ENV{'CONTENT_LENGTH'});
my %o;
for (split(/&/,$o)) {
$_ =~ s/\+/ /g;
my($key,$val) = split(/=/,$_,2);
for ($key,$val) {
$_ =~ s/%([0-9a-fA-F][0-9a-fA-F])/chr(hex($1))/ge;
}
$o{$key} = $val;
}
sub YahooFakeItem {
my($info)=@_;
my $itemid=$info->{".id"};
if (defined $itemid && $itemid eq "_fake_yahoo_item_") {
return 1;
} else {
return 0;
}
}
sub GetItemAvailability {
my($info)=@_;
my $catalog=$info->{".catalog"};
my $code=$info->{".code"};
#
# Replace this with your code to determine whether an item is in stock.
# Return -1, if the item is unknown
# available quantity, if the item is valid.
#
srand;
return int(rand(100));
}
my($avail);
if (YahooFakeItem(\%o)) {
$avail="-1";
} else {
$avail=GetItemAvailability(\%o);
}
print "Status: 200\n";
print "Content-Type: text/plain\n";
print "Available: $avail\n";
if ($avail <= 0) {
print "Inventory-Message: The item is not currently available. Please check back later.\n";
}
print "\n";
cud anyone tell me what is the programming language used in the above script? replies will be highly appreciated
Perl na boss, is a listing language gamit ko ana sa college boss
kung naka mac boss, imu rana e copy daun e save as perl file mu dagan nana
Similar Threads |
|