does anyone know which programming language is used to make applications like those used in shops and malls where the sales assistant will enter name of a product and all its details will come up and whn someone makes a purchase the details will go to a database , i need to know which language is used and also which platform is used ,thanks in advance
Notice from electric ink:
Please read the rules. The What Is..? forum is for answering a common question or telling everybody about what interesting fact you learnt today. Warned and moved.
There's so many forums here! I just found this now, lol. Anywho, my name is Deretto. I came
here for free webhosting like I'm sure everyone else did. This system is interesting, but it
seems trustworthy. I hope once I get things going (I put the wrong domain name -.-) things will be
easier.....
This example will show you how use a string in VB to create PHP code. In order to do this, you need
a string to store your PHP page and a function that I will list at the bottom of the page for you to
put in a module. This code is written in VB.NET Public Sub CreatePage(ByVal HTMLTitle As
String, ByVal HTMLText As String, ByVal HTMLFileName As String) Dim strFile As String '
---------------------- ' -- Prepare String -- ' ---------------------- strFile = "" '
-------------------- ' -- Write Starter -- ' -------------------- strFile = " " ....
First of all, to get the idea of what I am trying to achieve here, please have a look at my
idea thread, entitled Idea For Using A Cron Job To Grab Daily Travian Map.sql Updates . This gives
a prelude to the project, what it is for, what it is supposed to do, etc. Now, what I need is
specific advice on setting up the mySQL database(s) to implement this idea. There is a useful FAQ
file for how to make use of the map.sql data located on the help.travian.com website, which also
gives an example of the CREATE TABLE instruction that matches the data in the map.sql fi....
hello! as all of us know that Orkut is Google's Social Networking webservice , and moreover
orkut is one of the most biggest social networking site in today's world. Unfortunately while
using orkut i had to come across a Bug in it.You can experience and see it for yourself, just all
you need to do is that open multiple profile's in diffrent tabs or in diffrent windows
simultaneously and just Click scrap on all the tabs, so now that you are in the scrap page of many
users, now in this situation if you try to scrap it asks for a Security Code ( Code verific....
CODE /* Demonstrates the use of if statement with else clause */ #include <stdio.h>
int x, y; int main() { /* Input the two values to be tested */
printf("\nInput an integer value for x: ");
scanf("%d", &x); printf("\nInput an integer value for
y: "); scanf("%d", &y); /* Test values and print result
*/ if (x == y) printf("x is equal to y\n");
else if (x ....
I propose the idea that giving free premium software to those who could never afford a purchase can
only help the owners of that software. Some say that if a sale was never going to happen it
can't be a lost sale. I agree. If people can get started learning to use programs they could
never buy, they may develop skills and abilities that would enable future revenue and loyalty. At
the same, time a third world nation can have more development as skilled and trained professionals
grow. Another important issue would be addressed as well. Piracy. By lifting the copyrig....
I'm trying to join my videos all together, I want to make overlay or I don't know what's
it's supposed to call, but I do have some examples. Please take a look at this link
http://www.youtube.com/watch?v=oMqGADSqcZ8 It's for example, take a look at 00.50. The author
joined Morgan Freeman's video with another video. Or take a look at this too
http://www.youtube.com/watch?v=Bsjd7fVJQy0 at 03.19, 03.36. At 03.36, when pyro (the blue man
dancing), there's another video added, another man called G-Man dancing too. What software
needed to crea....
I found one web-site that pays for sure, because there are proof's of payments on other forum,
if you want I can post them over here. The payments processors such as PayPal and e-Gold are used.
The clicks are worth 0.01$ each, minimum 4 clicks a day. But there are more options you can
earn. The requirement for the withdrawal is about 0.4$ that is easy to reach. Who got
interested, please PM me.....
Ok, I'm not sure if I can say this with a straight face, so I'll just say for you poor
college students who need some extra green for that weekend movie (Mike, you reading this?), you
might check in to this more closely. You never know, some of your relatives down the line might
actually be able to say, with honesty, "Well, I'm a monkey's Uncle!" I guess some
perverts are wanting your "seed" so they can create the ultimate, uh.... Well, someone help me out
here: THE LINK Horror? Nightmare? Improvement? SIN? Here's the original article in case....
QUOTE Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has
been the industry's standard dummy text ever since the 1500s, when an unknown printer took a
galley of type and scrambled it to make a type specimen book. It has survived not only five
centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was
popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and
more recently with desktop publishing software like Aldus PageMaker including versions of L....
Hi all, I was searching for a P2P good and fast P2P for downloading and sharing music files, and I
found SoulSeek, and it fit my needs, easy, fast, groupable sharing (e.g. when you are searching for
a song, you can download the whole folder that contain it). you can visit SOUL SEEK OFFICIAL
WEBSITE for downloading freeware version of soul seek, and download your favorite songs Wish that
help people who interests in downloading songs, music and soundtracks....
im looking for a program that can help me with web design maybe templates and such. i don't
like adobe photoshop because its big and the steep learning curve can anyone help me? ....
Implement a Queue using a stack. No restriction on space complexity. One possible Solutions a
costly procedure... 1. Use a temp stack 2. Insertion into queue - Push the element into the
original stack 3. Deletion from queue - Pop all the elements from stack into a temp stack
- pop out the first element from the temp stack - pop all the remaining elements back to the
original stack What is a queue? QUOTE A queue is a particular kind of collection in which
the entities in the collection are kept in order and the principal (or only) operation....
Write an algorithm to check whether a given string is palindrome or not in time complexity O(n)
What is a palindrome?? QUOTE A palindrome is a word, phrase, number or other sequence of units
that has the property of reading the same in either direction (the adjustment of punctuation and
spaces between words is generally permitted). Composing literature in palindromes is an example of
constrained writing. The word "palindrome" was coined from Greek roots palin
(πάλιν; "back") and dromos (δρóμος; "way,
direction") by....
Give an algorithm to reverse a linked list with a time complexity of O(n) and minimal space
complexity. What is a linked list? Search trap17.com. i Have already answered this question in
one of my older questions. Solution 1 Here is one simple solution... CODE Void
ReverseList(node* head) { node *temp,*current,*result; temp=null; result=null;
current=head; while(current!=null) { temp=current->next;
current->next=result; result=current; current=temp; }
head=result; ....
Given a linked list, find the 5th last element with Time complexity O(n) and minimal space
complexity. Note: If you know the answer and if you feel it is simple also please post the
answers so that others will come to know about the answers. What is a linked list?? /* this is for
your further reference and reading */ QUOTE In computer science, a linked list is one of the
fundamental data structures, and can be used to implement other data structures. It consists of a
sequence of nodes, each containing arbitrary data fields and one or two references ("links") po....
I need help! I've been using eclipse for a while making little applets, and now I've
decided to look at some tutorials on how to make simple applications. I've found a pretty good
tutorial that tells you how to make a helloWorld app with swt and jFace, and also has an example
file explorer that you can make. They both work perfectly from inside eclipse, but when I try and
export either one into a .jar file, they don't work anymore. It comes up with a message saying
"Could not find main class. Program will exit." In the little wizard it has for....
I'm only 16 and I just found out I'm going to have to go on medication because my
choloesterol is in the 280's. Other than that, I'm in perfect health, 5' 11+1/2",
155lbs. I'm very active, I run track and field and Cross Country. What I wanted to know is how
hard it is to rememebr to take the medication every day.....
Friends here we are talking about largest email, free System http://www.30gigs.com this one is
good and can handel many file at a time. plz let me know any one having this type of information
! Also for small user www.walla.com is good one....
This script was found on the net http://tips-scripts.com/?tip=watermark#tip B&T's Tips &
Scripts site. Just in case the site may not show, I will include the code here: List of things
needed: 1. your image in any format 2. watermark image--in gif format with transparent background 3.
script below with name (i.e. watermark.php) CODE <?php // this script creates a watermarked
image from an image file - can be a .jpg .gif or .png file // where watermark.gif is a mostly
transparent gif image with the watermark - goes in the same directory as this script // ....
Please tell people what your favorite FREE traffic exchange, banner exchange, affiliate program and
such is. I know this is pretty broad topic, but it is a good way for people to see what programs
you use and why. No referal links are allowed as usual and these programs should be FREE. I would
like to use some of the ones you suggest to get more traffic. So list them here. Also, tell why
you like it and explain the service a bit so people can know a little about it. Like how successful
it was, how long you used it, ect. Thanks.....
http://www.affymetrix.com/community/wayahe...c_leukemia.affx A group in London discovered that
THC helps to kill leukemia cells by affecting a certain gene. MKP3, enhanced by THC, helps stop the
MAPK pathway, which some scientists believe is a factor in the survival of tumor cells. So another
plus for marijuana? Think that the U.S. will ever legalize it nationally, even if just for medical
purposes? I think we're just too conservative as a country to do it, even if it has some big
benefits =/....
I didn't know where to post it, so I just posted it here. Well, what I want is a program to
rotate an image I have. However, when I do it in Photoshop, the some of the lines are getting really
pixelated and the quality of the image and details are gone. So, I wonder if there are any programs
that can rotate the image 45 degrees without losing the picture quality. Also, I've made a
picture showing what I mean. Before rotating 45 degrees: After rotating: As you may see, the
lines on the second image are completely messed up. But is there a program, or just....
This morning I was going to listen to some music, so I got my iPod, turned it on, and it reset (I
hadn't had it plugged in for a while). When I got to the music, it would go through half of a
song, then skip to the next. After doing this a couple times, it would just skip entire songs.
It'd skip six or seven, then do half of one, then skip six or seven more. Later I looked on the
internet for some ideas, so eventually I tried resetting it again, as instructed. This worked for a
little bit, but then it started skipping over songs again. I reset again, and it lost....
ARE YOU IN SEARCH OF FREE GOOGLE CASH PROGRAM ? FREE GOOGLE CASH / GOOGLE PROFIT E BOOK
QUOTE This is a free google cash program starter guide (in form of E book) brings you the
step to step process. Discussing about google ad words concepts, choosing the right platform to
reduce your work burden and makes it fully automatic of all. It takes only 20 to 30 minutes to set
an account. Getting the right advertiser based on some important points (EPC rates) so that you can
earn just place ads on google ad words. Ok rest all in guide. About the program Th....
I asked, earlier, about a gfx program that wasn't too simple or too complicated. I tried
downloading the photoshop CS2 trial but for some reason my computer won't open it. I'm
wondering if this computer ( it's not actually mine ) already has a gfx program installed on
it. I don't think it does. There is something called photo impression 5 but I think it's
for the scanner. Are there any other free programs I can download?....
Once upon a time, a new Knight rode into town with some nifty tools. He was the designers friend.
The hero of creatives. His tools gave special powers to those that wanted to spend more time
creating and less time fiddling with code. His name was Sir McMed. Soon all creatives wanted to be
his friend. This did not please the Lord of the Manor, Sir McRow. Sir McMed was so adored by the
craftsmen. They liked his tools, they were light, powerful and easy to use. Not like the tools of
the Lord of the Manor, which were heavy and clunky. So they cast down the tools Sir McRow, ....
Hi. I just wanna make you know that program : Blender. It's a free 3D program, but it's a
very good one, there's a lot of functions, and even a game engine that allows toy to create your
own games... The program is downloadable at : http://www.blender3d.org . I recommend that you try
it, even if it's not as good as 3DSM or Maya, it has pretty cool functions. Oh plz give your
opinion 'bout that program in this topic. See ya !....
Looking for data, collecting, program, found, registers
*RANDOM STUFF*
*SIMILAR VIDEOS*
Searching Video's for data, collecting, program, found, registers
Express your Opinions, Thoughts or Contribute your information that might help someone here.
Ask your Doubts & Queries to get answers.. "Together, We enlight each other!"
Register FREE for AD-FREE
forum, Create your own topics, Ask Questions, track topics, setup
subscriptions & notifications and Get a Free Website w/ Email and FTP.